[Mplayer-cvslog] CVS: main configure,1.132,1.133
Jürgen Keil
jkeil at mplayer.dev.hu
Mon Aug 6 13:13:07 CEST 2001
Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv25917
Modified Files:
configure
Log Message:
Solaris' and *BSD's sed does not like the "i" flag in the substitute command.
Match case-independant strings using explicit regexps.
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- configure 6 Aug 2001 00:11:41 -0000 1.132
+++ configure 6 Aug 2001 11:13:04 -0000 1.133
@@ -287,7 +287,7 @@
_confwin32=
if [ "$system_name" = "FreeBSD" ]; then
_archlibs="-rdynamic -pthread"
-elif [ `echo $system_name | sed 's/CYGWIN.*/CYGWIN/i'` = "CYGWIN" ]; then
+elif [ `echo $system_name | sed 's/[cC][yY][gG][wW][iI][nN].*/CYGWIN/'` = "CYGWIN" ]; then
_confcygwin="TARGET_CYGWIN=yes"
_confwin32="#define WIN32"
_archlibs="-lpthread"
More information about the MPlayer-cvslog
mailing list