windows/MYconfigure: Fix spelling of 'difference' in a comment
[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 #      -Wimplicit-fallthrough=3
96 #         too many warnings in pcre/study.c & pcre.c
97 #      -Wmissing-field-initializers
98 #      -Wsign-compare
99 #      -Wtype-limits
100 #      -Wunused-but-set-parameter
101 #      -Wunused-but-set-variable
102 CFLAGS="${CFLAGS} -Wextra -Wno-missing-field-initializers -Wno-sign-compare -Wno-type-limits"
103 CFLAGS="${CFLAGS} -Wno-unused-parameter -Wno-unused-but-set-variable"
104
105 #-no-# CFLAGS="${CFLAGS} -Wconversion"
106 #   way too many warnings for things that don't look like a problem
107
108 #-no-# CFLAGS="${CFLAGS} -Werror"
109 # Turn all warnings into errors.
110 #   Privoxy still has a few warnings that are not a problem
111
112 CFLAGS="${CFLAGS} -Wformat=2"
113 # -Wformat is enabled by -Wall.
114 # -Wformat=2 is equivalent to -Wformat -Wformat-nonliteral -Wformat-security -Wformat-y2k
115 #   -Wformat-security : also warn about uses of format functions that represent possible security problems.
116
117 CFLAGS="${CFLAGS} -Wlogical-op"
118 # Warn about suspicious uses of logical operators in expressions.
119
120 CFLAGS="${CFLAGS} -Wshadow"
121 # Warn whenever a local variable or type declaration shadows
122 # another variable or whenever a built-in function is shadowed.
123
124 #-no-# CFLAGS="${CFLAGS} -Wwrite-strings"
125 # These warnings help you find at compile time code that can try to write
126 # into a string constant, but only if you have been very careful about
127 # using const in declarations and prototypes.
128 # >>> Otherwise, it is just a nuisance. <<<  -- this, very much this
129
130 # why does the mingw library _not_ include .a files for libpcre?
131 # *sigh* build my own pcre so I can do static linking
132 # Get the 8.x PCRE library from  https://ftp.pcre.org/pub/pcre/
133 inc="/source/pcre-8.45/"
134 lib="/source/pcre-8.45/.libs"
135 CPPFLAGS="${CPPFLAGS} -I${inc}"
136 LDFLAGS="${LDFLAGS} -L${lib}"
137
138 # mbedtls
139 # Get the 2.16.x mbedtls library from  https://github.com/ARMmbed/mbedtls/tags
140 inc="/source/mbedtls-2.16.11/include"
141 lib="/source/mbedtls-2.16.11/library"
142 MITMOPT="--with-mbedtls"
143 CPPFLAGS="${CPPFLAGS} -I${inc}"
144 LDFLAGS="${LDFLAGS} -L${lib}"
145
146 # brotli
147 # Get the brotli library from  https://github.com/google/brotli/releases
148 inc="/source/brotli-1.0.9/c/include"
149 lib="/source/brotli-1.0.9/.libs"
150 BROTLIOPT="--with-brotli"
151 CPPFLAGS="${CPPFLAGS} -I${inc}"
152 LDFLAGS="${LDFLAGS} -L${lib}"
153
154 ###
155 echo "CFLAGS=${CFLAGS}"
156 echo "CPPFLAGS=${CPPFLAGS}"
157 echo "LDFLAGS=${LDFLAGS}"
158
159 # ./configure cross-compilation options:
160 #    --build: the system on which the program will be built.
161 #    --host:  the system on which the generated program will run.
162 #    --target: only used to build a cross-compiling toolchain.
163
164 ./configure  --host=i686-w64-mingw32  --enable-mingw32  --enable-zlib \
165              --enable-extended-statistics \
166              --enable-pcre-host-patterns \
167              --enable-static-linking \
168              --enable-strptime-sanity-checks \
169              --disable-pthread  \
170              --with-brotli  \
171              --with-mbedtls \
172              --with-docbook=yes
173
174 #  -- done --