]> git.wh0rd.org - fontconfig.git/blame - configure.in
Update for version 2.4.1
[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
b9cc1c4e 36AM_INIT_AUTOMAKE(fontconfig, 2.4.1)
6ae6acf3 37AM_MAINTAINER_MODE
24330d27 38
20fa60c9
KP
39dnl libtool versioning
40
4984242e
KP
41dnl bump revision when fixing bugs
42dnl bump current and age, reset revision to zero when adding APIs
43dnl bump current, leave age, reset revision to zero when changing/removing APIS
44LT_CURRENT=2
45LT_REVISION=0
daeed6e0
TL
46AC_SUBST(LT_CURRENT)
47AC_SUBST(LT_REVISION)
4984242e 48LT_AGE=1
ff3f1f98
KP
49
50LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
51AC_SUBST(LT_VERSION_INFO)
20fa60c9 52
daeed6e0
TL
53LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
54AC_SUBST(LT_CURRENT_MINUS_AGE)
55
20fa60c9
KP
56dnl ==========================================================================
57
20fa60c9 58AM_CONFIG_HEADER(config.h)
fb9545b1 59
24330d27 60AC_PROG_CC
24330d27 61AC_PROG_INSTALL
24330d27 62AC_PROG_LN_S
daeed6e0 63AC_LIBTOOL_WIN32_DLL
20fa60c9
KP
64AM_PROG_LIBTOOL
65AC_PROG_MAKE_SET
66
daeed6e0
TL
67dnl ==========================================================================
68
69case "$host" in
70 *-*-mingw*)
71 os_win32=yes
72 ;;
73 *)
74 os_win32=no
75esac
76AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
77
78if test "$os_win32" = "yes"; then
79 AC_CHECK_PROG(ms_librarian, lib.exe, yes, no)
80fi
81AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
82
6ae6acf3 83WARN_CFLAGS=""
6ae6acf3
KP
84if test "x$GCC" = "xyes"; then
85 WARN_CFLAGS="-Wall -Wpointer-arith -Wstrict-prototypes \
86 -Wmissing-prototypes -Wmissing-declarations \
87 -Wnested-externs -fno-strict-aliasing"
5b8e43a4
KP
88 AC_DEFINE_UNQUOTED(HAVE_WARNING_CPP_DIRECTIVE,1,
89 [Can use #warning in C files])
6ae6acf3
KP
90fi
91AC_SUBST(WARN_CFLAGS)
92
5b8e43a4 93
daeed6e0
TL
94dnl ==========================================================================
95
d8ae9c92
KP
96AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
97
98dnl ==========================================================================
99
100# Setup for compiling build tools (fc-glyphname, etc)
101AC_MSG_CHECKING([for a C compiler for build tools])
102if test $cross_compiling = yes; then
103 AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
104else
105 CC_FOR_BUILD=$CC
106fi
107AC_MSG_RESULT([$CC_FOR_BUILD])
108AC_SUBST(CC_FOR_BUILD)
109
110AC_MSG_CHECKING([for suffix of executable build tools])
111if test $cross_compiling = yes; then
112 cat >conftest.c <<\_______EOF
113int
114main ()
115{
116 exit (0);
117}
118_______EOF
119 for i in .exe ""; do
120 compile="$CC_FOR_BUILD conftest.c -o conftest$i"
121 if AC_TRY_EVAL(compile); then
122 if (./conftest) 2>&AC_FD_CC; then
123 EXEEXT_FOR_BUILD=$i
124 break
125 fi
126 fi
127 done
128 rm -f conftest*
129 if test "${EXEEXT_FOR_BUILD+set}" != set; then
130 AC_MSG_ERROR([Cannot determine suffix of executable build tools])
131 fi
132else
133 EXEEXT_FOR_BUILD=$EXEEXT
134fi
135AC_MSG_RESULT([$EXEEXT_FOR_BUILD])
136AC_SUBST(EXEEXT_FOR_BUILD)
137
138dnl ==========================================================================
139
2b629781
KP
140AC_ARG_WITH(arch, [ --with-arch=ARCH Force architecture to ARCH], arch="$withval", arch=auto)
141
142if test $cross_compiling = yes; then
143 case "$arch" in
144 auto)
145 AC_MSG_ERROR([Cannot autodetect architecture in cross compile environment]
146 [Use --with-arch=ARCH to specify architecture])
147 ;;
148 esac
149fi
150
151ARCHITECTURE=$arch
152AC_SUBST(ARCHITECTURE)
153
154dnl ==========================================================================
155
fb9545b1
KP
156# Checks for header files.
157AC_HEADER_DIRENT
158AC_HEADER_STDC
73775d8f 159AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
fb9545b1
KP
160
161# Checks for typedefs, structures, and compiler characteristics.
162AC_C_CONST
44415a07 163AC_C_INLINE
fb9545b1
KP
164AC_TYPE_PID_T
165
166# Checks for library functions.
fb9545b1 167AC_FUNC_VPRINTF
d6217cc6 168AC_FUNC_MMAP
73775d8f
PL
169AC_CHECK_FUNCS([geteuid getuid link memmove memset mkstemp strchr strrchr strtol getopt getopt_long sysconf ftruncate chsize rand_r])
170
171#
172# Checks for iconv
173#
174AC_MSG_CHECKING([for a usable iconv])
175ICONV_LIBS=""
176AC_TRY_LINK([#include <iconv.h>],
177 [iconv_open ("from", "to");],
178 [use_iconv=1],
179 [use_iconv=0])
180if test x$use_iconv = x1; then
181 AC_MSG_RESULT([libc])
182else
183 # try using libiconv
184 fontconfig_save_libs="$LIBS"
185 LIBS="$LIBS -liconv"
186
187 AC_TRY_LINK([#include <iconv.h>],
188 [iconv_open ("from", "to");],
189 [use_iconv=true],
190 [use_iconv=false])
191
192 if test x$use_iconv = x1; then
193 ICONV_LIBS="-liconv"
194 AC_MSG_RESULT([libiconv])
195 else
196 AC_MSG_RESULT([no])
197 fi
198
199 LIBS="$fontconfig_save_libs"
200fi
201AC_SUBST(ICONV_LIBS)
202AC_DEFINE_UNQUOTED(USE_ICONV,$use_iconv,[Use iconv.])
fb9545b1 203
446bb9c9 204#
20fa60c9 205# Checks for FreeType
fb9545b1 206#
24330d27 207
3910f322 208AC_ARG_WITH(freetype-config, [ --with-freetype-config=PROG Use FreeType configuration program PROG], freetype_config=$withval, freetype_config=yes)
24330d27 209
20fa60c9
KP
210if test "$freetype_config" = "yes"; then
211 AC_PATH_PROG(ft_config,freetype-config,no)
212 if test "$ft_config" = "no"; then
213 AC_MSG_ERROR([You must have freetype installed; see http://www.freetype.org/])
214 fi
215else
216 ft_config="$freetype_config"
217fi
24330d27 218
996580dc
KP
219FREETYPE_CFLAGS="`$ft_config --cflags`"
220FREETYPE_LIBS="`$ft_config --libs`"
24330d27 221
20fa60c9
KP
222AC_SUBST(FREETYPE_LIBS)
223AC_SUBST(FREETYPE_CFLAGS)
fb9545b1 224
aefb2c41 225#
79621aa5
KP
226# Check to see whether we have:
227# FT_Get_Next_Char
228# FT_Get_BDF_Property
229# FT_Get_PS_Font_Info
656c69d6 230# FT_Has_PS_Glyph_Names
aefb2c41
KP
231#
232
4f38fa81
KP
233fontconfig_save_libs="$LIBS"
234fontconfig_save_cflags="$CFLAGS"
20fa60c9 235LIBS="$LIBS $FREETYPE_LIBS"
4f38fa81 236CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
537e3d23 237AC_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
238AC_CHECK_MEMBER(FT_Bitmap_Size.y_ppem,
239 HAVE_FT_BITMAP_SIZE_Y_PPEM=1,
240 HAVE_FT_BITMAP_SIZE_Y_PPEM=0,
4f38fa81
KP
241[#include <ft2build.h>
242#include FT_FREETYPE_H])
4f38fa81
KP
243AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,$HAVE_FT_BITMAP_SIZE_Y_PPEM,
244 [FT_Bitmap_Size structure includes y_ppem field])
6ae6acf3
KP
245CFLAGS="$fontconfig_save_cflags"
246LIBS="$fontconfig_save_libs"
fb9545b1 247
fa244f3d
KP
248#
249# Check expat configuration
250#
24330d27 251
20fa60c9 252AC_ARG_WITH(expat, [ --with-expat=DIR Use Expat in DIR], expat=$withval, expat=yes)
3910f322
KP
253AC_ARG_WITH(expat-includes, [ --with-expat-includes=DIR Use Expat includes in DIR], expat_includes=$withval, expat_includes=yes)
254AC_ARG_WITH(expat-lib, [ --with-expat-lib=DIR Use Expat library in DIR], expat_lib=$withval, expat_lib=yes)
20fa60c9 255
e99f0f0a
PL
256if test "$enable_libxml2" != "yes"; then
257 case "$expat" in
258 no)
24330d27 259 ;;
e99f0f0a
PL
260 *)
261 case "$expat_includes" in
59e149e7 262 yes)
e99f0f0a
PL
263 case "$expat" in
264 yes)
265 ;;
266 *)
267 EXPAT_CFLAGS="-I$expat/include"
268 ;;
269 esac
270 ;;
271 no)
272 EXPAT_CFLAGS=""
59e149e7
KP
273 ;;
274 *)
e99f0f0a 275 EXPAT_CFLAGS="-I$expat_includes"
59e149e7
KP
276 ;;
277 esac
e99f0f0a 278 case "$expat_lib" in
fa244f3d 279 yes)
e99f0f0a
PL
280 case "$expat" in
281 yes)
282 EXPAT_LIBS="-lexpat"
283 ;;
284 *)
285 EXPAT_LIBS="-L$expat/lib -lexpat"
286 ;;
287 esac
288 ;;
289 no)
fb9545b1
KP
290 ;;
291 *)
e99f0f0a 292 EXPAT_LIBS="-L$expat_lib -lexpat"
fb9545b1
KP
293 ;;
294 esac
fb9545b1 295
e99f0f0a
PL
296 expatsaved_CPPFLAGS="$CPPFLAGS"
297 CPPFLAGS="$CPPFLAGS $EXPAT_CFLAGS"
298 expatsaved_LIBS="$LIBS"
299 LIBS="$LIBS $EXPAT_LIBS"
fb9545b1 300
e99f0f0a
PL
301 AC_CHECK_HEADER(expat.h)
302 case "$ac_cv_header_expat_h" in
fb9545b1 303 no)
e99f0f0a
PL
304 AC_CHECK_HEADER(xmlparse.h)
305 case "$ac_cv_header_xmlparse_h" in
306 no)
307 have_expat_header=no;
308 ;;
309 yes)
310 HAVE_XMLPARSE_H=1
311 AC_SUBST(HAVE_XMLPARSE_H)
312 AC_DEFINE_UNQUOTED(HAVE_XMLPARSE_H,$HAVE_XMLPARSE_H,
313 [Use xmlparse.h instead of expat.h])
314 have_expat_header=yes
315 ;;
316 esac
fb9545b1
KP
317 ;;
318 yes)
fb9545b1
KP
319 have_expat_header=yes
320 ;;
321 esac
e99f0f0a
PL
322 case "$have_expat_header" in
323 no)
a6a66da0
NL
324 expat=no
325 ;;
e99f0f0a
PL
326 yes)
327 AC_CHECK_FUNCS(XML_SetDoctypeDeclHandler)
328 case "$ac_cv_func_XML_SetDoctypeDeclHandler" in
329 yes)
330 HAVE_EXPAT=1
331 AC_SUBST(HAVE_EXPAT)
332 AC_DEFINE_UNQUOTED(HAVE_EXPAT,$HAVE_EXPAT,
333 [Found a useable expat library])
334 ;;
335 *)
336 expat=no
337 ;;
338 esac
339 ;;
fb9545b1 340 esac
e99f0f0a
PL
341 CPPFLAGS="$expatsaved_CPPFLAGS"
342 LIBS="$expatsaved_LIBS"
24330d27
KP
343 ;;
344 esac
fb9545b1 345
e99f0f0a
PL
346 AC_SUBST(EXPAT_CFLAGS)
347 AC_SUBST(EXPAT_LIBS)
348
349 case "$expat" in
350 no)
351 EXPAT_CFLAGS=""
352 EXPAT_LIBS=""
353
354 AC_MSG_WARN([Cannot find usable expat library. Trying to use libxml2 as fallback.])
355 ;;
356 esac
357fi
358
359#
360# Check libxml2 configuration
361#
362
363AC_ARG_ENABLE(libxml2, [ --enable-libxml2 Use libxml2 instead of Expat])
364
b17cf498
PL
365PKG_PROG_PKG_CONFIG
366
e99f0f0a
PL
367if test "$enable_libxml2" = "yes" -o "$expat" = "no"; then
368 PKG_CHECK_MODULES([LIBXML2], [libxml-2.0 >= 2.6])
369 AC_DEFINE_UNQUOTED(ENABLE_LIBXML2,1,[Use libxml2 instead of Expat])
370
371 AC_SUBST(LIBXML2_CFLAGS)
372 AC_SUBST(LIBXML2_LIBS)
373fi
24330d27 374
20fa60c9
KP
375#
376# Set default font directory
377#
378
3910f322 379AC_ARG_WITH(default-fonts, [ --with-default-fonts=DIR Use fonts from DIR when config is busted], default_fonts="$withval", default_fonts=yes)
20fa60c9
KP
380
381case "$default_fonts" in
382yes)
ee1d8125
TL
383 if test "$os_win32" = "yes"; then
384 FC_DEFAULT_FONTS="WINDOWSFONTDIR"
385 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "WINDOWSFONTDIR",
386 [Windows font directory])
387 else
388 FC_DEFAULT_FONTS="/usr/share/fonts"
389 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "/usr/share/fonts",
390 [System font directory])
391 fi
20fa60c9
KP
392 ;;
393*)
394 FC_DEFAULT_FONTS="$default_fonts"
395 AC_DEFINE_UNQUOTED(FC_DEFAULT_FONTS, "$default_fonts",
396 [System font directory])
397 ;;
398esac
399
400AC_SUBST(FC_DEFAULT_FONTS)
401
402#
af82b48c
KP
403# Add more fonts if available. By default, add only the directories
404# with outline fonts; those with bitmaps can be added as desired in
405# local.conf or ~/.fonts.conf
20fa60c9 406#
3910f322 407AC_ARG_WITH(add-fonts, [ --with-add-fonts=DIR1,DIR2,...Find additional fonts in DIR1,DIR2,... ], add_fonts="$withval", add_fonts=yes)
20fa60c9 408
af82b48c 409case "$add_fonts" in
20fa60c9 410yes)
af82b48c 411 FC_ADD_FONTS=""
bf0093b7 412 for dir in /usr/X11R6/lib/X11 /usr/X11/lib/X11 /usr/lib/X11; do
af82b48c 413 case x"$FC_ADD_FONTS" in
20fa60c9 414 x)
2d9c79c0
KP
415 sub="$dir/fonts"
416 if test -d "$sub"; then
417 case x$FC_ADD_FONTS in
418 x)
419 FC_ADD_FONTS="$sub"
420 ;;
421 *)
422 FC_ADD_FONTS="$FC_ADD_FONTS,$sub"
423 ;;
424 esac
20fa60c9
KP
425 fi
426 ;;
427 esac
428 done
af82b48c 429 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
20fa60c9
KP
430 ;;
431no)
af82b48c 432 FC_ADD_FONTS=""
20fa60c9
KP
433 ;;
434*)
af82b48c
KP
435 FC_ADD_FONTS="$add_fonts"
436 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
20fa60c9
KP
437 ;;
438esac
439
af82b48c 440AC_SUBST(FC_ADD_FONTS)
20fa60c9
KP
441
442FC_FONTPATH=""
443
af82b48c 444case "$FC_ADD_FONTS" in
20fa60c9
KP
445"")
446 ;;
447*)
af82b48c
KP
448 FC_FONTPATH=`echo $FC_ADD_FONTS |
449 sed -e 's/^/<dir>/' -e 's/$/<\/dir>/' -e 's/,/<\/dir> <dir>/g'`
20fa60c9
KP
450 ;;
451esac
452
453AC_SUBST(FC_FONTPATH)
454
7410e40b
PL
455#
456# Set default cache directory path
457#
458AC_ARG_WITH(cache-dir, [ --with-cache-dir=DIR Use DIR to store cache files (default /var/cache/fontconfig)], fc_cachedir="$withval", fc_cachedir=yes)
459
460case $fc_cachedir in
461no|yes)
462 fc_cachedir=`eval echo "${localstatedir}/cache/"${PACKAGE}`
463 ;;
464*)
465 ;;
466esac
467AC_SUBST(fc_cachedir)
468FC_CACHEDIR=${fc_cachedir}
469AC_SUBST(FC_CACHEDIR)
470
4f27c1c0 471FC_FONTDATE=`LC_ALL=C date`
20fa60c9
KP
472
473AC_SUBST(FC_FONTDATE)
474
475AC_ARG_WITH(confdir, [ --with-confdir=DIR Use DIR to store configuration files (default /etc/fonts)], confdir="$withval", confdir=yes)
476
477#
478# Set CONFDIR and FONTCONFIG_PATH
479#
480
481case "$confdir" in
482no|yes)
ad9b233c 483 confdir='${sysconfdir}'/fonts
20fa60c9
KP
484 ;;
485*)
486 ;;
487esac
488AC_SUBST(confdir)
ad9b233c 489CONFDIR=${confdir}
20fa60c9
KP
490AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR",[Font configuration directory])
491AC_SUBST(CONFDIR)
492
493#
494# Find out what language orthographies are included
495#
496
394b2bf0 497ORTH_FILES=`cd ${srcdir}/fc-lang && echo *.orth`
20fa60c9 498AC_SUBST(ORTH_FILES)
446bb9c9 499
9238fc06
KP
500#
501# Let people not build/install docs if they don't have docbook
502#
503
504AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
505
2b45ef3a 506AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)
9238fc06 507
2b45ef3a
KP
508default_docs="yes"
509#
510# Check if docs exist or can be created
511#
512if test x$HASDOCBOOK = xno; then
513 if test -f doc/fonts-conf.5; then
514 :
515 else
516 default_docs="no"
517 fi
9238fc06
KP
518fi
519
2b45ef3a
KP
520AC_ARG_ENABLE(docs, [ --disable-docs Don't build and install documentation],,enable_docs=$default_docs)
521
9238fc06
KP
522AM_CONDITIONAL(ENABLE_DOCS, test "x$enable_docs" = xyes)
523
2b45ef3a
KP
524if test "x$enable_docs" = xyes; then
525 DOCSRC="doc"
4cbc3ee8
KP
526 tmp=funcs.$$
527 cat $srcdir/doc/*.fncs | awk '
528 /^@TITLE@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
529 /^@FUNC@/ { if (!done) { printf ("%s\n", $2); done = 1; } }
530 /^@@/ { done = 0; }' > $tmp
531 DOCMAN3=`cat $tmp | awk '{ printf ("%s.3 ", $1); }'`
532 echo DOCMAN3 $DOCMAN3
533 rm -f $tmp
2b45ef3a
KP
534else
535 DOCSRC=""
4cbc3ee8 536 DOCMAN3=""
2b45ef3a
KP
537fi
538
539AC_SUBST(DOCSRC)
4cbc3ee8 540AC_SUBST(DOCMAN3)
2b45ef3a 541
0da305f7
KP
542#
543# Figure out where to install documentation
544#
545
af82b48c 546AC_ARG_WITH(docdir, [ --with-docdir=DIR Use DIR to store documentation files (default ${datadir}/doc/fontconfig)], confdir="$withval")
0da305f7
KP
547
548if test "x$with_docdir" = "x" ; then
549 DOCDIR='${datadir}/doc/fontconfig'
550else
551 DOCDIR=$with_docdir
552fi
553
554AC_SUBST(DOCDIR)
555
ea44e218 556
20fa60c9
KP
557AC_OUTPUT([
558Makefile
559fontconfig/Makefile
560fc-lang/Makefile
7769c321 561fc-glyphname/Makefile
192296d8 562fc-case/Makefile
2b629781 563fc-arch/Makefile
20fa60c9 564src/Makefile
daeed6e0 565src/fontconfig.def
414f7202 566conf.d/Makefile
20fa60c9 567fc-cache/Makefile
f28f090d 568fc-cat/Makefile
20fa60c9 569fc-list/Makefile
440e7054 570fc-match/Makefile
0da305f7 571doc/Makefile
fddb839b 572doc/version.sgml
44d90378 573test/Makefile
20fa60c9
KP
574fontconfig.spec
575fontconfig.pc
576fonts.conf
daeed6e0 577fontconfig-zip
20fa60c9 578])