… | |
… | |
4 | |
4 | |
5 | AM_CONFIG_HEADER(config.h) |
5 | AM_CONFIG_HEADER(config.h) |
6 | |
6 | |
7 | dnl Checks for programs. |
7 | dnl Checks for programs. |
8 | AM_PROG_LIBTOOL |
8 | AM_PROG_LIBTOOL |
|
|
9 | |
|
|
10 | dnl This is stolen from gnome-libs-1.0.14 |
|
|
11 | AC_ARG_ENABLE(compile-warnings, |
|
|
12 | [ --enable-compile-warnings=[no/minimum/yes] Turn on compiler warnings.], |
|
|
13 | ,enable_compile_warnings=minimum) |
|
|
14 | |
|
|
15 | AC_MSG_CHECKING(what warning flags to pass to the C compiler) |
|
|
16 | warnCFLAGS= |
|
|
17 | if test "x$GCC" != xyes; then |
|
|
18 | enable_compile_warnings=no |
|
|
19 | fi |
|
|
20 | if test "x$enable_compile_warnings" != "xno"; then |
|
|
21 | if test "x$GCC" = "xyes"; then |
|
|
22 | case " $CFLAGS " in |
|
|
23 | *[\ \ ]-Wall[\ \ ]*) ;; |
|
|
24 | *) warnCFLAGS="-Wall -Wunused" ;; |
|
|
25 | esac |
|
|
26 | |
|
|
27 | ## -W is not all that useful. And it cannot be controlled |
|
|
28 | ## with individual -Wno-xxx flags, unlike -Wall |
|
|
29 | if test "x$enable_compile_warnings" = "xyes"; then |
|
|
30 | warnCFLAGS="$warnCFLAGS -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith" |
|
|
31 | fi |
|
|
32 | fi |
|
|
33 | fi |
|
|
34 | AC_MSG_RESULT($warnCFLAGS) |
|
|
35 | |
|
|
36 | AC_ARG_ENABLE(iso-c, |
|
|
37 | [ --enable-iso-c Try to warn if code is not ISO C ],, |
|
|
38 | enable_iso_c=no) |
|
|
39 | |
|
|
40 | AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) |
|
|
41 | complCFLAGS= |
|
|
42 | if test "x$enable_iso_c" != "xno"; then |
|
|
43 | if test "x$GCC" = "xyes"; then |
|
|
44 | case " $CFLAGS " in |
|
|
45 | *[\ \ ]-ansi[\ \ ]*) ;; |
|
|
46 | *) complCFLAGS="$complCFLAGS -ansi" ;; |
|
|
47 | esac |
|
|
48 | |
|
|
49 | case " $CFLAGS " in |
|
|
50 | *[\ \ ]-pedantic[\ \ ]*) ;; |
|
|
51 | *) complCFLAGS="$complCFLAGS -pedantic" ;; |
|
|
52 | esac |
|
|
53 | fi |
|
|
54 | fi |
|
|
55 | AC_MSG_RESULT($complCFLAGS) |
|
|
56 | if test "x$cflags_set" != "xyes"; then |
|
|
57 | CFLAGS="$CFLAGS $warnCFLAGS $complCFLAGS" |
|
|
58 | cflags_set=yes |
|
|
59 | AC_SUBST(cflags_set) |
|
|
60 | fi |
|
|
61 | |
9 | |
62 | |
10 | dnl Checks for libraries. |
63 | dnl Checks for libraries. |
11 | AC_ARG_WITH(imagemagick, |
64 | AC_ARG_WITH(imagemagick, |
12 | [ --with-imagemagick enable ImageMagick (default = yes)], |
65 | [ --with-imagemagick enable ImageMagick (default = yes)], |
13 | [IMAGEMAGICK=$withval], |
66 | [IMAGEMAGICK=$withval], |
… | |
… | |
97 | AC_SUBST(INT_16_BIT) |
150 | AC_SUBST(INT_16_BIT) |
98 | AC_SUBST(INT_32_BIT) |
151 | AC_SUBST(INT_32_BIT) |
99 | |
152 | |
100 | dnl Checks for library functions. |
153 | dnl Checks for library functions. |
101 | AC_FUNC_VPRINTF |
154 | AC_FUNC_VPRINTF |
102 | AC_CHECK_FUNCS(strdup) |
|
|
103 | AC_REPLACE_FUNCS(strdup) |
155 | AC_REPLACE_FUNCS(strdup) |
|
|
156 | AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.o getopt1.o") |
|
|
157 | |
104 | |
158 | |
105 | dnl With and without functions |
159 | dnl With and without functions |
106 | AC_ARG_ENABLE(html-docs, |
160 | AC_ARG_ENABLE(html-docs, |
107 | [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], |
161 | [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], |
108 | [case "${enableval}" in |
162 | [case "${enableval}" in |
… | |
… | |
137 | no) rtfdocs=false ;; |
191 | no) rtfdocs=false ;; |
138 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; |
192 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; |
139 | esac],[rtfdocs=false]) |
193 | esac],[rtfdocs=false]) |
140 | AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) |
194 | AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) |
141 | |
195 | |
142 | dnl This is stolen from gnome-libs-1.0.14 |
|
|
143 | AC_ARG_ENABLE(compile-warnings, |
|
|
144 | [ --enable-compile-warnings=[no/minimum/yes] Turn on compiler warnings.], |
|
|
145 | ,enable_compile_warnings=minimum) |
|
|
146 | |
|
|
147 | AC_MSG_CHECKING(what warning flags to pass to the C compiler) |
|
|
148 | warnCFLAGS= |
|
|
149 | if test "x$GCC" != xyes; then |
|
|
150 | enable_compile_warnings=no |
|
|
151 | fi |
|
|
152 | if test "x$enable_compile_warnings" != "xno"; then |
|
|
153 | if test "x$GCC" = "xyes"; then |
|
|
154 | case " $CFLAGS " in |
|
|
155 | *[\ \ ]-Wall[\ \ ]*) ;; |
|
|
156 | *) warnCFLAGS="-Wall -Wunused" ;; |
|
|
157 | esac |
|
|
158 | |
|
|
159 | ## -W is not all that useful. And it cannot be controlled |
|
|
160 | ## with individual -Wno-xxx flags, unlike -Wall |
|
|
161 | if test "x$enable_compile_warnings" = "xyes"; then |
|
|
162 | warnCFLAGS="$warnCFLAGS -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith" |
|
|
163 | fi |
|
|
164 | fi |
|
|
165 | fi |
|
|
166 | AC_MSG_RESULT($warnCFLAGS) |
|
|
167 | |
|
|
168 | AC_ARG_ENABLE(iso-c, |
|
|
169 | [ --enable-iso-c Try to warn if code is not ISO C ],, |
|
|
170 | enable_iso_c=no) |
|
|
171 | |
|
|
172 | AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) |
|
|
173 | complCFLAGS= |
|
|
174 | if test "x$enable_iso_c" != "xno"; then |
|
|
175 | if test "x$GCC" = "xyes"; then |
|
|
176 | case " $CFLAGS " in |
|
|
177 | *[\ \ ]-ansi[\ \ ]*) ;; |
|
|
178 | *) complCFLAGS="$complCFLAGS -ansi" ;; |
|
|
179 | esac |
|
|
180 | |
|
|
181 | case " $CFLAGS " in |
|
|
182 | *[\ \ ]-pedantic[\ \ ]*) ;; |
|
|
183 | *) complCFLAGS="$complCFLAGS -pedantic" ;; |
|
|
184 | esac |
|
|
185 | fi |
|
|
186 | fi |
|
|
187 | AC_MSG_RESULT($complCFLAGS) |
|
|
188 | if test "x$cflags_set" != "xyes"; then |
|
|
189 | CFLAGS="$CFLAGS $warnCFLAGS $complCFLAGS" |
|
|
190 | cflags_set=yes |
|
|
191 | AC_SUBST(cflags_set) |
|
|
192 | fi |
|
|
193 | |
196 | |
194 | AC_OUTPUT([Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile]) |
197 | AC_OUTPUT([Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile]) |