Bug#675099: tacacs+: FTBFS on Debian GNU/Hurd [Patch Attached]

2012-06-06 Thread Henry-Nicolas Tourneur
Hello,

 Hi,
 
 Currently tacacs+ fails to build on Debian GNU/Hurd.  However with a very 
 minor patch it is
 buildable.  The patch is attached.
 
 Thank you,
 
 Barry deFreese

I did just upload a new version of Tacacs+ (4.0.4.25) that includes your
patch to mentors.d.n.

Craig, could you please upload this package to unstable?

Thanks and regards,

Henry-Nicolas Tourneur.





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675099: tacacs+: FTBFS on Debian GNU/Hurd [Patch Attached]

2012-06-02 Thread Henry-Nicolas Tourneur
Hello,

 Hi,
 
 Currently tacacs+ fails to build on Debian GNU/Hurd.  However with a
very minor patch it is
 buildable.  The patch is attached.
 
 Thank you,
 
 Barry deFreese

I did just upload a new version of Tacacs+ (4.0.4.25-1) that includes your
patch to mentors.d.n.

Craig, could you please upload this package to unstable?

Thanks and regards,

Henry-Nicolas Tourneur.




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#675099: tacacs+: FTBFS on Debian GNU/Hurd [Patch Attached]

2012-05-29 Thread Barry deFreese
Package: tacacs+
Version: 4.0.4.19-11
Severity: normal
User: bdefre...@debian.org
Usertags: hurd

Hi,

Currently tacacs+ fails to build on Debian GNU/Hurd.  However with a very minor 
patch it is
buildable.  The patch is attached.

Thank you,

Barry deFreese
#! /bin/sh /usr/share/dpatch/dpatch-run
## fix_hurd.dpatch by  root@bddhurd1
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.

@DPATCH@
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' 
'--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' tacacs+-4.0.4.19~/configure 
tacacs+-4.0.4.19/configure
--- tacacs+-4.0.4.19~/configure 2009-07-28 17:56:24.0 +
+++ tacacs+-4.0.4.19/configure  2012-05-29 16:37:52.0 +
@@ -2823,6 +2823,18 @@
 _ACEOF
 
 ;;
+*gnu* )
+   # XXX: not sure if /usr/local is necessary.
+   # XXX: linux libwrap needs -lnsl. configure should check for
+   #  existence of libnsl instead of hard-coding
+   CPPFLAGS=$CFLAGS -I/usr/local/include; export CPPFLAGS
+   LDFLAGS=$LDFLAGS -L/usr/local/lib -L/lib; export LDFLAGS
+   LIBS=-lnsl -lcrypt $LIBS; export LIBS
+cat confdefs.h \_ACEOF
+#define LINUX 1
+_ACEOF
+
+;;
 * )
CPPFLAGS=$CFLAGS -I/usr/local/include; export CPPFLAGS
LDFLAGS=$LDFLAGS -L/usr/local/lib; export LDFLAGS