diff options
author | Alexey Neyman <stilor@att.net> | 2017-02-06 00:03:59 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 00:03:59 -0800 |
commit | ee12992547573e074ae531e20327ca1410041fb6 (patch) | |
tree | d4c21491457866a90cefd5bb20adb6780beb8e69 /patches/glibc/2.25/120-Fix-build-with-enable-static-nss.patch | |
parent | a459a33936a9b71d8dbc147d82c00eef3354cfeb (diff) | |
parent | 8995bb66f0cb73ee000e75475e41c8f88b87f267 (diff) | |
download | crosstool-ng-ee12992547573e074ae531e20327ca1410041fb6.tar.gz crosstool-ng-ee12992547573e074ae531e20327ca1410041fb6.tar.bz2 crosstool-ng-ee12992547573e074ae531e20327ca1410041fb6.zip |
Merge pull request #576 from stilor/update-kernel-libc
Update kernel & glibc
Diffstat (limited to 'patches/glibc/2.25/120-Fix-build-with-enable-static-nss.patch')
-rw-r--r-- | patches/glibc/2.25/120-Fix-build-with-enable-static-nss.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/patches/glibc/2.25/120-Fix-build-with-enable-static-nss.patch b/patches/glibc/2.25/120-Fix-build-with-enable-static-nss.patch new file mode 100644 index 00000000..59ab0870 --- /dev/null +++ b/patches/glibc/2.25/120-Fix-build-with-enable-static-nss.patch @@ -0,0 +1,30 @@ +From 3a36c1eea4fa3b6f3b3b43f7eb91152383ae4ad8 Mon Sep 17 00:00:00 2001 +From: Alexey Neyman <stilor@att.net> +Date: Tue, 24 Jan 2017 10:31:40 -0800 +Subject: [PATCH] Fix build with --enable-static-nss + +* nss/nsswitch.c (nscd_init_cb, is_nscd): make the #if around definitions + match those around use, to avoid "defined but not used" error. + +Signed-off-by: Alexey Neyman <stilor@att.net> +--- + ChangeLog | 5 +++++ + nss/nsswitch.c | 2 +- + 2 files changed, 6 insertions(+), 1 deletion(-) + +diff --git a/nss/nsswitch.c b/nss/nsswitch.c +index 0a65f6a..8f31658 100644 +--- a/nss/nsswitch.c ++++ b/nss/nsswitch.c +@@ -94,7 +94,7 @@ static name_database *service_table; + static name_database_entry *defconfig_entries; + + +-#ifdef USE_NSCD ++#if defined USE_NSCD && (!defined DO_STATIC_NSS || defined SHARED) + /* Nonzero if this is the nscd process. */ + static bool is_nscd; + /* The callback passed to the init functions when nscd is used. */ +-- +2.9.3 + |