Skip to content

Commit 27b11a4

Browse files
authored
Merge pull request #42 from nikic/ldap-sasl
Add libsasl2.pc for Trusty
2 parents 32d1acb + da05ee6 commit 27b11a4

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ install:
9999
- popd
100100
- if [[ $RELEASE != precise ]]; then unset ICU_RELEASE; fi # disable ICU installation for Trusty; see https://github.com/travis-ci/travis-ci/issues/3616#issuecomment-286302387
101101
- | # older distros don't ship a libjpeg.pc, add our own to pkg-config path
102-
if ! pkg-config --exists libjpeg; then
102+
if ! pkg-config --exists libjpeg libsasl2; then
103103
export PKG_CONFIG_PATH=$PWD:$PKG_CONFIG_PATH
104104
fi
105105
- ./bin/install-icu

libsasl2.pc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
prefix=/usr
2+
exec_prefix=${prefix}
3+
libdir=${prefix}/lib/x86_64-linux-gnu
4+
includedir=${prefix}/include
5+
6+
Name: Cyrus SASL
7+
Description: Cyrus SASL implementation
8+
URL: http://www.cyrussasl.org/
9+
Version: 2.1.25
10+
Cflags: -I${includedir}
11+
Libs: -L${libdir} -lsasl2
12+
Libs.private: -ldl -lresolv

0 commit comments

Comments
 (0)