Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14255
Modified Files: configure.ac Log Message: checking for additional libraries needed by mingw
Index: configure.ac =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/configure.ac,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** configure.ac 9 Jun 2005 12:10:38 -0000 1.4 --- configure.ac 9 Jun 2005 18:56:03 -0000 1.5 *************** *** 40,43 **** --- 40,46 ---- AC_CHECK_LIB(crtdll, fclose)
+ AC_CHECK_LIB(coldname, lseek) + AC_CHECK_LIB(kernel32, main) + dnl Replace `main' with a function in -lm: AC_CHECK_LIB(m, main) *************** *** 119,123 **** --- 122,143 ----
dnl if we don't have $LD set, we set it to $(CC) + dnl LD=${LD:=$CC} + if test "x$LD" = "x" + then + if test "x$host" != "x" + then + LD=${host}-ld + if $(which ${LD} > /dev/null) + then + : + else + LD="" + fi + fi + fi LD=${LD:=$CC} + + + dnl if we don't have $STRIP set, we set it to ${host}-strip or strip if test "x$STRIP" = "x"