1 | dnl Process this file with autoconf to produce a configure script. |
1 | dnl Process this file with autoconf to produce a configure script. |
2 | AC_INIT(psiconv) |
2 | AC_INIT(lib/psiconv) |
3 | AM_INIT_AUTOMAKE(psiconv,0.5.0) |
3 | AM_INIT_AUTOMAKE(psiconv,0.7.1) |
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 | |
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 | |
|
|
62 | |
10 | dnl Checks for libraries. |
63 | dnl Checks for libraries. |
|
|
64 | AC_ARG_WITH(imagemagick, |
|
|
65 | [ --with-imagemagick enable ImageMagick (default = yes)], |
|
|
66 | [IMAGEMAGICK=$withval], |
|
|
67 | [IMAGEMAGICK='yes']) |
|
|
68 | if test x"$IMAGEMAGICK" != xno ; then |
|
|
69 | AC_CHECK_PROG(IMAGEMAGICK,Magick-config,yes,no) |
|
|
70 | if test x"$IMAGEMAGICK" != xno ; then |
|
|
71 | CFLAGS_OLD="$CFLAGS" |
|
|
72 | CPPFLAGS_OLD="$CPPFLAGS" |
|
|
73 | LDFLAGS_OLD="$LDFLAGS" |
|
|
74 | LIBS_OLD="$LIBS" |
|
|
75 | CFLAGS="$CFLAGS `Magick-config --cflags`" |
|
|
76 | CPPFLAGS="$CPPFLAGS `Magick-config --cppflags`" |
|
|
77 | LDFLAGS="$LDFLAGS `Magick-config --ldflags`" |
|
|
78 | LIBS="$LIBS `Magick-config --libs`" |
|
|
79 | |
|
|
80 | AC_MSG_CHECKING(whether GetMagickInfo works) |
|
|
81 | AC_TRY_RUN([ #include <magick/magick.h> |
|
|
82 | #include <magick/config.h> |
|
|
83 | #include <stdio.h> |
|
|
84 | extern void OpenModules(void); |
|
|
85 | int main(void) { GetMagickInfo(NULL); |
|
|
86 | #if defined(HasLTDL) |
|
|
87 | OpenModules(); |
|
|
88 | #endif |
|
|
89 | return (NULL == GetMagickInfo(NULL)); }], |
|
|
90 | IMAGEMAGICK=yes,IMAGEMAGICK=no,IMAGEMAGICK=yes) |
|
|
91 | AC_MSG_RESULT($IMAGEMAGICK) |
|
|
92 | LDFLAGS="$LDFLAGS_OLD" |
|
|
93 | LIBS="$LIBS_OLD" |
|
|
94 | dnl Note: CFLAGS can't be set for single directories, so we propagate them |
|
|
95 | if test x"$IMAGEMAGICK" = xno ; then |
|
|
96 | CFLAGS="$CFLAGS_OLD" |
|
|
97 | CPPFLAGS="$CPPFLAGS_OLD" |
|
|
98 | fi |
|
|
99 | fi |
|
|
100 | fi |
|
|
101 | if test x"$IMAGEMAGICK" = xyes ; then |
|
|
102 | LIB_MAGICK="`Magick-config --libs` `Magick-config --ldflags`" |
|
|
103 | AC_DEFINE(IMAGEMAGICK) |
|
|
104 | else |
|
|
105 | LIB_MAGICK= |
|
|
106 | fi |
|
|
107 | AC_SUBST(LIB_MAGICK) |
11 | |
108 | |
12 | dnl Checks for header files. |
109 | dnl Checks for header files. |
13 | AC_HEADER_STDC |
110 | AC_HEADER_STDC |
14 | AC_CHECK_HEADERS(unistd.h) |
111 | AC_CHECK_HEADERS(unistd.h) |
15 | |
112 | |
… | |
… | |
80 | AC_SUBST(INT_16_BIT) |
177 | AC_SUBST(INT_16_BIT) |
81 | AC_SUBST(INT_32_BIT) |
178 | AC_SUBST(INT_32_BIT) |
82 | |
179 | |
83 | dnl Checks for library functions. |
180 | dnl Checks for library functions. |
84 | AC_FUNC_VPRINTF |
181 | AC_FUNC_VPRINTF |
85 | AC_CHECK_FUNCS(strdup) |
|
|
86 | AC_REPLACE_FUNCS(strdup) |
182 | AC_REPLACE_FUNCS(strdup) |
|
|
183 | AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.o getopt1.o") |
|
|
184 | |
87 | |
185 | |
88 | dnl With and without functions |
186 | dnl With and without functions |
89 | AC_ARG_ENABLE(html-docs, |
187 | AC_ARG_ENABLE(html-docs, |
90 | [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], |
188 | [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], |
91 | [case "${enableval}" in |
189 | [case "${enableval}" in |
… | |
… | |
120 | no) rtfdocs=false ;; |
218 | no) rtfdocs=false ;; |
121 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; |
219 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; |
122 | esac],[rtfdocs=false]) |
220 | esac],[rtfdocs=false]) |
123 | AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) |
221 | AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) |
124 | |
222 | |
|
|
223 | |
125 | AC_OUTPUT([Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile]) |
224 | AC_OUTPUT([Makefile compat/Makefile lib/Makefile lib/psiconv/Makefile program/Makefile program/psiconv/Makefile lib/psiconv/general.h formats/Makefile docs/Makefile extra/Makefile]) |