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 |
|
|
3 | AC_CONFIG_SRCDIR([lib/psiconv]) |
3 | AM_INIT_AUTOMAKE(psiconv,0.5.0) |
4 | AM_INIT_AUTOMAKE(psiconv,0.8.1) |
4 | |
5 | |
5 | AM_CONFIG_HEADER(config.h) |
6 | AM_CONFIG_HEADER(config.h) |
6 | |
7 | |
7 | dnl Checks for programs. |
8 | dnl Checks for programs. |
8 | AM_PROG_LIBTOOL |
9 | AM_PROG_LIBTOOL |
9 | |
10 | |
|
|
11 | dnl This is stolen from gnome-libs-1.0.14 |
|
|
12 | AC_ARG_ENABLE(compile-warnings, |
|
|
13 | [ --enable-compile-warnings=[no/minimum/yes] Turn on compiler warnings.], |
|
|
14 | ,enable_compile_warnings=minimum) |
|
|
15 | |
|
|
16 | AC_MSG_CHECKING(what warning flags to pass to the C compiler) |
|
|
17 | warnCFLAGS= |
|
|
18 | if test "x$GCC" != xyes; then |
|
|
19 | enable_compile_warnings=no |
|
|
20 | fi |
|
|
21 | if test "x$enable_compile_warnings" != "xno"; then |
|
|
22 | if test "x$GCC" = "xyes"; then |
|
|
23 | case " $CFLAGS " in |
|
|
24 | *[\ \ ]-Wall[\ \ ]*) ;; |
|
|
25 | *) warnCFLAGS="-Wall -Wunused" ;; |
|
|
26 | esac |
|
|
27 | |
|
|
28 | ## -W is not all that useful. And it cannot be controlled |
|
|
29 | ## with individual -Wno-xxx flags, unlike -Wall |
|
|
30 | if test "x$enable_compile_warnings" = "xyes"; then |
|
|
31 | warnCFLAGS="$warnCFLAGS -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith" |
|
|
32 | fi |
|
|
33 | fi |
|
|
34 | fi |
|
|
35 | AC_MSG_RESULT($warnCFLAGS) |
|
|
36 | |
|
|
37 | AC_ARG_ENABLE(iso-c, |
|
|
38 | [ --enable-iso-c Try to warn if code is not ISO C ],, |
|
|
39 | enable_iso_c=no) |
|
|
40 | |
|
|
41 | AC_MSG_CHECKING(what language compliance flags to pass to the C compiler) |
|
|
42 | complCFLAGS= |
|
|
43 | if test "x$enable_iso_c" != "xno"; then |
|
|
44 | if test "x$GCC" = "xyes"; then |
|
|
45 | case " $CFLAGS " in |
|
|
46 | *[\ \ ]-ansi[\ \ ]*) ;; |
|
|
47 | *) complCFLAGS="$complCFLAGS -ansi" ;; |
|
|
48 | esac |
|
|
49 | |
|
|
50 | case " $CFLAGS " in |
|
|
51 | *[\ \ ]-pedantic[\ \ ]*) ;; |
|
|
52 | *) complCFLAGS="$complCFLAGS -pedantic" ;; |
|
|
53 | esac |
|
|
54 | fi |
|
|
55 | fi |
|
|
56 | AC_MSG_RESULT($complCFLAGS) |
|
|
57 | if test "x$cflags_set" != "xyes"; then |
|
|
58 | CFLAGS="$CFLAGS $warnCFLAGS $complCFLAGS" |
|
|
59 | cflags_set=yes |
|
|
60 | AC_SUBST(cflags_set) |
|
|
61 | fi |
|
|
62 | |
|
|
63 | |
10 | dnl Checks for libraries. |
64 | dnl Checks for libraries. |
|
|
65 | AC_ARG_WITH(imagemagick, |
|
|
66 | [ --with-imagemagick enable ImageMagick (default = yes)], |
|
|
67 | [IMAGEMAGICK=$withval], |
|
|
68 | [IMAGEMAGICK='yes']) |
|
|
69 | if test x"$IMAGEMAGICK" != xno ; then |
|
|
70 | AC_CHECK_PROG(IMAGEMAGICK,Magick-config,yes,no) |
|
|
71 | if test x"$IMAGEMAGICK" != xno ; then |
|
|
72 | CFLAGS_OLD="$CFLAGS" |
|
|
73 | CPPFLAGS_OLD="$CPPFLAGS" |
|
|
74 | LDFLAGS_OLD="$LDFLAGS" |
|
|
75 | LIBS_OLD="$LIBS" |
|
|
76 | CFLAGS="$CFLAGS `Magick-config --cflags`" |
|
|
77 | CPPFLAGS="$CPPFLAGS `Magick-config --cppflags`" |
|
|
78 | LDFLAGS="$LDFLAGS `Magick-config --ldflags`" |
|
|
79 | LIBS="$LIBS `Magick-config --libs`" |
|
|
80 | |
|
|
81 | AC_MSG_CHECKING(whether GetMagickInfo works) |
|
|
82 | AC_TRY_RUN([ #include <magick/magick.h> |
|
|
83 | #include <magick/config.h> |
|
|
84 | #include <stdio.h> |
|
|
85 | extern void OpenModules(void); |
|
|
86 | int main(void) { GetMagickInfo(NULL); |
|
|
87 | #if defined(HasLTDL) |
|
|
88 | OpenModules(); |
|
|
89 | #endif |
|
|
90 | return (NULL == GetMagickInfo(NULL)); }], |
|
|
91 | IMAGEMAGICK=yes,IMAGEMAGICK=no,IMAGEMAGICK=yes) |
|
|
92 | AC_MSG_RESULT($IMAGEMAGICK) |
|
|
93 | LDFLAGS="$LDFLAGS_OLD" |
|
|
94 | LIBS="$LIBS_OLD" |
|
|
95 | dnl Note: CFLAGS can't be set for single directories, so we propagate them |
|
|
96 | if test x"$IMAGEMAGICK" = xno ; then |
|
|
97 | CFLAGS="$CFLAGS_OLD" |
|
|
98 | CPPFLAGS="$CPPFLAGS_OLD" |
|
|
99 | fi |
|
|
100 | fi |
|
|
101 | fi |
|
|
102 | if test x"$IMAGEMAGICK" = xyes ; then |
|
|
103 | LIB_MAGICK="`Magick-config --libs` `Magick-config --ldflags`" |
|
|
104 | AC_DEFINE(IMAGEMAGICK,1,[ImageMagick availability]) |
|
|
105 | else |
|
|
106 | LIB_MAGICK= |
|
|
107 | fi |
|
|
108 | AC_SUBST(LIB_MAGICK) |
11 | |
109 | |
12 | dnl Checks for header files. |
110 | dnl Checks for header files. |
13 | AC_HEADER_STDC |
111 | AC_HEADER_STDC |
14 | AC_CHECK_HEADERS(unistd.h) |
112 | AC_CHECK_HEADERS(unistd.h) |
15 | |
113 | |
… | |
… | |
80 | AC_SUBST(INT_16_BIT) |
178 | AC_SUBST(INT_16_BIT) |
81 | AC_SUBST(INT_32_BIT) |
179 | AC_SUBST(INT_32_BIT) |
82 | |
180 | |
83 | dnl Checks for library functions. |
181 | dnl Checks for library functions. |
84 | AC_FUNC_VPRINTF |
182 | AC_FUNC_VPRINTF |
85 | AC_CHECK_FUNCS(strdup) |
|
|
86 | AC_REPLACE_FUNCS(strdup) |
183 | AC_REPLACE_FUNCS(strdup) |
|
|
184 | AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.lo getopt1.lo") |
|
|
185 | |
87 | |
186 | |
88 | dnl With and without functions |
187 | dnl With and without functions |
89 | AC_ARG_ENABLE(html-docs, |
188 | AC_ARG_ENABLE(html-docs, |
90 | [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], |
189 | [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)], |
91 | [case "${enableval}" in |
190 | [case "${enableval}" in |
… | |
… | |
120 | no) rtfdocs=false ;; |
219 | no) rtfdocs=false ;; |
121 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; |
220 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;; |
122 | esac],[rtfdocs=false]) |
221 | esac],[rtfdocs=false]) |
123 | AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) |
222 | AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue) |
124 | |
223 | |
125 | AC_OUTPUT([Makefile compat/Makefile lib/Makefile psiconv/Makefile lib/general.h formats/Makefile docs/Makefile]) |
224 | |
|
|
225 | AC_CONFIG_FILES([Makefile compat/Makefile lib/Makefile lib/psiconv/Makefile program/Makefile program/psiconv/Makefile lib/psiconv/general.h formats/Makefile docs/Makefile extra/Makefile]) |
|
|
226 | AC_OUTPUT |