diff options
Diffstat (limited to 'extra/ppp/Pkgfile')
-rw-r--r-- | extra/ppp/Pkgfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extra/ppp/Pkgfile b/extra/ppp/Pkgfile index 18549b287..5aa43542d 100644 --- a/extra/ppp/Pkgfile +++ b/extra/ppp/Pkgfile @@ -6,12 +6,13 @@ # Run on: libpcap name=ppp -version=2.4.4 +version=2.4.5 release=1 source=(http://samba.org/ftp/$name/$name-$version.tar.gz pppd) build() { + export CFLAGS="$CFLAGS -D_GNU_SOURCE" cd $name-$version ./configure --prefix=/usr make @@ -19,5 +20,6 @@ build() { make INSTROOT=$PKG install mkdir -p $PKG/etc/rc.d/init.d/ install -m755 ../pppd $PKG/etc/rc.d/init.d/ + } |