Update of /cvsroot/python-gtkextra/python-gtkextra
In directory usw-pr-cvs1:/tmp/cvs-serv19362
Modified Files:
setup.py
Log Message:
Applied patch supplied by Charles Waldman. Now gtkextra-config is called
in addition to gtk-config.
Index: setup.py
===================================================================
RCS file: /cvsroot/python-gtkextra/python-gtkextra/setup.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** setup.py 3 Jan 2002 22:44:04 -0000 1.2
--- setup.py 12 Feb 2002 04:11:11 -0000 1.3
***************
*** 26,31 ****
return list
! gtk_cflags = commands.getoutput("gtk-config --cflags")
! gtk_libs = commands.getoutput("gtk-config --libs")
(include_dirs, extra_compile_args) = filteropt(gtk_cflags, "I")
--- 26,31 ----
return list
! 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")
|