libcvd-members
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libcvd-members] libcvd configure configure.in


From: James Loxam
Subject: [libcvd-members] libcvd configure configure.in
Date: Wed, 06 Jun 2007 14:19:18 +0000

CVSROOT:        /cvsroot/libcvd
Module name:    libcvd
Changes by:     James Loxam <jamesloxam>        07/06/06 14:19:18

Modified files:
        .              : configure configure.in 

Log message:
        Work around for bug in g++ 4.1.0 which causes the configure script to 
think that there are errors in ffmpeg

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/libcvd/configure?cvsroot=libcvd&r1=1.80&r2=1.81
http://cvs.savannah.gnu.org/viewcvs/libcvd/configure.in?cvsroot=libcvd&r1=1.79&r2=1.80

Patches:
Index: configure
===================================================================
RCS file: /cvsroot/libcvd/libcvd/configure,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -b -r1.80 -r1.81
--- configure   13 Apr 2007 23:29:06 -0000      1.80
+++ configure   6 Jun 2007 14:19:17 -0000       1.81
@@ -7475,6 +7475,12 @@
                LIBS="$LIBS -L $use_ffmpeg"
        fi
 
+       gxx_version=`$CXX -dumpversion`
+       if test $gxx_version = 4.1.0
+       then
+               CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS"
+       fi
+
        a=
 
 

Index: configure.in
===================================================================
RCS file: /cvsroot/libcvd/libcvd/configure.in,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -b -r1.79 -r1.80
--- configure.in        13 Apr 2007 23:29:06 -0000      1.79
+++ configure.in        6 Jun 2007 14:19:18 -0000       1.80
@@ -914,6 +914,12 @@
                LIBS="$LIBS -L $use_ffmpeg"
        fi
 
+       gxx_version=`$CXX -dumpversion`
+       if test $gxx_version = 4.1.0
+       then
+               CXXFLAGS="$CXXFLAGS -D__STDC_CONSTANT_MACROS"
+       fi
+
        a=
        AC_CHECK_HEADERS(ffmpeg/avcodec.h ffmpeg/avformat.h, [], [break])
        AC_CHECK_LIB(avutil, main)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]