[Mplayer-cvslog] CVS: main configure,1.209,1.210
Megyer Laszlo
laaz at mplayer.dev.hu
Fri Oct 26 21:55:07 CEST 2001
- Previous message: [Mplayer-cvslog] CVS: main/libmpdemux asf.h,1.6,1.7 asf_streaming.c,1.6,1.7 http.c,1.3,1.4 http.h,1.2,1.3 network.c,1.7,1.8
- Next message: [Mplayer-cvslog] CVS: main configure,1.209,1.210
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv3892
Modified Files:
configure
Log Message:
gtk12-config detection
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- configure 26 Oct 2001 13:50:05 -0000 1.209
+++ configure 26 Oct 2001 19:54:43 -0000 1.210
@@ -1776,35 +1776,44 @@
if test "$_gui" = yes ; then
# --------------- GUI begin -------------------
+test -z `which gtk-config` || _gtkconfig="gtk-config"
+test -z `which gtk12-config` || _gtkconfig="gtk12-config"
+test -z $_gtkconfig && die "gtk-config not found"
+
+test -z `which glib-config` || _glibconfig="glib-config"
+test -z `which glib12-config` || _glibconfig="glib12-config"
+test -z $_glibconfig && die "glib-config not found"
+
echo
+#echo "gtk-config binary: $_gtkconfig"
echo $_echo_n "Checking for gtk version ... $_echo_c"
-_gtk=`gtk-config --version 2>&1`
+_gtk=`$_gtkconfig --version 2>&1`
test -z "$_gtk" && die "gtk not found."
echo "$_gtk"
echo $_echo_n "Checking for gtk includes ... $_echo_c"
-_gtkinc=`gtk-config --cflags 2>&1`
+_gtkinc=`$_gtkconfig --cflags 2>&1`
test -z "$_gtkinc" && die "gtk not found."
echo "done"
echo $_echo_n "Checking for gtk libs ... $_echo_c"
-_gtklib=`gtk-config --libs 2>&1`
+_gtklib=`$_gtkconfig --libs 2>&1`
test -z "$_gtklib" && die "gtk not found."
echo "done"
echo
echo $_echo_n "Checking for glib version ... $_echo_c"
-_glib=`glib-config --version 2>&1`
+_glib=`$_glibconfig --version 2>&1`
test -z "$_glib" && die "glib not found."
echo "$_glib"
echo $_echo_n "Checking for glib includes ... $_echo_c"
-_glibinc=`glib-config --cflags 2>&1`
+_glibinc=`$_glibconfig --cflags 2>&1`
test -z "$_glibinc" && die "glib not found."
echo "done"
echo $_echo_n "Checking for glib libs ... $_echo_c"
-_gliblib=`glib-config --libs 2>&1`
+_gliblib=`$_glibconfig --libs 2>&1`
test -z "$_gliblib" && die "glib not found."
echo "done"
- Previous message: [Mplayer-cvslog] CVS: main/libmpdemux asf.h,1.6,1.7 asf_streaming.c,1.6,1.7 http.c,1.3,1.4 http.h,1.2,1.3 network.c,1.7,1.8
- Next message: [Mplayer-cvslog] CVS: main configure,1.209,1.210
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list