diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-02-23 15:57:37 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-02-23 15:57:37 +0000 |
commit | 89b91bbbbdd582a76c923da2b8bdd90e4365c65e (patch) | |
tree | 6bbbec6d4a2c6522ea2183de8c6fbb10a36b856f /package/openntpd/Makefile | |
parent | 5ed5b75f5cbf11de7fb27f00cb921ab88e7e1e5b (diff) |
Updated to 3.7p1 and add support for adjtimex, thanks to Darren Tucker. Closes #320
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3267 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openntpd/Makefile')
-rw-r--r-- | package/openntpd/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/openntpd/Makefile b/package/openntpd/Makefile index 45584a692a..64df56af9d 100644 --- a/package/openntpd/Makefile +++ b/package/openntpd/Makefile @@ -3,9 +3,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=openntpd -PKG_VERSION:=3.6.1p1 +PKG_VERSION:=3.7p1 PKG_RELEASE:=1 -PKG_MD5SUM:=4584f226523776a3cdd2fb6f8212ba8d +PKG_MD5SUM:=10ed8eefd760e5819efcf3277b118f47 # space separated list or special @SF for sourceforge projects PKG_SOURCE_URL:=ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/ \ @@ -25,6 +25,8 @@ $(PKG_BUILD_DIR)/.configured: (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ + autoconf ; \ + autoheader ; \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ @@ -47,6 +49,7 @@ $(PKG_BUILD_DIR)/.configured: $(DISABLE_NLS) \ --with-builtin-arc4random \ --with-privsep-user=ntp \ + --with-adjtimex \ ); touch $@ |