Subversion Repositories oidentd

Compare Revisions

Regard whitespace Rev 21 → Rev 22

/trunk/debian/changelog
4,8 → 4,10
* Bump Standards-Version to 3.9.7.
* Drop README.Debian since the workaround it describes is no longer
necessary since bug 533604 has been fixed.
* dont-touch-CFLAGS.patch: don't let --enable-debug mess with build
flags.
 
-- Magnus Holmgren <holmgren@debian.org> Mon, 10 Oct 2016 20:30:02 +0200
-- Magnus Holmgren <holmgren@debian.org> Mon, 10 Oct 2016 21:14:02 +0200
 
oidentd (2.0.8-8) unstable; urgency=low
 
/trunk/debian/patches/dont-touch-CFLAGS.patch
0,0 → 1,25
Description: Change the configure script so that --enable-debug doesn't modify $CFLAGS
The debug logging option is useful, but we don't want the build flags to be messed with.
 
--- a/configure
+++ b/configure
@@ -4533,7 +4533,7 @@ cat >>confdefs.h <<\_ACEOF
#define ENABLE_DEBUGGING 1
_ACEOF
- DEBUG_CFLAGS="-O0 -fvar-tracking -g3 -ggdb"
+# DEBUG_CFLAGS="-O0 -fvar-tracking -g3 -ggdb"
fi
enableval=""
--- a/configure.ac
+++ b/configure.ac
@@ -58,7 +58,7 @@ AC_ARG_ENABLE(debug,
[ --enable-debug Enable debugging])
if test "$enableval" = "yes"; then
AC_DEFINE(ENABLE_DEBUGGING, 1, [Define to enable debugging])
- DEBUG_CFLAGS="-O0 -fvar-tracking -g3 -ggdb"
+# DEBUG_CFLAGS="-O0 -fvar-tracking -g3 -ggdb"
fi
enableval=""
/trunk/debian/patches/series
1,3 → 1,4
bind-to-ipv6-too.patch
ftbfs-gcc5.patch
dont_mention_INSTALL.patch
dont-touch-CFLAGS.patch