From 6c74a8d4adf1bf101c5d921a8e423e569fc87e19 Mon Sep 17 00:00:00 2001 From: Zach Tibbitts Date: Mon, 19 Feb 2007 23:02:23 +0000 Subject: [PATCH] - --- setup.py | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 2e79e3b7e..70e003bfc 100644 --- a/setup.py +++ b/setup.py @@ -24,18 +24,27 @@ from distutils.core import setup, Extension ## Modify the build arguments from distutils import sysconfig +pythonVersion = platform.python_version()[0:3] + removals = ['-g', '-DNDEBUG', '-O2', '-Wstrict-prototypes'] additions = ['-DNDEBUG', '-O2'] -cv_opt = sysconfig.get_config_vars()["CFLAGS"] -for removal in removals: - cv_opt = cv_opt.replace(removal, " ") -for addition in additions: - cv_opt = cv_opt + " " + addition -sysconfig.get_config_vars()["CFLAGS"] = ' '.join(cv_opt.split()) +if pythonVersion == '2.4': + cv_opt = sysconfig.get_config_vars()["CFLAGS"] + for removal in removals: + cv_opt = cv_opt.replace(removal, " ") + for addition in additions: + cv_opt = cv_opt + " " + addition + sysconfig.get_config_vars()["CFLAGS"] = ' '.join(cv_opt.split()) +else: + cv_opt = sysconfig.get_config_vars()["OPT"] + for removal in removals: + cv_opt = cv_opt.replace(removal, " ") + for addition in additions: + cv_opt = cv_opt + " " + addition + sysconfig.get_config_vars()["OPT"] = ' '.join(cv_opt.split()) -pythonVersion = platform.python_version()[0:3] deluge_core = Extension('deluge_core',