Last change
on this file since 5316 was
5292,
checked in by jack, 17 years ago
|
anugavis: Some basic camera control and frame stepping.
|
File size:
1.0 KB
|
Line | |
---|
1 | # -*- Autoconf -*- |
---|
2 | # Process this file with autoconf to produce a configure script. |
---|
3 | |
---|
4 | AC_PREREQ([2.56]) |
---|
5 | AC_INIT([ANUGA SWW Visualiser], [0.01], [u4112456@anu.edu.au]) |
---|
6 | AM_INIT_AUTOMAKE([foreign -Wall -Werror]) |
---|
7 | AC_CONFIG_SRCDIR([src/anugavis_simple.c]) |
---|
8 | AC_CONFIG_HEADER([config.h]) |
---|
9 | |
---|
10 | # Checks for programs. |
---|
11 | AC_PROG_CC |
---|
12 | AM_PROG_CC_C_O |
---|
13 | AC_PROG_RANLIB |
---|
14 | |
---|
15 | # Checks for libraries. |
---|
16 | AX_CHECK_GLU |
---|
17 | AM_PATH_SDL([1.2.12], [], [AC_MSG_ERROR([SDL is required to build.])]) |
---|
18 | AC_SEARCH_LIBS([nc_open], [netcdf], [], |
---|
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 | |
---|
23 | # Checks for header files. |
---|
24 | AC_CHECK_HEADER([netcdf.h], [], |
---|
25 | [AC_MSG_ERROR([Can't find the NetCDF header. (CPPFLAGS?)])]) |
---|
26 | |
---|
27 | # Checks for typedefs, structures, and compiler characteristics. |
---|
28 | AC_C_CONST |
---|
29 | AC_TYPE_SIZE_T |
---|
30 | |
---|
31 | # Checks for library functions. |
---|
32 | AC_FUNC_MALLOC |
---|
33 | AC_CHECK_FUNCS([strdup sqrt]) |
---|
34 | |
---|
35 | AC_CONFIG_FILES([Makefile |
---|
36 | src/Makefile]) |
---|
37 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.