]>
Commit | Line | Data |
---|---|---|
1 | # This file contains everything that autoconf guessed for your system. | |
2 | # if you want you can edit it, just don't re-run configure. | |
3 | ||
4 | PACKAGE = @PACKAGE@ | |
5 | PACKAGE_VERSION = @PACKAGE_VERSION@ | |
6 | PACKAGE_MAIL = @PACKAGE_MAIL@ | |
7 | ||
8 | # C++ compiler options | |
9 | CC = @CC@ | |
10 | CPPFLAGS+= @CPPFLAGS@ @DEFS@ -D_REENTRANT -D_FORTIFY_SOURCE=2 | |
11 | CXX = @CXX@ | |
12 | CXXSTD = -std=c++11 | |
13 | CXXFLAGS+= @CXXFLAGS@ -Wall -Wextra | |
14 | CXXFLAGS+= -Wcast-align -Wlogical-op -Wredundant-decls -Wmissing-declarations -Wunsafe-loop-optimizations | |
15 | CXXFLAGS+= -Wctor-dtor-privacy -Wdisabled-optimization -Winit-self -Wmissing-include-dirs -Wnoexcept -Wsign-promo -Wundef | |
16 | # suggests methods which already have such an attribute | |
17 | #CXXFLAGS+= -Wsuggest-attribute=pure -Wsuggest-attribute=const -Wsuggest-attribute=noreturn | |
18 | # sanitize options to be enabled for testing | |
19 | #CXXFLAGS+= -fsanitize=address -fsanitize=undefined -fno-sanitize=vptr | |
20 | # a bit too pedantic to be run by default | |
21 | #CXXFLAGS+= -Wpedantic -Wno-long-long -Wno-vla -Wno-variadic-macros | |
22 | NUM_PROCS = @NUM_PROCS@ | |
23 | ||
24 | # Linker stuff | |
25 | PICFLAGS+= -fPIC -DPIC | |
26 | LFLAGS+= @LDFLAGS@ | |
27 | LEFLAGS+= | |
28 | SOCKETLIBS:= @SOCKETLIBS@ | |
29 | AR:=@AR@ | |
30 | RANLIB:=@RANLIB@ | |
31 | ||
32 | # Dep generation - this only works for gnu stuff | |
33 | GCC3DEP = @GCC3DEP@ | |
34 | INLINEDEPFLAG = -MD | |
35 | ||
36 | DOXYGEN = @DOXYGEN@ | |
37 | W3M = @W3M@ | |
38 | ||
39 | # xsltproc for the man pages and documentation | |
40 | XSLTPROC := @XSLTPROC@ | |
41 | ||
42 | # DocBook XML | |
43 | DOCBOOK = $(XSLTPROC) --nonet --novalid --xinclude | |
44 | DOCBOOK2TEXT = $(W3M) -o display_charset=UTF-8 -no-graph -T text/html \ | |
45 | -cols 78 -dump | |
46 | ||
47 | # po4a for the man pages | |
48 | PO4A := @PO4A@ | |
49 | ||
50 | # Gettext settings | |
51 | GMSGFMT = @GMSGFMT@ | |
52 | XGETTEXT = @XGETTEXT@ | |
53 | MSGCOMM:=$(dir $(XGETTEXT))/msgcomm | |
54 | MSGMERGE:=$(dir $(XGETTEXT))/msgmerge | |
55 | BASH = @BASH@ | |
56 | ||
57 | # Various library checks | |
58 | PTHREADLIB = @PTHREADLIB@ | |
59 | PYTHONLIB = @PYTHONLIB@ | |
60 | PYTHONVER = @PYTHONVER@ | |
61 | PYTHONPREFIX = @PYTHONPREFIX@ | |
62 | PYTHONEXECPREFIX = @PYTHONEXECPREFIX@ | |
63 | PYTHONINCLUDE = @PYTHONINCLUDE@ | |
64 | BDBLIB = @BDBLIB@ | |
65 | INTLLIBS = @INTLLIBS@ | |
66 | ||
67 | # Shim Headerfile control | |
68 | HAVE_STATVFS = @HAVE_STATVFS@ | |
69 | HAVE_ZLIB = @HAVE_ZLIB@ | |
70 | HAVE_BZ2 = @HAVE_BZ2@ | |
71 | HAVE_LZMA = @HAVE_LZMA@ | |
72 | HAVE_LZ4 = @HAVE_LZ4@ | |
73 | NEED_SOCKLEN_T_DEFINE = @NEED_SOCKLEN_T_DEFINE@ | |
74 | ||
75 | # Shared library things | |
76 | HOST_OS = @host_os@ | |
77 | ifneq ($(words $(filter gnu% linux-gnu% kfreebsd-gnu% %-gnu,$(HOST_OS))),0) | |
78 | SONAME_MAGIC=-Wl,-soname -Wl, | |
79 | LFLAGS_SO= | |
80 | else | |
81 | # Do not know how to create shared libraries here. | |
82 | ONLYSTATICLIBS = yes | |
83 | endif |