ports/core (3.2): glibc: readd --enable-static-nss, we need that for the statically linked pkgutils
commit 880201b7479a925295cb0bc9cee9c1db76a0c05d Author: Juergen Daubert <jue@jue.li> Date: Wed Jun 24 16:11:25 2015 +0200 glibc: readd --enable-static-nss, we need that for the statically linked pkgutils diff --git a/glibc/.footprint b/glibc/.footprint index 5f33b93..4c59919 100644 --- a/glibc/.footprint +++ b/glibc/.footprint @@ -5,6 +5,7 @@ drwxr-xr-x root/root etc/ -rw-r--r-- root/root etc/ld.so.conf drwxr-xr-x root/root etc/ld.so.conf.d/ lrwxrwxrwx root/root etc/localtime -> ../usr/share/zoneinfo/UTC +-rw-r--r-- root/root etc/nscd.conf -rw-r--r-- root/root etc/nsswitch.conf -rw-r--r-- root/root etc/resolv.conf -rw-r--r-- root/root etc/rpc @@ -2141,3 +2142,6 @@ drwxr-xr-x root/root usr/share/i18n/locales/ drwxr-xr-x root/root var/ drwxr-xr-x root/root var/db/ -rw-r--r-- root/root var/db/Makefile +drwxr-xr-x root/root var/db/nscd/ +drwxr-xr-x root/root var/run/ +drwxr-xr-x root/root var/run/nscd/ diff --git a/glibc/Pkgfile b/glibc/Pkgfile index 06e96f2..5753ccb 100644 --- a/glibc/Pkgfile +++ b/glibc/Pkgfile @@ -25,14 +25,21 @@ build() { --with-headers=$PKG/usr/include \ --enable-kernel=3.12 \ --enable-add-ons \ + --enable-static-nss \ --disable-profile \ + --disable-werror \ --without-gd \ - --enable-obsolete-rpc --enable-multi-arch + --enable-obsolete-rpc \ + --enable-multi-arch make #make check make install_root=$PKG install - cp $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc + install -m 0644 $SRC/$name-$version/nscd/nscd.conf $PKG/etc + install -d $PKG/var/{db,run}/nscd + + install -m 0644 $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc + ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime mkdir -p $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale touch $PKG/etc/ld.so.cache
participants (1)
-
crux@crux.nu