Update of /cvsroot/beepmp/bmp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10064
Modified Files:
Tag: release_0_9_7_1
configure.ac
Log Message:
* configure.ac: Add hack to stop libtool from checking for C++/F77.
Index: configure.ac
===================================================================
RCS file: /cvsroot/beepmp/bmp/configure.ac,v
retrieving revision 1.35.4.4
retrieving revision 1.35.4.5
diff -C2 -d -r1.35.4.4 -r1.35.4.5
*** configure.ac 22 Oct 2005 08:45:49 -0000 1.35.4.4
--- configure.ac 22 Oct 2005 10:27:41 -0000 1.35.4.5
***************
*** 49,52 ****
--- 49,58 ----
dnl without building static plugins
+ dnl Next four lines is a hack to prevent libtool checking for C++/F77
+ m4_undefine([AC_PROG_CXX])
+ m4_defun([AC_PROG_CXX],[])
+ m4_undefine([AC_PROG_F77])
+ m4_defun([AC_PROG_F77],[])
+
AC_DISABLE_STATIC
AC_ENABLE_SHARED
|