summaryrefslogtreecommitdiff
path: root/lib/popt
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-02-19 03:10:03 +0100
committerJelmer Vernooij <jelmer@samba.org>2012-02-19 03:10:03 +0100
commitd92306894aeb09788c2be22f5e754d8bf929b7f6 (patch)
tree65e0697d4dec715f294839e335c5eaa92239ea87 /lib/popt
parentab454403ebc3dbd16c494063a0513df99f58a26b (diff)
downloadsamba-d92306894aeb09788c2be22f5e754d8bf929b7f6.tar.gz
samba-d92306894aeb09788c2be22f5e754d8bf929b7f6.tar.bz2
samba-d92306894aeb09788c2be22f5e754d8bf929b7f6.zip
popt: Use pkg-config file to look for popt.
Diffstat (limited to 'lib/popt')
-rw-r--r--lib/popt/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/popt/wscript b/lib/popt/wscript
index 7fd15ed53a..6aa8e70339 100644
--- a/lib/popt/wscript
+++ b/lib/popt/wscript
@@ -5,7 +5,7 @@ import Options
def configure(conf):
conf.CHECK_HEADERS('float.h')
- if conf.CHECK_BUNDLED_SYSTEM('popt', checkfunctions='poptGetContext', headers='popt.h'):
+ if conf.CHECK_BUNDLED_SYSTEM_PKG('popt'):
conf.define('USING_SYSTEM_POPT', 1)
def build(bld):