[x264-devel] commit: don't distinguish between mingw and cygwin (Loren Merritt )
git version control
git at videolan.org
Mon Mar 31 02:52:25 CEST 2008
x264 | branch: master | Loren Merritt <pengvado at akuvian.org> | Sat Mar 29 17:53:36 2008 -0600| [a09f8f5e3759331b4699ec50c98dea7ce20b748b]
don't distinguish between mingw and cygwin
> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=a09f8f5e3759331b4699ec50c98dea7ce20b748b
---
configure | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/configure b/configure
index f54fdda..8bbfcb3 100755
--- a/configure
+++ b/configure
@@ -209,7 +209,7 @@ case $host_os in
LDFLAGS="$LDFLAGS -lm"
;;
cygwin*)
- SYS="CYGWIN"
+ SYS="MINGW"
CFLAGS="$CFLAGS -mno-cygwin"
LDFLAGS="$LDFLAGS -mno-cygwin"
EXE=".exe"
@@ -239,7 +239,7 @@ case $host_cpu in
ASFLAGS="-O2"
if [ "$SYS" = MACOSX ]; then
ASFLAGS="$ASFLAGS -f macho -DPREFIX"
- elif [ "$SYS" = CYGWIN -o "$SYS" = MINGW ]; then
+ elif [ "$SYS" = MINGW ]; then
ASFLAGS="$ASFLAGS -f win32 -DPREFIX"
elif [ "$SYS" = NETBSD ]; then
ASFLAGS="$ASFLAGS -f aoutb"
@@ -349,7 +349,7 @@ if test "$pthread" = "auto" ; then
BEOS)
pthread="yes"
;;
- MINGW|CYGWIN)
+ MINGW)
if cc_check pthread.h -lpthread "pthread_create(0,0,0,0);" ; then
pthread="yes"
libpthread="-lpthread"
@@ -373,7 +373,7 @@ if test "$pthread" = "yes" ; then
fi
MP4_LDFLAGS="-lgpac_static"
-if [ $SYS = CYGWIN -o $SYS = MINGW ]; then
+if [ $SYS = MINGW ]; then
MP4_LDFLAGS="$MP4_LDFLAGS -lwinmm"
fi
if [ "$mp4_output" = "auto" ] ; then
@@ -386,7 +386,7 @@ if [ "$mp4_output" = "yes" ] ; then
fi
if [ "$avis_input" = "auto" ] ; then
- if [ $SYS = CYGWIN -o $SYS = MINGW ]; then
+ if [ $SYS = MINGW ]; then
avis_input="yes"
else
avis_input="no";
More information about the x264-devel
mailing list