diff options
author | David Robillard <d@drobilla.net> | 2008-01-23 20:20:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-01-23 20:20:07 +0000 |
commit | 3ed6969828fd56257c7cfcbc335f4e4e428a3faa (patch) | |
tree | 702976465e390cdc0156029d9dc42427f2ce9860 /configure.ac | |
parent | 685963ae9bb4435f794de578d14a2cb47c24ee15 (diff) | |
download | lilv-3ed6969828fd56257c7cfcbc335f4e4e428a3faa.tar.gz lilv-3ed6969828fd56257c7cfcbc335f4e4e428a3faa.tar.bz2 lilv-3ed6969828fd56257c7cfcbc335f4e4e428a3faa.zip |
Trim useless cruft.
Disable unused parameter warning with --enable-strict.
git-svn-id: http://svn.drobilla.net/lad/slv2@1106 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 925dff3..da53a36 100644 --- a/configure.ac +++ b/configure.ac @@ -91,8 +91,8 @@ AC_ARG_ENABLE(strict, [AS_HELP_STRING(--enable-strict, [Enable strict compiler warnings and errors (false)])], [strict="$enableval"]) if test "$strict" = "yes"; then - CFLAGS="$CFLAGS -std=c99 -pedantic -Wall -Wextra -Winit-self" - CXXFLAGS="$CFLAGS -ansi -pedantic -Wall -Wextra -Wconversion -Winit-self" + CFLAGS="$CFLAGS -std=c99 -pedantic -Wall -Wextra -Winit-self -Wno-unused-parameter" + CXXFLAGS="$CFLAGS -ansi -pedantic -Wall -Wextra -Wconversion -Winit-self -Wno-unused-parameter" fi # SWIG bindings |