diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2007-09-03 14:31:58 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2007-09-03 14:31:58 +0000 |
commit | f8eed0713059b5c4e8e56ba98b8a33fe2a472d84 (patch) | |
tree | 3d77ea00cb55394fce82811fad29aaa258bdf776 /configure.in | |
parent | ff80e419ed5ce6291eefa90dc01b22939d15b0d0 (diff) | |
download | LibXtract-f8eed0713059b5c4e8e56ba98b8a33fe2a472d84.tar.gz LibXtract-f8eed0713059b5c4e8e56ba98b8a33fe2a472d84.tar.bz2 LibXtract-f8eed0713059b5c4e8e56ba98b8a33fe2a472d84.zip |
Checked ANSI C89 compliance (basically a few ifndefs for the C99 math functions: powf, roundf etc). Added a few PD examples/tests.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 4ebc368..3c5fe4b 100644 --- a/configure.in +++ b/configure.in @@ -64,7 +64,7 @@ AC_ARG_ENABLE(simpletest, # age to 0. XTRACT_SO_VERSION=0:0:0 -CFLAGS="$CFLAGS -pedantic -ansi -Wall -std=c99 -I/usr/local/include" +CFLAGS="$CFLAGS -pedantic -ansi -Wall -Werror -std=c89 -I/usr/local/include" LDFLAGS="$LDFLAGS -lm" AC_ARG_WITH(pd_dir, |