Update of /cvsroot/thinlisp/thinlisp-1.0/src/lecho/c
In directory usw-pr-cvs1:/tmp/cvs-serv29068/lecho/c
Modified Files:
configure.in makefile.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/lecho/c/configure.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** configure.in 2002/01/02 04:48:41 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 LECHO
+ dnl --- standard prolog
AC_PREREQ(2.13)
AC_INIT(main.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
Index: makefile.in
===================================================================
RCS file: /cvsroot/thinlisp/thinlisp-1.0/src/lecho/c/makefile.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** makefile.in 2002/01/02 04:48:41 1.1
--- makefile.in 2002/01/02 13:20:44 1.2
***************
*** 30,34 ****
endif
! SYSLIBS =
OBJECTS = main.o boot.o echo.o
--- 30,34 ----
endif
! SYSLIBS = @LIBS@
OBJECTS = main.o boot.o echo.o
|