Changeset 5292 for anuga_work/development/anugavis/configure.ac
- Timestamp:
- May 8, 2008, 3:19:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/development/anugavis/configure.ac
r5272 r5292 10 10 # Checks for programs. 11 11 AC_PROG_CC 12 AM_PROG_CC_C_O 12 13 AC_PROG_RANLIB 13 14 … … 17 18 AC_SEARCH_LIBS([nc_open], [netcdf], [], 18 19 [AC_MSG_ERROR([Can't link the NetCDF library. (LDFLAGS?)])]) 20 AC_SEARCH_LIBS([sqrt], [m], [], 21 [AC_MSG_ERROR([Can't find sqrt.])]) 22 19 23 # Checks for header files. 20 24 AC_CHECK_HEADER([netcdf.h], [], … … 23 27 # Checks for typedefs, structures, and compiler characteristics. 24 28 AC_C_CONST 25 AM_PROG_CC_C_O26 29 AC_TYPE_SIZE_T 27 30 28 31 # Checks for library functions. 29 32 AC_FUNC_MALLOC 30 AC_CHECK_FUNCS([strdup ])33 AC_CHECK_FUNCS([strdup sqrt]) 31 34 32 35 AC_CONFIG_FILES([Makefile 33 m4/Makefile34 36 src/Makefile]) 35 37 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.