source: anuga_work/development/anugavis/configure.ac @ 5292

Last change on this file since 5292 was 5292, checked in by jack, 16 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
4AC_PREREQ([2.56])
5AC_INIT([ANUGA SWW Visualiser], [0.01], [u4112456@anu.edu.au])
6AM_INIT_AUTOMAKE([foreign -Wall -Werror])
7AC_CONFIG_SRCDIR([src/anugavis_simple.c])
8AC_CONFIG_HEADER([config.h])
9
10# Checks for programs.
11AC_PROG_CC
12AM_PROG_CC_C_O
13AC_PROG_RANLIB
14
15# Checks for libraries.
16AX_CHECK_GLU
17AM_PATH_SDL([1.2.12], [], [AC_MSG_ERROR([SDL is required to build.])])
18AC_SEARCH_LIBS([nc_open], [netcdf], [],
19               [AC_MSG_ERROR([Can't link the NetCDF library. (LDFLAGS?)])])
20AC_SEARCH_LIBS([sqrt], [m], [],
21               [AC_MSG_ERROR([Can't find sqrt.])])
22
23# Checks for header files.
24AC_CHECK_HEADER([netcdf.h], [],
25                [AC_MSG_ERROR([Can't find the NetCDF header. (CPPFLAGS?)])])
26
27# Checks for typedefs, structures, and compiler characteristics.
28AC_C_CONST
29AC_TYPE_SIZE_T
30
31# Checks for library functions.
32AC_FUNC_MALLOC
33AC_CHECK_FUNCS([strdup sqrt])
34
35AC_CONFIG_FILES([Makefile
36                 src/Makefile])
37AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.