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