[Python-gtkextra-devel] [ python-gtkextra-Bugs-516009 ] setup.py should pick up gtkextra-config
Status: Beta
Brought to you by:
treeves
From: <no...@so...> - 2002-02-11 17:59:01
|
Bugs item #516009, was opened at 2002-02-11 09:58 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=414148&aid=516009&group_id=35371 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Charles G Waldman (cgw) Assigned to: Nobody/Anonymous (nobody) Summary: setup.py should pick up gtkextra-config Initial Comment: I had to apply the following patch to get the CVS version to build: Index: setup.py =================================================================== RCS file: /cvsroot/python-gtkextra/python-gtkextra/setup.py,v retrieving revision 1.2 diff -u -r1.2 setup.py --- setup.py 3 Jan 2002 22:44:04 -0000 1.2 +++ setup.py 11 Feb 2002 17:41:29 -0000 @@ -25,8 +25,8 @@ list.append(args) return list -gtk_cflags = commands.getoutput("gtk-config --cflags") -gtk_libs = commands.getoutput("gtk-config --libs") +gtk_cflags = commands.getoutput("gtkextra-config --cflags") + " " + commands.getoutput("gtk-config --cflags") +gtk_libs = commands.getoutput("gtkextra-config --libs") + " " + commands.getoutput("gtk-config --libs") (include_dirs, extra_compile_args) = filteropt(gtk_cflags, "I") (library_dirs, libraries, extra_link_args) = filteropt(gtk_libs, "Ll") ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=414148&aid=516009&group_id=35371 |