diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2001-04-18 21:37:32 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2001-04-18 21:37:32 +0000 |
| commit | 01a9f79f0a3692d8148990805beabc8593d3596d (patch) | |
| tree | 99d1ef5788fc9e55b6948a7d4951ac4a315f63bf /x11-toolkits/py-wxPython24/files/patch-ac | |
| parent | 8c307777eaf81af4195ae428b3ebbeba734fc5af (diff) | |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_3_0'.release/4.3.0
Diffstat (limited to 'x11-toolkits/py-wxPython24/files/patch-ac')
| -rw-r--r-- | x11-toolkits/py-wxPython24/files/patch-ac | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/x11-toolkits/py-wxPython24/files/patch-ac b/x11-toolkits/py-wxPython24/files/patch-ac deleted file mode 100644 index 3dec6284f128..000000000000 --- a/x11-toolkits/py-wxPython24/files/patch-ac +++ /dev/null @@ -1,39 +0,0 @@ ---- setup.py 2000/12/12 14:56:17 1.1 -+++ setup.py 2000/12/12 15:22:46 -@@ -68,6 +68,19 @@ - - - #---------------------------------------------------------------------- -+# Check for some environment variables -+#---------------------------------------------------------------------- -+ -+try: gtk_config = os.environ['GTK_CONFIG'] -+except KeyError: gtk_config = 'gtk-config' -+ -+try: wx_config = os.environ['WX_CONFIG'] -+except KeyError: wx_config = 'wx-config' -+ -+try: sys_libs = string.split(os.environ['LIBS']) -+except KeyError: sys_libs = [] -+ -+#---------------------------------------------------------------------- - # Check for build flags on the command line - #---------------------------------------------------------------------- - -@@ -172,12 +185,13 @@ - ] - libdirs = [] - libs = [] -+ libs.extend(sys_libs) - -- cflags = os.popen('wx-config --cflags', 'r').read()[:-1] + ' ' + \ -- os.popen('gtk-config --cflags', 'r').read()[:-1] -+ cflags = os.popen(wx_config + ' --cflags', 'r').read()[:-1] + ' ' + \ -+ os.popen(gtk_config + ' --cflags', 'r').read()[:-1] - cflags = string.split(cflags) - -- lflags = os.popen('wx-config --libs', 'r').read()[:-1] -+ lflags = os.popen(wx_config + ' --libs', 'r').read()[:-1] - lflags = string.split(lflags) - - |
