From: Roy Marples Date: Thu, 26 Apr 2007 16:46:55 +0000 (+0000) Subject: Although we compile on NetBSD, we fail to add routes correctly. X-Git-Tag: v3.2.3~269 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4f12948356abad24efd0e33374c33b0e9695634;p=thirdparty%2Fdhcpcd.git Although we compile on NetBSD, we fail to add routes correctly. --- diff --git a/ChangeLog b/ChangeLog index 53a333af..071df3d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ +Compiles ok on NetBSD, but doesn't add routes yet - thanks to Gabor Z. Papp. If the current hostname contains dots then send it as a FQDN. Ensure that static routes are always added before routers. Use getnameinfo instead of gethostbyaddr. diff --git a/Makefile b/Makefile index 93127ca4..ebbe1942 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 3.0.18_pre2 +VERSION = 3.0.18_pre3 CFLAGS ?= -O2 -pipe # Should work for both GNU make and BSD make @@ -75,7 +75,8 @@ clean: dist: $(INSTALL) -m 0755 -d /tmp/dhcpcd-$(VERSION) cp -RPp . /tmp/dhcpcd-$(VERSION) - $(MAKE) -C /tmp/dhcpcd-$(VERSION) clean + (cd /tmp/dhcpcd-$(VERSION); $(MAKE) clean) rm -rf /tmp/dhcpcd-$(VERSION)/*.bz2 /tmp/dhcpcd-$(VERSION)/.svn tar cvjpf dhcpcd-$(VERSION).tar.bz2 -C /tmp dhcpcd-$(VERSION) rm -rf /tmp/dhcpcd-$(VERSION) + ls -l dhcpcd-$(VERSION).tar.bz2