/[public]/psiconv/trunk/configure.in
ViewVC logotype

Contents of /psiconv/trunk/configure.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 116 - (show annotations)
Sun Jun 17 18:44:28 2001 UTC (22 years, 9 months ago) by frodo
File size: 6649 byte(s)
(Frodo) Update to libtool-1.4, autoconf-2.50

1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT
3 AC_CONFIG_SRCDIR([lib/psiconv])
4 AM_INIT_AUTOMAKE(psiconv,0.8.1)
5
6 AM_CONFIG_HEADER(config.h)
7
8 dnl Checks for programs.
9 AM_PROG_LIBTOOL
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
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)
109
110 dnl Checks for header files.
111 AC_HEADER_STDC
112 AC_CHECK_HEADERS(unistd.h)
113
114 dnl Checks for typedefs, structures, and compiler characteristics.
115 AC_C_CONST
116 AC_TYPE_SIZE_T
117
118 dnl Here we check for large enough integer types. This is not quite
119 dnl good enough, but it should work almost always.
120
121 AC_CHECK_SIZEOF(char,1)
122 AC_CHECK_SIZEOF(short,1)
123 AC_CHECK_SIZEOF(int,2)
124 AC_CHECK_SIZEOF(long,4)
125
126 AC_MSG_CHECKING(for an 8 bit integer type)
127 if test $ac_cv_sizeof_char -ge 1 ; then
128 INT_8_BIT=char
129 AC_MSG_RESULT(char)
130 elif test $ac_cv_sizeof_short -ge 1 ; then
131 INT_8_BIT=short
132 AC_MSG_RESULT(short)
133 elif test $ac_cv_sizeof_int -ge 1 ; then
134 INT_8_BIT=int
135 AC_MSG_RESULT(int)
136 elif test $ac_cv_sizeof_long -ge 1 ; then
137 INT_8_BIT=long
138 AC_MSG_RESULT(long)
139 else
140 AC_MSG_ERROR(No integer type of at least 8 bits found)
141 fi
142
143 AC_MSG_CHECKING(for a 16 bit integer type)
144 if test $ac_cv_sizeof_char -ge 2 ; then
145 INT_16_BIT=char
146 AC_MSG_RESULT(char)
147 elif test $ac_cv_sizeof_short -ge 2 ; then
148 INT_16_BIT=short
149 AC_MSG_RESULT(short)
150 elif test $ac_cv_sizeof_int -ge 2 ; then
151 INT_16_BIT=int
152 AC_MSG_RESULT(int)
153 elif test $ac_cv_sizeof_long -ge 2 ; then
154 INT_16_BIT=long
155 AC_MSG_RESULT(long)
156 else
157 AC_MSG_ERROR(No integer type of at least 16 bits found)
158 fi
159
160 AC_MSG_CHECKING(for a 32 bit integer type)
161 if test $ac_cv_sizeof_char -ge 4 ; then
162 INT_32_BIT=char
163 AC_MSG_RESULT(char)
164 elif test $ac_cv_sizeof_short -ge 4 ; then
165 INT_32_BIT=short
166 AC_MSG_RESULT(short)
167 elif test $ac_cv_sizeof_int -ge 4 ; then
168 INT_32_BIT=int
169 AC_MSG_RESULT(int)
170 elif test $ac_cv_sizeof_long -ge 4 ; then
171 INT_32_BIT=long
172 AC_MSG_RESULT(long)
173 else
174 AC_MSG_ERROR(No integer type of at least 32 bits found)
175 fi
176
177 AC_SUBST(INT_8_BIT)
178 AC_SUBST(INT_16_BIT)
179 AC_SUBST(INT_32_BIT)
180
181 dnl Checks for library functions.
182 AC_FUNC_VPRINTF
183 AC_REPLACE_FUNCS(strdup)
184 AC_CHECK_FUNCS(getopt_long,,LIBOBJS="$LIBOBJS getopt.lo getopt1.lo")
185
186
187 dnl With and without functions
188 AC_ARG_ENABLE(html-docs,
189 [ --disable-html-docs Disable generation of HTML 3.2 docs (default: on)],
190 [case "${enableval}" in
191 yes) htmldocs=true ;;
192 no) htmldocs=false ;;
193 *) AC_MSG_ERROR(bad value ${enableval} for --enable-html-docs) ;;
194 esac],[htmldocs=true])
195 AM_CONDITIONAL(HTMLDOCS,test x$htmldocs = xtrue)
196
197 AC_ARG_ENABLE(html4-docs,
198 [ --enable-html4-docs Enable generation of HTML 4 docs (default: off)],
199 [case "${enableval}" in
200 yes) html4docs=true ;;
201 no) html4docs=false ;;
202 *) AC_MSG_ERROR(bad value ${enableval} for --enable-html4-docs) ;;
203 esac],[html4docs=false])
204 AM_CONDITIONAL(HTML4DOCS,test x$html4docs = xtrue)
205
206 AC_ARG_ENABLE(ascii-docs,
207 [ --enable-ascii-docs Enable generation of ASCII docs (default: off)],
208 [case "${enableval}" in
209 yes) asciidocs=true ;;
210 no) asciidocs=false ;;
211 *) AC_MSG_ERROR(bad value ${enableval} for --enable-ascii-docs) ;;
212 esac],[asciidocs=false])
213 AM_CONDITIONAL(ASCIIDOCS,test x$asciidocs = xtrue)
214
215 AC_ARG_ENABLE(rtf-docs,
216 [ --enable-rtf-docs Enable generation of RTF docs (default: off)],
217 [case "${enableval}" in
218 yes) rtfdocs=true ;;
219 no) rtfdocs=false ;;
220 *) AC_MSG_ERROR(bad value ${enableval} for --enable-rtf-docs) ;;
221 esac],[rtfdocs=false])
222 AM_CONDITIONAL(RTFDOCS,test x$rtfdocs = xtrue)
223
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

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26