lib/popt: Remove non third_party popt.
[samba.git] / lib / popt / wscript
diff --git a/lib/popt/wscript b/lib/popt/wscript
deleted file mode 100644 (file)
index d622841..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env python
-
-import Options
-
-def configure(conf):
-    conf.CHECK_HEADERS('float.h')
-
-    if conf.CHECK_BUNDLED_SYSTEM('popt', checkfunctions='poptGetContext', headers='popt.h'):
-        conf.define('USING_SYSTEM_POPT', 1)
-
-def build(bld):
-    if bld.CONFIG_SET('USING_SYSTEM_POPT'):
-        return
-
-    bld.SAMBA_LIBRARY('popt',
-                      source='findme.c popt.c poptconfig.c popthelp.c poptparse.c',
-                      cflags='-DDBL_EPSILON=__DBL_EPSILON__',
-                      allow_warnings=True,
-                      private_library=True)