From: <ma...@us...> - 2003-12-22 07:57:15
|
Update of /cvsroot/sharedaemon/ui-wx In directory sc8-pr-cvs1:/tmp/cvs-serv18716 Modified Files: configure Log Message: fixed configure Index: configure =================================================================== RCS file: /cvsroot/sharedaemon/ui-wx/configure,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- configure 22 Dec 2003 02:09:21 -0000 1.11 +++ configure 22 Dec 2003 07:57:12 -0000 1.12 @@ -165,7 +165,7 @@ echo -n -e "checking for wx-config... \t\t\t"; if test -x $wxconfig; then wxconfig=$wxconfig; - elif `which wx-config 2>/dev/null`; then + elif test -x `which wx-config 2>/dev/null`; then wxconfig=`which wx-config 2>/dev/null`; elif test -x /usr/local/bin/wx-config; then wxconfig=/usr/local/bin/wx-config; @@ -386,7 +386,7 @@ if test $has_gtk = 1; then cppflags="$cppflags -D__HAS_GTK_CONFIG__"; tray_objs="TrayCoreEngine.o"; - if test $gtk2 = 1 -a $has_pkgconfig = 1; then + if test [$gtk2 = 1] -a [$has_pkgconfig = 1]; then cflags="`$pkgconfig --cflags gtk+-2.0`"; cppflags="$cppflags `$pkgconfig --cflags gtk+-2.0`"; linkflags="$linkflags `$pkgconfig --libs gtk+-2.0`"; |