diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2007-09-03 15:03:21 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2007-09-03 15:03:21 +0000 |
commit | e80ffb5d91cd3e017b5549e912a4e93f7bf03572 (patch) | |
tree | 93044111e8523c10cc531080fb5802816fd8983b /configure.in | |
parent | f8eed0713059b5c4e8e56ba98b8a33fe2a472d84 (diff) | |
download | LibXtract-e80ffb5d91cd3e017b5549e912a4e93f7bf03572.tar.gz LibXtract-e80ffb5d91cd3e017b5549e912a4e93f7bf03572.tar.bz2 LibXtract-e80ffb5d91cd3e017b5549e912a4e93f7bf03572.zip |
Back to C99 in CFLAGS, but at least we (should) have the C89 option if anyone can't make it work with their compiler
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 3c5fe4b..9c4abbe 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 -Werror -std=c89 -I/usr/local/include" +CFLAGS="$CFLAGS -pedantic -ansi -Wall -Werror -std=c99 -I/usr/local/include" LDFLAGS="$LDFLAGS -lm" AC_ARG_WITH(pd_dir, |