summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-06 11:13:04 +0000
committerjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-06 11:13:04 +0000
commit59b93c6b32419adea346397d4d35a6a03c0e901b (patch)
tree046ece40bf794c505ef593e9a522c03a5ff3ac6a /configure
parente3fff049fe58655f370fd6babbf33a0411f19ca7 (diff)
downloadmpv-59b93c6b32419adea346397d4d35a6a03c0e901b.tar.bz2
mpv-59b93c6b32419adea346397d4d35a6a03c0e901b.tar.xz
Solaris' and *BSD's sed does not like the "i" flag in the substitute command.
Match case-independant strings using explicit regexps. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1451 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index aeb527e4b4..f6e5549a48 100755
--- a/configure
+++ b/configure
@@ -287,7 +287,7 @@ _confcygwin="TARGET_CYGWIN=no"
_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"