Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / synfig_0_61_05 / synfig-core / config / subs.m4
1
2 ## AC_ARG_WARNINGS()
3 ##
4 ## Provide the --enable-warnings configure argument, set to 'minimum'
5 ## by default.
6 ##
7 AC_DEFUN([AC_ARG_WARNINGS],
8 [
9   AC_ARG_ENABLE([warnings],
10       [  --enable-warnings=[[none|minimum|maximum|hardcore]]
11                           Control compiler pickyness.  [[default=maximum]]],
12       [gtkmm_enable_warnings="$enableval"],
13       gtkmm_enable_warnings="maximum")
14
15   AC_MSG_CHECKING([for compiler warning flags to use])
16
17   gtkmm_warning_flags=''
18
19   case "$gtkmm_enable_warnings" in
20     none|no)     gtkmm_warning_flags='';;
21     minimum|yes) gtkmm_warning_flags='-Wall -Wno-unused-parameter';;
22     maximum)     gtkmm_warning_flags='-W -Wall -Wno-unused-parameter';;
23     hardcore)    gtkmm_warning_flags='-W -Wall -Werror -Wno-unused-parameter';;
24   esac
25
26   gtkmm_use_flags=''
27
28   if test "x$gtkmm_warning_flags" != "x"
29   then
30     echo 'int foo() { return 0; }' > conftest.cc
31
32     for flag in $gtkmm_warning_flags
33     do
34       # Test whether the compiler accepts the flag.  GCC doesn't bail
35       # out when given an unsupported flag but prints a warning, so
36       # check the compiler output instead.
37       gtkmm_cxx_out="`$CXX $flag -c conftest.cc 2>&1`"
38       rm -f conftest.$OBJEXT
39       test "x${gtkmm_cxx_out}" = "x" && \
40         gtkmm_use_flags="${gtkmm_use_flags:+$gtkmm_use_flags }$flag"
41     done
42
43     rm -f conftest.cc
44     gtkmm_cxx_out=''
45   fi
46
47   if test "x$gtkmm_use_flags" != "x"
48   then
49     for flag in $gtkmm_use_flags
50     do
51       case " $CXXFLAGS " in
52         *" $flag "*) ;; # don't add flags twice
53         *)           CXXFLAGS="${CXXFLAGS:+$CXXFLAGS }$flag";;
54       esac
55     done
56   else
57     gtkmm_use_flags='none'
58   fi
59
60   AC_MSG_RESULT([$gtkmm_use_flags])
61 ])
62
63
64
65
66 AC_DEFUN([AC_ARG_DEBUG],
67 [
68         AC_MSG_CHECKING([for debug flags])
69
70         AC_ARG_ENABLE(debug,[  --enable-debug           Build in debugging mode],[
71                 debug=$enableval
72         ],[
73                 debug="no"
74         ])
75         debug_flags=''
76
77         case "$debug" in
78                 yes)
79                         debug_flags="-D_DEBUG -g"
80                 ;;
81                 half)
82                         debug_flags="-DNDEBUG -g"
83                 ;;
84                 no|*)
85                         debug_flags="-DNDEBUG -Wno-deprecated"
86                 ;;
87         esac
88
89
90         CXXFLAGS="`echo $CXXFLAGS | sed s:-g::` $debug_flags"
91         CFLAGS="`echo $CFLAGS | sed s:-g::` $debug_flags"
92
93         AC_MSG_RESULT([$debug_flags])
94 ])
95
96
97
98
99 AC_DEFUN([AC_ARG_OPTIMIZATION],
100 [
101         AC_MSG_CHECKING([for optimization flags])
102
103         AC_ARG_ENABLE(optimization,[  --enable-optimization=[[0,1,2,3,4]] Select optimization level (default=2)],[
104                 optimization=$enableval
105         ],[
106                 optimization="2"
107         ])
108         optimization_flags=''
109         case "$optimization" in
110                 0|no)   optimization_flags="-O0";;
111                 1)              optimization_flags="-O1 -ffast-math";;
112                 2|yes)  optimization_flags="-O2 -ffast-math";;
113                 pass1)  optimization_flags="-O2 -ffast-math -fprofile-arcs";;
114                 pass2)  optimization_flags="-O2 -ffast-math -fbranch-probabilities";;
115                 3)              optimization_flags="-O3 -ffast-math";;
116                 *)              optimization_flags="-O4 -ffast-math";;
117         esac
118         CXXFLAGS="`echo $CXXFLAGS | sed 's:-O.::g'` $optimization_flags"
119         CFLAGS="`echo $CFLAGS | sed 's:-O.::g'` $optimization_flags"
120         AC_MSG_RESULT([$optimization_flags])    
121 ])
122
123 AC_DEFUN([AC_ARG_PROFILE_ARCS],
124 [
125         AC_MSG_CHECKING([for arc profiling])
126
127         AC_ARG_ENABLE(profile-arcs,[  --enable-profile-arcs      Enable arc profiling],[
128                 profile_arcs=$enableval
129         ],[
130                 profile_arcs=no
131         ])
132         
133         if test $profile_arcs = "yes" ; then {
134                 CXXFLAGS="$CXXFLAGS -fprofile-arcs";
135                 CFLAGS="$CFLAGS -fprofile-arcs";
136         } ; fi
137                 
138         AC_MSG_RESULT([$profile_arcs])  
139 ])
140
141 AC_DEFUN([AC_ARG_BRANCH_PROBABILITIES],
142 [
143         AC_MSG_CHECKING([for branch-probabilities])
144
145         AC_ARG_ENABLE(branch-probabilities,[  --enable-branch-probabilities      Enable branch-probabilities],[
146                 branch_probabilities=$enableval
147         ],[
148                 branch_probabilities=no
149         ])
150         
151         if test $branch_probabilities = "yes" ; then {
152                 CXXFLAGS="$CXXFLAGS -fbranch-probabilities";
153                 CFLAGS="$CFLAGS -fbranch-probabilities";
154         } ; fi
155                 
156         AC_MSG_RESULT([$branch_probabilities])  
157 ])
158
159 AC_DEFUN([AC_ARG_PROFILING],
160 [
161         AC_MSG_CHECKING([for profiling])
162
163         AC_ARG_ENABLE(profiling,[  --enable-profiling      Enable profiling using gprof],[
164                 profiling=$enableval
165         ],[
166                 profiling=no
167         ])
168         
169         if test $profiling = "yes" ; then {
170                 CFLAGS="$CFLAGS -pg";
171                 CXXFLAGS="$CXXFLAGS -pg";
172                 LDFLAGS="$LDFLAGS -pg";
173                 LIBS="$LIBS";
174         } ; fi
175                 
176         AC_MSG_RESULT([$profiling])     
177 ])
178
179 AC_DEFUN([AC_ARG_TIMELIMIT],
180 [
181         AC_ARG_ENABLE(timelimit,[  --enable-timelimit=[[days]] Set number of usable days(default=forever)],[
182                 death_time=$((`date +%s`+$enableval*60*60*24))
183                 AC_DEFINE_UNQUOTED(DEATH_TIME,$death_time, [ Describes the time at which the library will stop working ] )
184         ],
185         [
186                 death_time="no"
187         ])
188 ])
189
190 AC_DEFUN([AC_ARG_LICENSE_KEY],
191 [
192         AC_ARG_ENABLE(license_key,[  --enable-license-key    Turn on license key requirement],[
193                 AC_DEFINE(LICENSE_KEY_REQUIRED,, [ Enables license key checks ] )
194         ],
195         [
196                 license_key=no
197         ])
198 ])
199
200 AC_DEFUN([AC_ARG_TIMELIMIT],
201 [
202         AC_ARG_ENABLE(timelimit,[  --enable-timelimit=[[days]] Set number of usable days(default=forever)],[
203                 death_time=$((`date +%s`+$enableval*60*60*24))
204                 AC_DEFINE_UNQUOTED(DEATH_TIME,$death_time, [ Describes the time at which the library will stop working ] )
205         ],
206         [
207                 death_time="no"
208         ])
209 ])
210
211 MINGW_FLAGS="-mno-cygwin"
212
213
214 AC_DEFUN([AC_WIN32_QUIRKS],
215 [
216
217 case "$host" in
218   *mingw*)
219     AC_MSG_CHECKING([the flavor of the compiler])
220     if ( $CC --version | grep -q mingw ) ; then {
221         AC_MSG_RESULT([compiler is mingw special])
222         LIBTOOL_PATCH_SED="
223             s/dir=\"\$absdir\"/dir=\`cygpath -d -m \"\$absdir\"\`/;
224             s/absdir=\`cd \"\$dir\" && pwd\`/absdir=\`cygpath -d -m \"\$dir\"\`/;
225             s/# We need an absolute path/dir=\`cygpath -d -m \"\$dir\"\` # We need an absolute path/;
226             s- /usr/lib- C:/mingw/lib-g;
227             s-\"/lib -\"C:/mingw/lib -g;
228             s- /lib/ - -g;
229         ";
230         sys_lib_dlsearch_path_spec="C:/mingw/lib"
231         ac_default_prefix=`cygpath -d -m "$ac_default_prefix"`;
232     } else {
233     AC_MSG_RESULT([compiler is cygwin stock, adding -mno-cygwin])
234     CPP="$CPP $MINGW_FLAGS"
235     CC="$CC $MINGW_FLAGS"
236     CXX="$CXX $MINGW_FLAGS -L/usr/$host/lib -I/usr/include/c++/3.3.3/$host"
237     CXXCPP="$CXXCPP $MINGW_FLAGS"
238
239
240 } ; fi
241
242     LTCC="gcc"
243     CXXFLAGS="$CXXFLAGS -LC:/GTK/lib"
244     CFLAGS="$CFLAGS -LC:/GTK/lib"
245     LDFLAGS="$LDFLAGS -lole32 -no-undefined -Wl,--export-all-symbols -Wl,--subsystem=console -Wl,--enable-runtime-pseudo-reloc" 
246 dnl    LDFLAGS="$LDFLAGS -lole32 -no-undefined -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--subsystem=console -Wl,--enable-runtime-pseudo-reloc"
247     ;;
248   *cygwin*)
249     LDFLAGS="$LDFLAGS -lole32 -no-undefined -Wl,--export-all-symbols"
250 dnl    LDFLAGS="$LDFLAGS -lole32 -no-undefined -Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--subsystem=console"
251     CXXFLAGS="$CXXFLAGS -I/target/include"
252     CFLAGS="$CFLAGS -I/target/include"
253     ;;
254   powerpc-apple*)
255     echo Adding mac-specific optimization flags. . .
256     CXXFLAGS="$CXXFLAGS $G5OPTFLAGS"
257     ;;
258 esac
259
260
261 ])
262
263 AC_DEFUN([AC_LIBTOOL_PATCH],
264 [
265
266 if [[ "$LIBTOOL_PATCH_SED""x" != "x" ]] ; then {
267     printf "Patching libtool... "
268     cat libtool | sed "$LIBTOOL_PATCH_SED" > libtool2
269     rm libtool
270     mv libtool2 libtool
271     chmod +x libtool
272     AC_MSG_RESULT([patched])
273 } fi ;
274
275
276 ])