diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-28 14:10:15 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:12 +1000 |
commit | 42c9380760de4e0ad3f69810b8d623b3a77cc692 (patch) | |
tree | d7d7f486de0b7f15c0d5997baeb2387e26b79d4f /source4/wscript | |
parent | f6a7d5b90762fee39ae117dc2bf926eac0dbab8a (diff) | |
download | samba-42c9380760de4e0ad3f69810b8d623b3a77cc692.tar.gz samba-42c9380760de4e0ad3f69810b8d623b3a77cc692.tar.bz2 samba-42c9380760de4e0ad3f69810b8d623b3a77cc692.zip |
s4-waf: set the bundled library extension for some libs
Diffstat (limited to 'source4/wscript')
-rw-r--r-- | source4/wscript | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/source4/wscript b/source4/wscript index 7cf82907f0..1320ceab57 100644 --- a/source4/wscript +++ b/source4/wscript @@ -21,16 +21,19 @@ def set_options(opt): opt.recurse('../pidl') def configure(conf): - conf.define('PACKAGE_NAME', 'samba') - conf.define('PACKAGE_STRING', 'samba 4') - conf.define('PACKAGE_TARNAME', 'samba') - conf.define('PACKAGE_URL', "") - conf.define('PACKAGE_VERSION', "4") - conf.define('PACKAGE_BUGREPORT', 'samba-technical@samba.org') + conf.DEFINE('PACKAGE_NAME', 'samba', quote=True) + conf.DEFINE('PACKAGE_STRING', 'samba 4', quote=True) + conf.DEFINE('PACKAGE_TARNAME', 'samba', quote=True) + conf.DEFINE('PACKAGE_URL', "http://www.samba.org/", quote=True) + conf.DEFINE('PACKAGE_VERSION', "4", quote=True) + conf.DEFINE('PACKAGE_BUGREPORT', 'http://bugzilla.samba.org/', quote=True) conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1) conf.DEFINE('_SAMBA_BUILD_', 4, add_to_cflags=True) conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True) + + conf.BUNDLED_LIBRARY_EXTENSION('s4') + if Options.options.developer: conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD') |