From 29f22bb0c0914476d93e63ed77e75b75f2a4cd14 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 8 Mar 2010 00:25:22 +1100 Subject: build: emulate autoconf PACKAGE_* variables --- source4/wscript | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source4/wscript b/source4/wscript index 68ea1e02f0..ca2cd68c6a 100644 --- a/source4/wscript +++ b/source4/wscript @@ -21,6 +21,13 @@ def set_options(opt): 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('_SAMBA_BUILD_', 4) conf.find_program('python', var='PYTHON', mandatory=True) conf.find_program('perl', var='PERL', mandatory=True) -- cgit