[Mplayer-cvslog] CVS: main configure,1.181,1.182
pl
pl at mplayer.dev.hu
Fri Oct 12 01:42:01 CEST 2001
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv9225
Modified Files:
configure
Log Message:
cleanups: [ ... ] changed to test ...
cleanups: [ ... -a ... ] changed to test ... && test ...
cleanups: [ ... -o ... ] changed to test ... || test ...
fix: added -D_THREAD_SAFE for Linux
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- configure 11 Oct 2001 12:25:20 -0000 1.181
+++ configure 11 Oct 2001 23:41:43 -0000 1.182
@@ -118,7 +118,7 @@
# LGB: Help moved here.
for parm in "$@" ; do
-if [ "$parm" = "--help" -o "$parm" = "-help" -o "$parm" = "-h" ]; then
+if test "$parm" = "--help" || test "$parm" = "-help" || test "$parm" = "-h" ; then
cat << EOF
usage: $0 [options]
@@ -200,7 +200,7 @@
fi
done # for parm in ...
[...1167 lines suppressed...]
echo "Please check mtrr settings at /proc/mtrr (see DOCS/video.html#2.2.1.1)"
echo
fi
-if [ $_sdl = outdated ]; then
+if test "$_sdl" = "outdated" ; then
echo "You have an outdated version of libSDL installed (older than v1.1.7)"
echo "and SDL support has therefore been disabled. Please upgrade to a more"
echo "recent version (v1.1.8 and v1.2.[0-1] are known to work) from:"
@@ -2571,8 +2570,8 @@
echo "version might work. Use --enable-sdl to force usage of libSDL."
fi
-if [ "$host_arch" = i386 ]; then
- if [ $_win32libdirnotify = yes ]; then
+if test "$host_arch" = "i386" ; then
+ if test "$_win32libdirnotify" = yes ; then
echo "Failed to find a WIN32 codecs dir at $_win32libdir!"
echo "Create it and copy the DLL files there! (You can get them from your windows"
echo "directory or download them from:"
More information about the MPlayer-cvslog
mailing list