doc nit: no longer so many warnings for implicit-fallthrough
[privoxy.git] / windows / MYconfigure
1 #!/bin/sh
2 # run the configure script for a native Windows build
3
4 if [ -f ../configure.in ]; then
5    #  we're in the windows directory, so we need to go up a level
6    cd ..
7 fi
8
9 if [ ! -f configure ]; then
10    autoheader
11    #   creates config.h.in
12    autoconf
13    #   creates configure
14 fi
15
16 ####### configure options:
17 # --help                          Show configure options and a short description
18 #
19 # --host=i686-w64-mingw32         Use the mingw cross-compiler to build a 'native' windows binary
20 # --enable-mingw32                Use mingw32 for a Windows GUI
21 # --enable-static-linking         Use static linking instead of dynamic linking (and not have
22 #                                 to put all the .DLLs in the path or the same dir as Privoxy)
23 # --disable-pthread               Use native threads instead of POSIX pthreads library
24 # --disable-dynamic-pcre          Use the built-in, static pcre, even if libpcre is available
25 # --with-docbook=yes              Enable docbook documentation creation
26
27
28 export CFLAGS="-O2"
29 # note: configure.in line 155
30 #         if test "X$CFLAGS" = "X "; then # if CFLAGS were unset (see above)
31 #   In other words, if you set CFLAGS you need to include -O2 if you want optimization
32 #   assume I'll set cflags below, so set O2 now
33
34 export CPPFLAGS=""
35 # start with initially empty flags
36
37 export LDFLAGS=""
38 # start with initially empty flags
39
40
41 CFLAGS="${CFLAGS} -fstack-protector-strong -D_FORTIFY_SOURCE=2"
42 LDFLAGS="${LDFLAGS} -fstack-protector-strong"
43 # -fstack-protector-strong:  enable stack checking.
44 # NOTE: need to specify when compiling _and_ linking
45 # stack-protector-strong: better balance between security and performance.
46 #   This flag protects more kinds of vulnerable functions than -fstack-protector does,
47 #   but not every function, providing better performance than -fstack-protector-all.
48 # see : https://en.wikipedia.org/wiki/Buffer_overflow_protection
49 # NOTE: needs static linking or the following in the path:
50 #         /usr/i686-w64-mingw32/sys-root/mingw/bin/libssp-0.dll
51 #
52 # -D_FORTIFY_SOURCE:  detect some buffer overflow errors
53 #     ***>> requires compiler optimization level 1 or above <<***
54 # see : https://gcc.gnu.org/legacy-ml/gcc-patches/2004-09/msg02055.html
55 #   The difference between -D_FORTIFY_SOURCE=1 and -D_FORTIFY_SOURCE=2 is e.g. for
56 #     struct S { struct T { char buf[5]; int x; } t; char buf[20]; } var;
57 #   With -D_FORTIFY_SOURCE=1,
58 #     strcpy (&var.t.buf[1], "abcdefg");
59 #   is not considered an overflow (object is whole VAR), while with -D_FORTIFY_SOURCE=2
60 #     strcpy (&var.t.buf[1], "abcdefg");
61 #   will be considered a buffer overflow.
62
63 ### CFLAGS="${CFLAGS} -march=native"
64 # -march=cpu-type
65 #   Generate instructions for the machine type cpu-type.  In contrast to -mtune=cpu-type, which merely tunes the
66 #   generated code for the specified cpu-type, -march=cpu-type allows GCC to generate code that may not run at all on
67 #   processors other than the one indicated.
68 #   Specifying -march=cpu-type implies -mtune=cpu-type.
69 #
70 # -march=native
71 #   This selects the CPU to generate code for at compilation time by determining the processor type of the compiling
72 #   machine.  Using -march=native enables all instruction subsets supported by the local machine (hence the result
73 #   might not run on different machines).  Using -mtune=native produces code optimized for the local machine under
74 #   the constraints of the selected instruction set.
75
76 LDFLAGS="${LDFLAGS} -Wl,--nxcompat"
77 # https://en.wikipedia.org/wiki/Data_Execution_Prevention
78 #   Enable DEP with -Wl,--nxcompat
79 # also called NX or nxcompat for "no execute"  see: https://en.wikipedia.org/wiki/NX_bit
80 #   $ peflags -v privoxy.exe
81 #   privoxy.exe: coff(0x0106[+executable_image,+line_nums_stripped,+32bit_machine]) pe(0x0140[+dynamicbase,+nxcompat])
82
83
84 LDFLAGS="${LDFLAGS} -Wl,--dynamicbase,--export-all-symbols"
85 # https://en.wikipedia.org/wiki/Address_space_layout_randomization
86 # https://stackoverflow.com/questions/24283918/how-can-i-enable-aslr-dep-and-safeseh-on-an-exe-in-codeblocks-using-mingw
87 #   ASLR with gcc has a problem: -Wl,--dynamicbase doesn't emit the necessary relocation table.
88 #   As a workaround, you can pass -Wl,--dynamicbase,--export-all-symbols
89 #   NOTE: you can't have both this and profiling (cflags='-pg') enabled!
90
91 CFLAGS="${CFLAGS} -Wall"
92 # see: http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
93 # -Wall   doesn't actually turn on all warnings, so add  -Wextra
94 #    but then plenty too many complaints by
95 #      -Wmissing-field-initializers
96 #      -Wsign-compare
97 #      -Wtype-limits
98 #      -Wunused-but-set-parameter
99 #      -Wunused-but-set-variable
100 CFLAGS="${CFLAGS} -Wextra -Wno-missing-field-initializers -Wno-sign-compare -Wno-type-limits"
101 CFLAGS="${CFLAGS} -Wno-unused-parameter -Wno-unused-but-set-variable"
102
103 #-no-# CFLAGS="${CFLAGS} -Wconversion"
104 #   way too many warnings for things that don't look like a problem
105
106 #-no-# CFLAGS="${CFLAGS} -Werror"
107 # Turn all warnings into errors.
108 #   Privoxy still has a few warnings that are not a problem
109
110 CFLAGS="${CFLAGS} -Wformat=2"
111 # -Wformat is enabled by -Wall.
112 # -Wformat=2 is equivalent to -Wformat -Wformat-nonliteral -Wformat-security -Wformat-y2k
113 #   -Wformat-security : also warn about uses of format functions that represent possible security problems.
114
115 CFLAGS="${CFLAGS} -Wlogical-op"
116 # Warn about suspicious uses of logical operators in expressions.
117
118 CFLAGS="${CFLAGS} -Wshadow"
119 # Warn whenever a local variable or type declaration shadows
120 # another variable or whenever a built-in function is shadowed.
121
122 #-no-# CFLAGS="${CFLAGS} -Wwrite-strings"
123 # These warnings help you find at compile time code that can try to write
124 # into a string constant, but only if you have been very careful about
125 # using const in declarations and prototypes.
126 # >>> Otherwise, it is just a nuisance. <<<  -- this, very much this
127
128 # why does the mingw library _not_ include .a files for libpcre?
129 # *sigh* build my own pcre so I can do static linking
130 # Get the 8.x PCRE library from  https://ftp.pcre.org/pub/pcre/
131 inc="/source/pcre-8.45/"
132 lib="/source/pcre-8.45/.libs"
133 CPPFLAGS="${CPPFLAGS} -I${inc}"
134 LDFLAGS="${LDFLAGS} -L${lib}"
135
136 # mbedtls
137 ## https://github.com/Mbed-TLS/mbedtls/releases/tag/v2.16.12
138 ##   This is the last release of the 2.16 long-time support branch.
139 ##   Users who want a long-time branch should move to mbedtls-2.28,
140 ##   which is backward-compatible and will be supported for at least
141 ##   3 years.
142 # Get the 2.28.x mbedtls library from  https://github.com/Mbed-TLS/mbedtls/tags
143 inc="/source/mbedtls-2.28.2/include"
144 lib="/source/mbedtls-2.28.2/library"
145
146 MITMOPT="--with-mbedtls"
147 CPPFLAGS="${CPPFLAGS} -I${inc}"
148 LDFLAGS="${LDFLAGS} -L${lib}"
149
150 # brotli
151 # Get the brotli library from  https://github.com/google/brotli/releases
152 inc="/source/brotli-1.0.9/c/include"
153 lib="/source/brotli-1.0.9/.libs"
154 BROTLIOPT="--with-brotli"
155 CPPFLAGS="${CPPFLAGS} -I${inc}"
156 LDFLAGS="${LDFLAGS} -L${lib}"
157
158 ###
159 echo "CFLAGS=${CFLAGS}"
160 echo "CPPFLAGS=${CPPFLAGS}"
161 echo "LDFLAGS=${LDFLAGS}"
162
163 # ./configure cross-compilation options:
164 #    --build: the system on which the program will be built.
165 #    --host:  the system on which the generated program will run.
166 #    --target: only used to build a cross-compiling toolchain.
167
168 ./configure  --host=i686-w64-mingw32  --enable-mingw32  --enable-zlib \
169              --enable-extended-statistics \
170              --enable-pcre-host-patterns \
171              --enable-static-linking \
172              --enable-strptime-sanity-checks \
173              --disable-pthread  \
174              --with-brotli  \
175              --with-mbedtls \
176              --with-docbook=yes
177
178 #  -- done --