Package: sendip Version: 2.5-2 Severity: important Tags: patch User: debian-...@lists.debian.org Usertags: kfreebsd
Hi, your package FTBFS on GNU/kFreeBSD because of missing linker flags. The attached patch fixes this. Build logs at the usual place: https://buildd.debian.org/status/package.php?suite=unstable&p=sendip Thanks for considering. Mraw, KiBi.
--- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ all: $(GLOBALOBJS) sendip $(PROTOS) send #there has to be a nice way to do this sendip: sendip.o gnugetopt.o gnugetopt1.o compact.o - sh -c "if [ `uname` = Linux ] ; then \ + sh -c "if [ `uname` = Linux -o `uname` = GNU/kFreeBSD ] ; then \ $(CC) -o $@ $(LDFLAGS_LINUX) $(CFLAGS) $+ ; \ elif [ `uname` = SunOS ] ; then \ $(CC) -o $@ $(LDFLAGS_SOLARIS) $(CFLAGS) $+ ;\