Skip to content

Commit 61ac1cc

Browse files
committed
oop, fix debug
we still had the code to enable debug by default on odd-numbered releases see #58 thanks benjamin
1 parent fcc05e7 commit 61ac1cc

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
started 8.3.1 on 19/5/16
2+
- disable debug by default, thanks Benjamin
3+
14
started 8.3.0 on 28/3/16
25
- move path search stuff into _convert from _magick
36
- added autotrace menu item

TODO

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
- wrap vips_reduce(), use it from resize
2-
3-
need to add a new kernel selector thing
4-
51
- sharpen should use new interface?
62

73
- can we call affine from nip2 vips_call? do we need a double array?

configure.ac

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl
1717

1818
m4_define([nip_major_version], [8])
1919
m4_define([nip_minor_version], [3])
20-
m4_define([nip_micro_version], [0])
20+
m4_define([nip_micro_version], [1])
2121
m4_define([nip_version],
2222
[nip_major_version.nip_minor_version.nip_micro_version])
2323

@@ -66,14 +66,10 @@ if test x"$nip_os_darwin" = "xyes"; then
6666
AC_DEFINE(OS_DARWIN,1,[native Mac OS X])
6767
fi
6868

69-
# disable debugging by default for production releases
70-
m4_define([debug_default],
71-
m4_if(m4_eval(nip_minor_version() % 2), [1], [yes], [no]))
72-
7369
AC_ARG_ENABLE(debug,
7470
AC_HELP_STRING([--enable-debug=@<:@no/minimum/yes@:>@],
7571
[turn on debugging @<:@default=debug_default()@:>@]),,
76-
enable_debug=debug_default())
72+
enable_debug=no)
7773

7874
if test "x$enable_debug" = "xyes"; then
7975
NIP_DEBUG_FLAGS="-DDEBUG_FATAL -DDEBUG_LEAK"

doc/src/nipguide.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
\begin{center}
2929
\huge
3030
\nip{} Manual\\[0.2em]
31-
\large Version 8.2\\
31+
\large Version 8.3\\
3232
\vspace{0.5in}
3333
\large
3434
John Cupitt,

0 commit comments

Comments
 (0)