Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Side by Side Diff: sys-fs/ecryptfs-utils/files/pkgconfig.diff

Issue 3152035: use pkg-config instead of nss-config/nspr-config (Closed) Base URL: http://src.chromium.org/git/portage.git
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sys-fs/ecryptfs-utils/ecryptfs-utils-82.ebuild ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 diff --git a/configure.ac b/configure.ac
2 index 2de562f..f9d716d 100644
3 --- a/configure.ac
4 +++ b/configure.ac
5 @@ -228,10 +228,10 @@ else
6 fi
7
8 #Verify nss
9 -NSS_LIBS=`nss-config --libs`
10 +NSS_LIBS=`pkg-config --libs nss`
11 if test "x${NSS_LIBS}" != "x" ; then
12 - NSS_CFLAGS=`nss-config --cflags`
13 - NSPR_CFLAGS=`nspr-config --cflags`
14 + NSS_CFLAGS=`pkg-config --cflags nss`
15 + NSPR_CFLAGS=`pkg-config --cflags nspr`
16 NSS_CFLAGS="${NSS_CFLAGS} -DENABLE_NSS ${NSPR_CFLAGS}"
17 have_nss="yes"
18 else
OLDNEW
« no previous file with comments | « sys-fs/ecryptfs-utils/ecryptfs-utils-82.ebuild ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698