forked from skvadrik/re2c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
139 lines (115 loc) · 4.44 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
AC_INIT([re2c],[1.2.1],[[email protected]])
AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz no-dist-gzip])
AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([src/main.cc])
AC_CONFIG_HEADERS([config.h])
AC_SUBST(PACKAGE_VERSION)
AC_SUBST(PACKAGE_NAME)
AC_SUBST(PACKAGE_TARNAME)
AC_SUBST(PACKAGE_RELEASE, ${PACKAGE_RELEASE:-1})
# without this, --std=c++98 disables POSIX functions on Cygwin
AC_USE_SYSTEM_EXTENSIONS
# --enable-debug
AC_ARG_ENABLE([debug], [AS_HELP_STRING([--enable-debug],
[enable checks and assertions])])
AM_CONDITIONAL([DEBUG], [test "x$enable_debug" = "xyes"])
# --enable-docs
AC_ARG_ENABLE([docs], [AS_HELP_STRING([--enable-docs], [regenerate manpage])])
AM_CONDITIONAL([REBUILD_DOCS], [test "x$enable_docs" = "xyes"])
AM_COND_IF([REBUILD_DOCS], [
AC_CHECK_PROGS(RST2MAN, [rst2man rst2man.py], no)
AS_IF([test "x$RST2MAN" = "xno"], [
AC_MSG_ERROR([need rst2man or rst2man.py for --enable-docs])
])
])
# --enable-libs
AC_ARG_ENABLE([libs], [AS_HELP_STRING([--enable-libs], [build libraries])])
AM_CONDITIONAL([WITH_LIBS], [test "x$enable_libs" = "xyes"])
AM_COND_IF([WITH_LIBS], [
AC_SUBST(LDFLAGS_RE2, [])
AC_LANG_PUSH([C++])
AC_CHECK_HEADERS([re2/re2.h], [AS_VAR_SET([LDFLAGS_RE2], ["-lre2"])], [], [[]])
AC_LANG_POP([C++])
])
# checks for programs
AC_PATH_PROG(BISON, bison, no)
AC_PROG_CC # used in skeleton tests
AC_PROG_CXX
AC_PROG_INSTALL
# checks for C++ compiler flags
AC_SUBST(CXXFLAGSDEFAULT, [])
# TRY_CXXFLAG (flag [implied-flags])
# Iff C++ compiler recognizes 'flag', append 'flag' and 'implied-flags' to CXXFLAGSDEFAULT
# (Second param 'implied-flags' is needed for warning suppressions '-Wno-<warning>':
# GCC warns about unrecognized suppressions options only in presence of other warnings,
# which makes it hard to test for them with autoconf.)
AC_DEFUN([TRY_CXXFLAG], [
AC_MSG_CHECKING([C++ compiler flag $1])
AS_VAR_SET([CXXFLAGS_BACKUP], ["$CXXFLAGS"])
AS_VAR_SET([CXXFLAGS], ["$CXXFLAGS $1"])
AC_LANG_PUSH([C++])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM()],
[
AS_VAR_SET([TRY_CXXFLAG_RESULT], [yes])
AS_VAR_SET([CXXFLAGSDEFAULT], ["$CXXFLAGSDEFAULT $1 $2"])
],
[AS_VAR_SET([TRY_CXXFLAG_RESULT], [no])]
)
AC_LANG_POP([C++])
AS_VAR_SET([CXXFLAGS], ["$CXXFLAGS_BACKUP"])
AC_MSG_RESULT([$TRY_CXXFLAG_RESULT])
])
TRY_CXXFLAG([-std=c++98])
TRY_CXXFLAG([-W])
TRY_CXXFLAG([-Wall])
TRY_CXXFLAG([-Wextra])
TRY_CXXFLAG([-Weffc++])
TRY_CXXFLAG([-pedantic])
TRY_CXXFLAG([-Wformat=2])
TRY_CXXFLAG([-Wredundant-decls])
TRY_CXXFLAG([-Wsuggest-attribute=format])
TRY_CXXFLAG([-Wconversion])
TRY_CXXFLAG([-Wsign-conversion])
TRY_CXXFLAG([-Werror=return-type])
TRY_CXXFLAG([-O2])
TRY_CXXFLAG([-Weverything], m4_join([ ],
[-Wno-unknown-warning-option], dnl CLANG eats some GCC options only to warn they are unknown
[-Wno-reserved-id-macro], dnl to allow header guards of the form '_RE2C_PATH_TO_HEADER_BASENAME_'
[-Wno-padded],
[-Wno-old-style-cast], dnl RE2C-generated lexer has lots of C-syle casts because of 're2c:yych:conversion = 1;'
[-Wno-nested-anon-types],
[-Wno-global-constructors] dnl initialization of global constants with std::numeric_limits<...> (mostly for size_t)
[-Wno-shadow-field-in-constructor] dnl using same names in ctor seems more like a feature
[-Wno-undefined-func-template])) dnl explicit specialization to reduce build dependencies
# needed by src/c99_stdint.h
# avoid AC_INCLUDES_DEFAULT
AC_CHECK_HEADERS([stdint.h], [], [], [[]])
# needed for POSIX file API
AC_CHECK_HEADERS([sys/types.h], [], [], [[]])
AC_CHECK_HEADERS([sys/stat.h], [], [], [[]])
AC_CHECK_HEADERS([fcntl.h], [], [], [[]])
AC_CHECK_HEADERS([unistd.h], [], [], [[]])
AC_CHECK_HEADERS([io.h], [], [], [[]]) # windows POSIX-like API
# list of possible types to use in typedefs
AC_CHECK_SIZEOF([char], [], [[]])
AC_CHECK_SIZEOF([short], [], [[]])
AC_CHECK_SIZEOF([int], [], [[]])
AC_CHECK_SIZEOF([long], [], [[]])
AC_CHECK_SIZEOF([long long], [], [[]])
AC_CHECK_SIZEOF([__int64], [], [[]])
# size of pointers
AC_CHECK_SIZEOF([void *], [], [[]])
# 64-bit integer constant suffix
AC_CHECK_SIZEOF([0l], [], [[]])
AC_CHECK_SIZEOF([0ll], [], [[]])
AC_CHECK_SIZEOF([0i8], [], [[]])
AC_CONFIG_FILES([\
Makefile \
doc/manpage.rst \
doc/help.rst \
])
AC_CONFIG_FILES([run_tests.sh], [chmod +x run_tests.sh])
LT_INIT([dlopen win32-dll])
AC_CONFIG_MACRO_DIRS([m4])
AC_OUTPUT