1
0
mirror of https://code.semirocket.science/wrapsix synced 2024-09-19 15:01:06 +03:00

Little polishing of configure.ac

Added website address
Deduplicated compiler flags for the debugging build
This commit is contained in:
xHire 2017-05-16 08:42:07 +02:00
parent 60ad783b8f
commit be5743c099

View File

@ -1,7 +1,7 @@
# This file uses AC_CONFIG_MACRO_DIR, so we need Autoconf 2.58 or better. # This file uses AC_CONFIG_MACRO_DIR, so we need Autoconf 2.58 or better.
AC_PREREQ([2.58]) AC_PREREQ([2.58])
AC_INIT([WrapSix], [0.2.0], [xhire@wrapsix.org]) AC_INIT([WrapSix], [0.2.0], [xhire@wrapsix.org], [wrapsix], [https://www.wrapsix.org/])
AM_INIT_AUTOMAKE([-Wall -Werror]) AM_INIT_AUTOMAKE([-Wall -Werror])
# prevent automatic adding of "-g -O2" to CFLAGS # prevent automatic adding of "-g -O2" to CFLAGS
@ -26,7 +26,7 @@ AC_ARG_ENABLE([debug],
[debug=no]) [debug=no])
if test "x$debug" = "xyes"; then if test "x$debug" = "xyes"; then
AS_COMPILER_FLAGS(AM_CFLAGS, "-g -ggdb -O0 -pipe -pedantic -Wshadow -Wall -Wextra -Wno-missing-field-initializers -Wno-unused-parameter -Wold-style-definition -Wdeclaration-after-statement -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Winline -Wformat-nonliteral -Wformat-security -Wswitch-enum -Winit-self -Wmissing-include-dirs -Wundef -Waggregate-return -Wnested-externs -Wunsafe-loop-optimizations -Winvalid-pch") AS_COMPILER_FLAGS(AM_CFLAGS, "-g -ggdb -O0 -pipe -pedantic -Wall -Wextra -Waggregate-return -Wcast-align -Wdeclaration-after-statement -Wformat-nonliteral -Wformat-security -Winit-self -Winline -Winvalid-pch -Wmissing-declarations -Wmissing-include-dirs -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wno-missing-field-initializers -Wno-unused-parameter -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wswitch-enum -Wundef -Wunsafe-loop-optimizations -Wwrite-strings")
AC_DEFINE([DEBUG], [], [Turn on debug mode]) AC_DEFINE([DEBUG], [], [Turn on debug mode])
else else
AS_COMPILER_FLAGS(AM_CFLAGS, "-O2") AS_COMPILER_FLAGS(AM_CFLAGS, "-O2")