Merge lp:~flameeyes/ecryptfs/devel into lp:~ecryptfs/ecryptfs/oldtrunk

Proposed by Diego Elio Pettenò
Status: Merged
Merged at revision: 557
Proposed branch: lp:~flameeyes/ecryptfs/devel
Merge into: lp:~ecryptfs/ecryptfs/oldtrunk
Diff against target: 26 lines (+6/-10)
1 file modified
configure.ac (+6/-10)
To merge this branch: bzr merge lp:~flameeyes/ecryptfs/devel
Reviewer Review Type Date Requested Status
eCryptfs Pending
Review via email: mp+73516@code.launchpad.net

Description of the change

Branch with the patch I submitted last night.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'configure.ac'
2--- configure.ac 2011-08-10 13:38:09 +0000
3+++ configure.ac 2011-08-31 11:57:23 +0000
4@@ -228,16 +228,12 @@
5 fi
6
7 #Verify nss
8-NSS_LIBS=`nss-config --libs`
9-if test "x${NSS_LIBS}" != "x" ; then
10- NSS_CFLAGS=`nss-config --cflags`
11- NSPR_CFLAGS=`nspr-config --cflags`
12- NSS_CFLAGS="${NSS_CFLAGS} -DENABLE_NSS ${NSPR_CFLAGS}"
13- have_nss="yes"
14-else
15- NSS_CFLAGS=""
16- have_nss="no"
17-fi
18+PKG_CHECK_MODULES(
19+ [NSS],
20+ [nss],
21+ [have_nss="yes"
22+ NSS_CFLAGS="${NSS_CFLAGS} -DENABLE_NSS"],
23+ [have_nss="no"])
24
25 if test "${enable_nss}" = "detect" ; then
26 if test "$have_nss" == "yes" ; then

Subscribers

People subscribed via source and target branches