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