# HG changeset patch # User jkeil # Date 997096384 0 # Node ID 50280cb168ea23d7cff4f3ed11cdff6af24983c5 # Parent 302ba4bf50959131fad593b7b01d0d0b4e5d3752 Solaris' and *BSD's sed does not like the "i" flag in the substitute command. Match case-independant strings using explicit regexps. diff -r 302ba4bf5095 -r 50280cb168ea configure --- a/configure Mon Aug 06 00:33:30 2001 +0000 +++ b/configure Mon Aug 06 11:13:04 2001 +0000 @@ -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"