[PD-cvs] externals/zexy/src acinclude.m4,1.1,1.2

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Wed Oct 4 14:11:05 CEST 2006


Update of /cvsroot/pure-data/externals/zexy/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10714

Modified Files:
	acinclude.m4 
Log Message:
fixed AC_CHECK_CFLAG test (use .c instead of .c++)


Index: acinclude.m4
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/acinclude.m4,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** acinclude.m4	7 Jan 2006 17:18:30 -0000	1.1
--- acinclude.m4	4 Oct 2006 12:11:03 -0000	1.2
***************
*** 34,43 ****
  [
    AC_MSG_CHECKING([whether $CC accepts "$1"])
! cat > conftest.c++ << EOF
  int main(){
    return 0;
  }
  EOF
! if $CC $CFLAGS -o conftest.o conftest.c++ [$1] > /dev/null 2>&1
  then
    AC_MSG_RESULT([yes])
--- 34,43 ----
  [
    AC_MSG_CHECKING([whether $CC accepts "$1"])
! cat > conftest.c << EOF
  int main(){
    return 0;
  }
  EOF
! if $CC $CFLAGS [$1] -o conftest.o conftest.c > /dev/null 2>&1
  then
    AC_MSG_RESULT([yes])





More information about the Pd-cvs mailing list