Update of /cvsroot/thinlisp/thinlisp-1.0/src/tl/c
In directory usw-pr-cvs1:/tmp/cvs-serv29068/tl/c
Modified Files:
configure.in
Log Message:
Check for -lm adding to LIBS when found in autoconf, might fix linux build.
Index: configure.in
===================================================================
RCS file: /cvsroot/thinlisp/thinlisp-1.0/src/tl/c/configure.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** configure.in 2002/01/02 04:55:08 1.1
--- configure.in 2002/01/02 13:20:44 1.2
***************
*** 1,8 ****
--- 1,14 ----
dnl File created by ThinLisp
dnl autoconf input for TL
+ dnl --- standard prolog
AC_PREREQ(2.13)
AC_INIT(tl.c)
+ dnl --- checks for libraries
+ AC_CHECK_LIB(math,log10)
+ dnl --- checks for programs
AC_PROG_CC
+ dnl --- other junk
AC_EXEEXT
+ dnl --- standard epilog
AC_OUTPUT(makefile)
dnl End of file
|