Subversion Repositories oidentd

Compare Revisions

Ignore whitespace Rev 15 → Rev 24

/tags/2.0.8-9/debian/README.Debian
File deleted
/tags/2.0.8-9/debian/changelog
1,3 → 1,14
oidentd (2.0.8-9) unstable; urgency=low
 
* Correct Vcs-Svn URL.
* 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.
* Bump Standards-Version to 3.9.8.
 
-- Magnus Holmgren <holmgren@debian.org> Mon, 10 Oct 2016 21:14:02 +0200
 
oidentd (2.0.8-8) unstable; urgency=low
 
* New maintainer (Closes: #695125).
/tags/2.0.8-9/debian/control
3,10 → 3,10
Priority: extra
Build-Depends: debhelper (>= 9), autotools-dev
Maintainer: Magnus Holmgren <holmgren@debian.org>
Standards-Version: 3.9.6
Standards-Version: 3.9.8
Homepage: http://ojnk.sourceforge.net/
Vcs-Browser: http://svn.kibibyte.se/oidentd
Vcs-Svn: http://svn.kibibyte.se/oidentd/trunk
Vcs-Svn: svn://svn.kibibyte.se/oidentd/trunk
 
Package: oidentd
Architecture: any
/tags/2.0.8-9/debian/patches/bind-to-ipv6-too.patch
1,5 → 1,7
Patch to bind to ipv6 socket as well
Patch supplied by Fabian Knittel <fabian.knittel@avona.com>
Description: Patch to bind to ipv6 socket as well
Author: Fabian Knittel <fabian.knittel@avona.com>
Bug-Debian: https://bugs.debian.org/533604
 
--- oidentd-2.0.8//src/oidentd_inet_util.c 2006-05-22 02:31:19.000000000 +0200
+++ oidentd-2.0.8.new//src/oidentd_inet_util.c 2010-03-01 20:26:11.000000000 +0100
@@ -60,6 +60,12 @@
/tags/2.0.8-9/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=""
/tags/2.0.8-9/debian/patches/dont_mention_INSTALL.patch
1,5 → 1,5
Description: Don't reference INSTALL, which isn't included in the package since it's mostly irrelevant to Debian users.
Bug: http://bugs.debian.org/253199
Bug-Debian: http://bugs.debian.org/253199
 
--- a/README
+++ b/README
/tags/2.0.8-9/debian/patches/ftbfs-gcc5.patch
1,5 → 1,5
Description: Fix a failure to build with gcc5.
Bug: http://bugs.debian.org/778035
Bug-Debian: http://bugs.debian.org/778035
 
--- a/src/oidentd_util.c 2015-07-03 05:56:24.000000000 -0400
+++ b/src/oidentd_util.c 2015-07-03 05:56:47.671378000 -0400
/tags/2.0.8-9/debian/patches/series
1,3 → 1,4
bind-to-ipv6-too.patch
ftbfs-gcc5.patch
dont_mention_INSTALL.patch
dont-touch-CFLAGS.patch