From 8ea6f41ec9d3e2577432a8d9be100f1f42775787 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 25 Oct 2010 06:49:46 +0000 Subject: s4-waf: don't generate PACKAGE_* defines in config.h - We don't use them anywhere (heimdal has special rules) - They calculate the version at configure time and may contain the wrong git hash while building - If we really need them in future we should add them to version.h and not config.h, as the changing git hash will trigger a full rebuild if config.h changes. metze --- source4/wscript | 7 ------- 1 file changed, 7 deletions(-) (limited to 'source4/wscript') diff --git a/source4/wscript b/source4/wscript index c419c16af2..deb5a9ede8 100644 --- a/source4/wscript +++ b/source4/wscript @@ -63,13 +63,6 @@ def set_options(opt): def configure(conf): version = load_version(have_git=True) - conf.DEFINE('PACKAGE_NAME', 'samba', quote=True) - conf.DEFINE('PACKAGE_STRING', 'Samba ' + version.STRING, quote=True) - conf.DEFINE('PACKAGE_TARNAME', 'samba', quote=True) - conf.DEFINE('PACKAGE_URL', "http://www.samba.org/", quote=True) - conf.DEFINE('PACKAGE_VERSION', version.STRING, quote=True) - conf.DEFINE('PACKAGE_BUGREPORT', 'http://bugzilla.samba.org/', quote=True) - conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1) conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True) conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True) -- cgit