]> git.wh0rd.org - fontconfig.git/blame - configure.in
Move up #include of config.h. Fail if neither inttypes.h nor stdint.h is
[fontconfig.git] / configure.in
CommitLineData
20fa60c9
KP
1dnl
2dnl $Id$
3dnl
46b51147 4dnl Copyright © 2003 Keith Packard
20fa60c9
KP
5dnl
6dnl Permission to use, copy, modify, distribute, and sell this software and its
7dnl documentation for any purpose is hereby granted without fee, provided that
8dnl the above copyright notice appear in all copies and that both that
9dnl copyright notice and this permission notice appear in supporting
10dnl documentation, and that the name of Keith Packard not be used in
11dnl advertising or publicity pertaining to distribution of the software without
12dnl specific, written prior permission. Keith Packard makes no
13dnl representations about the suitability of this software for any purpose. It
14dnl is provided "as is" without express or implied warranty.
15dnl
16dnl KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17dnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18dnl EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19dnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20dnl DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21dnl TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22dnl PERFORMANCE OF THIS SOFTWARE.
fb9545b1 23dnl
20fa60c9 24dnl Process this file with autoconf to create configure.
24330d27 25
8fc10a72
KP
26AC_INIT(fonts.dtd)
27
20fa60c9
KP
28dnl ==========================================================================
29dnl Versioning
30dnl ==========================================================================
fa244f3d 31
ff3f1f98
KP
32dnl This is the package version number, not the shared library
33dnl version. This same version number must appear in fontconfig/fontconfig.h
34dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
35dnl not possible to extract the version number here from fontconfig.h
63d2df3f 36AM_INIT_AUTOMAKE(fontconfig, 2.3.94)
6ae6acf3 37AM_MAINTAINER_MODE
24330d27 38
20fa60c9
KP
39dnl libtool versioning
40
ff3f1f98
KP
41LT_CURRENT=1
42LT_REVISION=4
daeed6e0
TL
43AC_SUBST(LT_CURRENT)
44AC_SUBST(LT_REVISION)
ff3f1f98
KP
45LT_AGE=0
46
47LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
48AC_SUBST(LT_VERSION_INFO)
20fa60c9 49
daeed6e0
TL
50LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
51AC_SUBST(LT_CURRENT_MINUS_AGE)
52
20fa60c9
KP
53dnl ==========================================================================
54
20fa60c9 55AM_CONFIG_HEADER(config.h)
fb9545b1 56
24330d27 57AC_PROG_CC
24330d27 58AC_PROG_INSTALL
24330d27 59AC_PROG_LN_S
daeed6e0 60AC_LIBTOOL_WIN32_DLL
20fa60c9
KP
61AM_PROG_LIBTOOL
62AC_PROG_MAKE_SET
63
daeed6e0
TL
64dnl ==========================================================================
65
66case "$host" in
67 *-*-mingw*)
68 os_win32=yes
69 ;;
70 *)
71 os_win32=no
72esac
73AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
74
75if test "$os_win32" = "yes"; then
76 AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
77fi
78AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
79
6ae6acf3
KP
80WARN_CFLAGS=""
81
82if test "x$GCC" = "xyes"; then
83 WARN_CFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes \
84 -Wmissing-prototypes -Wmissing-declarations \
85 -Wnested-externs -fno-strict-aliasing"
86fi
87AC_SUBST(WARN_CFLAGS)
88
daeed6e0
TL
89dnl ==========================================================================
90
d8ae9c92
KP
91AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
92
93dnl ==========================================================================
94
95# Setup for compiling build tools (fc-glyphname, etc)
96AC_MSG_CHECKING([for a C compiler for build tools])
97if test $cross_compiling = yes; then
98 AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
99else
100 CC_FOR_BUILD=$CC
101fi
102AC_MSG_RESULT([$CC_FOR_BUILD])
103AC_SUBST(CC_FOR_BUILD)
104
105AC_MSG_CHECKING([for suffix of executable build tools])
106if test $cross_compiling = yes; then
107 cat >conftest.c <<\_______EOF
108int
109main ()
110{
111 exit (0);
112}
113_______EOF
114 for i in .exe ""; do
115 compile="$CC_FOR_BUILD conftest.c -o conftest$i"
116 if AC_TRY_EVAL(compile); then
117 if (./conftest) 2>&AC_FD_CC; then
118 EXEEXT_FOR_BUILD=$i
119 break
120 fi
121 fi
122 done
123 rm -f conftest*
124 if test "${EXEEXT_FOR_BUILD+set}" != set; then
125 AC_MSG_ERROR([Cannot determine suffix of executable build tools])
126 fi
127else
128 EXEEXT_FOR_BUILD=$EXEEXT
129fi
130AC_MSG_RESULT([$EXEEXT_FOR_BUILD])
131AC_SUBST(EXEEXT_FOR_BUILD)
132
133dnl ==========================================================================
134
fb9545b1
KP
135# Checks for header files.
136AC_HEADER_DIRENT
137AC_HEADER_STDC
4f27c1c0 138AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h iconv.h])
fb9545b1
KP
139
140# Checks for typedefs, structures, and compiler characteristics.
141AC_C_CONST
142AC_TYPE_PID_T
143
144# Checks for library functions.
fb9545b1 145AC_FUNC_VPRINTF
d6217cc6
PL
146AC_FUNC_MMAP
147AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long iconv sysconf ftruncate chsize rand_r])
fb9545b1 148
446bb9c9 149#
20fa60c9 150# Checks for FreeType
fb9545b1 151#
24330d27 152
3910f322 153AC_ARG_WITH(freetype-config, [ --with-freetype-config=PROG Use FreeType configuration program PROG], freetype_config=$withval, freetype_config=yes)
24330d27 154
20fa60c9
KP
155if test "$freetype_config" = "yes"; then
156 AC_PATH_PROG(ft_config,freetype-config,no)
157 if test "$ft_config" = "no"; then
158 AC_MSG_ERROR([You must have freetype installed; see http://www.freetype.org/])
159 fi
160else
161 ft_config="$freetype_config"
162fi
24330d27 163
996580dc
KP
164FREETYPE_CFLAGS="`$ft_config --cflags`"
165FREETYPE_LIBS="`$ft_config --libs`"
24330d27 166
20fa60c9
KP
167AC_SUBST(FREETYPE_LIBS)
168AC_SUBST(FREETYPE_CFLAGS)
fb9545b1 169
aefb2c41 170#
79621aa5
KP
171# Check to see whether we have:
172# FT_Get_Next_Char
173# FT_Get_BDF_Property
174# FT_Get_PS_Font_Info
656c69d6 175# FT_Has_PS_Glyph_Names
aefb2c41
KP
176#
177
4f38fa81
KP
178fontconfig_save_libs="$LIBS"
179fontconfig_save_cflags="$CFLAGS"
20fa60c9 180LIBS="$LIBS $FREETYPE_LIBS"
4f38fa81 181CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
537e3d23 182AC_CHECK_FUNCS(FT_Get_Next_Char FT_Get_BDF_Property FT_Get_PS_Font_Info FT_Has_PS_Glyph_Names FT_Get_X11_Font_Format)
208a720f
KP
183AC_CHECK_MEMBER(FT_Bitmap_Size.y_ppem,
184 HAVE_FT_BITMAP_SIZE_Y_PPEM=1,
185 HAVE_FT_BITMAP_SIZE_Y_PPEM=0,
4f38fa81
KP
186[#include <ft2build.h>
187#include FT_FREETYPE_H])
4f38fa81
KP
188AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,$HAVE_FT_BITMAP_SIZE_Y_PPEM,
189 [FT_Bitmap_Size structure includes y_ppem field])
6ae6acf3
KP
190CFLAGS="$fontconfig_save_cflags"
191LIBS="$fontconfig_save_libs"
fb9545b1 192
fa244f3d
KP
193#
194# Check expat configuration
195#
24330d27 196
20fa60c9 197AC_ARG_WITH(expat, [ --with-expat=DIR Use Expat in DIR], expat=$withval, expat=yes)
3910f322
KP
198AC_ARG_WITH(expat-includes, [ --with-expat-includes=DIR Use Expat includes in DIR], expat_includes=$withval, expat_includes=yes)
199AC_ARG_WITH(expat-lib, [ --with-expat-lib=DIR Use Expat library in DIR], expat_lib=$withval, expat_lib=yes)
20fa60c9 200
e99f0f0a
PL
201if test "$enable_libxml2" != "yes"; then
202 case "$expat" in
203 no)
24330d27 204 ;;
e99f0f0a
PL
205 *)
206 case "$expat_includes" in
59e149e7 207 yes)
e99f0f0a
PL
208 case "$expat" in
209 yes)
210 ;;
211 *)
212 EXPAT_CFLAGS="-I$expat/include"
213 ;;
214 esac
215 ;;
216 no)
217 EXPAT_CFLAGS=""
59e149e7
KP
218 ;;
219 *)
e99f0f0a 220 EXPAT_CFLAGS="-I$expat_includes"
59e149e7
KP
221 ;;
222 esac
e99f0f0a 223 case "$expat_lib" in
fa244f3d 224 yes)
e99f0f0a
PL
225 case "$expat" in
226 yes)
227 EXPAT_LIBS="-lexpat"
228 ;;
229 *)
230 EXPAT_LIBS="-L$expat/lib -lexpat"
231 ;;
232 esac
233 ;;
234 no)
fb9545b1
KP
235 ;;
236 *)
e99f0f0a 237 EXPAT_LIBS="-L$expat_lib -lexpat"
fb9545b1
KP
238 ;;
239 esac
fb9545b1 240
e99f0f0a
PL
241 expatsaved_CPPFLAGS="$CPPFLAGS"
242 CPPFLAGS="$CPPFLAGS $EXPAT_CFLAGS"
243 expatsaved_LIBS="$LIBS"
244 LIBS="$LIBS $EXPAT_LIBS"
fb9545b1 245
e99f0f0a
PL
246 AC_CHECK_HEADER(expat.h)
247 case "$ac_cv_header_expat_h" in
fb9545b1 248 no)
e99f0f0a
PL
249 AC_CHECK_HEADER(xmlparse.h)
250 case "$ac_cv_header_xmlparse_h" in
251 no)
252 have_expat_header=no;
253 ;;
254 yes)
255 HAVE_XMLPARSE_H=1
256 AC_SUBST(HAVE_XMLPARSE_H)
257 AC_DEFINE_UNQUOTED(HAVE_XMLPARSE_H,$HAVE_XMLPARSE_H,
258 [Use xmlparse.h instead of expat.h])
259 have_expat_header=yes
260 ;;
261 esac
fb9545b1
KP
262 ;;
263 yes)
fb9545b1
KP
264 have_expat_header=yes
265 ;;
266 esac
e99f0f0a
PL
267 case "$have_expat_header" in
268 no)
a6a66da0
NL
269 expat=no
270 ;;
e99f0f0a
PL
271 yes)
272 AC_CHECK_FUNCS(XML_SetDoctypeDeclHandler)
273 case "$ac_cv_func_XML_SetDoctypeDeclHandler" in
274 yes)
275 HAVE_EXPAT=1
276 AC_SUBST(HAVE_EXPAT)
277 AC_DEFINE_UNQUOTED(HAVE_EXPAT,$HAVE_EXPAT,
278 [Found a useable expat library])
279 ;;
280 *)
281 expat=no
282 ;;
283 esac
284 ;;
fb9545b1 285 esac
e99f0f0a
PL
286 CPPFLAGS="$expatsaved_CPPFLAGS"
287 LIBS="$expatsaved_LIBS"
24330d27
KP
288 ;;
289 esac
fb9545b1 290
e99f0f0a
PL
291 AC_SUBST(EXPAT_CFLAGS)
292 AC_SUBST(EXPAT_LIBS)
293
294 case "$expat" in
295 no)
296 EXPAT_CFLAGS=""
297 EXPAT_LIBS=""
298
299 AC_MSG_WARN([Cannot find usable expat library. Trying to use libxml2 as fallback.])
300 ;;
301 esac
302fi
303
304#
305# Check libxml2 configuration
306#
307
308AC_ARG_ENABLE(libxml2, [ --enable-libxml2 Use libxml2 instead of Expat])
309
b17cf498
PL
310PKG_PROG_PKG_CONFIG
311
e99f0f0a
PL
312if test "$enable_libxml2" = "yes" -o "$expat" = "no"; then
313 PKG_CHECK_MODULES([LIBXML2], [libxml-2.0 >= 2.6])
314 AC_DEFINE_UNQUOTED(ENABLE_LIBXML2,1,[Use libxml2 instead of Expat])
315
316 AC_SUBST(LIBXML2_CFLAGS)
317 AC_SUBST(LIBXML2_LIBS)
318fi
24330d27 319
20fa60c9
KP
320#
321# Set default font directory
322#
323
3910f322 324AC_ARG_WITH(default-fonts, [ --with-default-fonts=DIR Use fonts from DIR when config is busted], default_fonts="$withval", default_fonts=yes)
20fa60c9
KP
325
326case "$default_fonts" in
327yes)
ee1d8125
TL
328 if test "$os_win32" = "yes"; then
329 FC_DEFAULT_FONTS="WINDOWSFONTDIR"
330 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "WINDOWSFONTDIR",
331 [Windows font directory])
332 else
333 FC_DEFAULT_FONTS="/usr/share/fonts"
334 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "/usr/share/fonts",
335 [System font directory])
336 fi
20fa60c9
KP
337 ;;
338*)
339 FC_DEFAULT_FONTS="$default_fonts"
340 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "$default_fonts",
341 [System font directory])
342 ;;
343esac
344
345AC_SUBST(FC_DEFAULT_FONTS)
346
347#
af82b48c
KP
348# Add more fonts if available. By default, add only the directories
349# with outline fonts; those with bitmaps can be added as desired in
350# local.conf or ~/.fonts.conf
20fa60c9 351#
3910f322 352AC_ARG_WITH(add-fonts, [ --with-add-fonts=DIR1,DIR2,...Find additional fonts in DIR1,DIR2,... ], add_fonts="$withval", add_fonts=yes)
20fa60c9 353
af82b48c 354case "$add_fonts" in
20fa60c9 355yes)
af82b48c 356 FC_ADD_FONTS=""
bf0093b7 357 for dir in /usr/X11R6/lib/X11 /usr/X11/lib/X11 /usr/lib/X11; do
af82b48c 358 case x"$FC_ADD_FONTS" in
20fa60c9 359 x)
2d9c79c0
KP
360 sub="$dir/fonts"
361 if test -d "$sub"; then
362 case x$FC_ADD_FONTS in
363 x)
364 FC_ADD_FONTS="$sub"
365 ;;
366 *)
367 FC_ADD_FONTS="$FC_ADD_FONTS,$sub"
368 ;;
369 esac
20fa60c9
KP
370 fi
371 ;;
372 esac
373 done
af82b48c 374 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
20fa60c9
KP
375 ;;
376no)
af82b48c 377 FC_ADD_FONTS=""
20fa60c9
KP
378 ;;
379*)
af82b48c
KP
380 FC_ADD_FONTS="$add_fonts"
381 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
20fa60c9
KP
382 ;;
383esac
384
af82b48c 385AC_SUBST(FC_ADD_FONTS)
20fa60c9
KP
386
387FC_FONTPATH=""
388
af82b48c 389case "$FC_ADD_FONTS" in
20fa60c9
KP
390"")
391 ;;
392*)
af82b48c
KP
393 FC_FONTPATH=`echo $FC_ADD_FONTS |
394 sed -e 's/^/<dir>/' -e 's/$/<\/dir>/' -e 's/,/<\/dir> <dir>/g'`
20fa60c9
KP
395 ;;
396esac
397
398AC_SUBST(FC_FONTPATH)
399
4f27c1c0 400FC_FONTDATE=`LC_ALL=C date`
20fa60c9
KP
401
402AC_SUBST(FC_FONTDATE)
403
404AC_ARG_WITH(confdir, [ --with-confdir=DIR Use DIR to store configuration files (default /etc/fonts)], confdir="$withval", confdir=yes)
405
406#
407# Set CONFDIR and FONTCONFIG_PATH
408#
409
410case "$confdir" in
411no|yes)
ad9b233c 412 confdir='${sysconfdir}'/fonts
20fa60c9
KP
413 ;;
414*)
415 ;;
416esac
417AC_SUBST(confdir)
ad9b233c 418CONFDIR=${confdir}
20fa60c9
KP
419AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR",[Font configuration directory])
420AC_SUBST(CONFDIR)
421
422#
423# Find out what language orthographies are included
424#
425
394b2bf0 426ORTH_FILES=`cd ${srcdir}/fc-lang && echo *.orth`
20fa60c9 427AC_SUBST(ORTH_FILES)
446bb9c9 428
9238fc06
KP
429#
430# Let people not build/install docs if they don't have docbook
431#
432
433AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
434
2b45ef3a 435AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)
9238fc06 436
2b45ef3a
KP
437default_docs="yes"
438#
439# Check if docs exist or can be created
440#
441if test x$HASDOCBOOK = xno; then
442 if test -f doc/fonts-conf.5; then
443 :
444 else
445 default_docs="no"
446 fi
9238fc06
KP
447fi
448
2b45ef3a
KP
449AC_ARG_ENABLE(docs, [ --disable-docs Don't build and install documentation],,enable_docs=$default_docs)
450
9238fc06
KP
451AM_CONDITIONAL(ENABLE_DOCS, test "x$enable_docs" = xyes)
452
2b45ef3a
KP
453if test "x$enable_docs" = xyes; then
454 DOCSRC="doc"
4cbc3ee8
KP
455 tmp=funcs.$$
456 cat $srcdir/doc/*.fncs | awk '
457 /^@TITLE@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
458 /^@FUNC@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
459 /^@@/ { done = 0; }' > $tmp
460 DOCMAN3=`cat $tmp | awk '{ printf ("%s.3 ", $1); }'`
461 echo DOCMAN3 $DOCMAN3
462 rm -f $tmp
2b45ef3a
KP
463else
464 DOCSRC=""
4cbc3ee8 465 DOCMAN3=""
2b45ef3a
KP
466fi
467
468AC_SUBST(DOCSRC)
4cbc3ee8 469AC_SUBST(DOCMAN3)
2b45ef3a 470
0da305f7
KP
471#
472# Figure out where to install documentation
473#
474
af82b48c 475AC_ARG_WITH(docdir, [ --with-docdir=DIR Use DIR to store documentation files (default ${datadir}/doc/fontconfig)], confdir="$withval")
0da305f7
KP
476
477if test "x$with_docdir" = "x" ; then
478 DOCDIR='${datadir}/doc/fontconfig'
479else
480 DOCDIR=$with_docdir
481fi
482
483AC_SUBST(DOCDIR)
484
ea44e218
PL
485#
486# Make /var/cache/fontconfig directory available to source code
487#
488
489pkgcachedir='${localstatedir}/cache/'${PACKAGE}
490AC_SUBST(pkgcachedir)
491
20fa60c9
KP
492AC_OUTPUT([
493Makefile
494fontconfig/Makefile
495fc-lang/Makefile
7769c321 496fc-glyphname/Makefile
192296d8 497fc-case/Makefile
20fa60c9 498src/Makefile
daeed6e0 499src/fontconfig.def
414f7202 500conf.d/Makefile
20fa60c9 501fc-cache/Makefile
f28f090d 502fc-cat/Makefile
20fa60c9 503fc-list/Makefile
440e7054 504fc-match/Makefile
0da305f7 505doc/Makefile
fddb839b 506doc/version.sgml
44d90378 507test/Makefile
20fa60c9
KP
508fontconfig.spec
509fontconfig.pc
510fonts.conf
daeed6e0 511fontconfig-zip
20fa60c9 512])