]> git.wh0rd.org - fontconfig.git/blame_incremental - configure.in
Update for version 2.4.1
[fontconfig.git] / configure.in
... / ...
CommitLineData
1dnl
2dnl $Id$
3dnl
4dnl Copyright © 2003 Keith Packard
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.
23dnl
24dnl Process this file with autoconf to create configure.
25
26AC_INIT(fonts.dtd)
27
28dnl ==========================================================================
29dnl Versioning
30dnl ==========================================================================
31
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
36AM_INIT_AUTOMAKE(fontconfig, 2.4.1)
37AM_MAINTAINER_MODE
38
39dnl libtool versioning
40
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
46AC_SUBST(LT_CURRENT)
47AC_SUBST(LT_REVISION)
48LT_AGE=1
49
50LT_VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
51AC_SUBST(LT_VERSION_INFO)
52
53LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`
54AC_SUBST(LT_CURRENT_MINUS_AGE)
55
56dnl ==========================================================================
57
58AM_CONFIG_HEADER(config.h)
59
60AC_PROG_CC
61AC_PROG_INSTALL
62AC_PROG_LN_S
63AC_LIBTOOL_WIN32_DLL
64AM_PROG_LIBTOOL
65AC_PROG_MAKE_SET
66
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
83WARN_CFLAGS=""
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"
88 AC_DEFINE_UNQUOTED(HAVE_WARNING_CPP_DIRECTIVE,1,
89 [Can use #warning in C files])
90fi
91AC_SUBST(WARN_CFLAGS)
92
93
94dnl ==========================================================================
95
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
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
156# Checks for header files.
157AC_HEADER_DIRENT
158AC_HEADER_STDC
159AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
160
161# Checks for typedefs, structures, and compiler characteristics.
162AC_C_CONST
163AC_C_INLINE
164AC_TYPE_PID_T
165
166# Checks for library functions.
167AC_FUNC_VPRINTF
168AC_FUNC_MMAP
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.])
203
204#
205# Checks for FreeType
206#
207
208AC_ARG_WITH(freetype-config, [ --with-freetype-config=PROG Use FreeType configuration program PROG], freetype_config=$withval, freetype_config=yes)
209
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
218
219FREETYPE_CFLAGS="`$ft_config --cflags`"
220FREETYPE_LIBS="`$ft_config --libs`"
221
222AC_SUBST(FREETYPE_LIBS)
223AC_SUBST(FREETYPE_CFLAGS)
224
225#
226# Check to see whether we have:
227# FT_Get_Next_Char
228# FT_Get_BDF_Property
229# FT_Get_PS_Font_Info
230# FT_Has_PS_Glyph_Names
231#
232
233fontconfig_save_libs="$LIBS"
234fontconfig_save_cflags="$CFLAGS"
235LIBS="$LIBS $FREETYPE_LIBS"
236CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
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)
238AC_CHECK_MEMBER(FT_Bitmap_Size.y_ppem,
239 HAVE_FT_BITMAP_SIZE_Y_PPEM=1,
240 HAVE_FT_BITMAP_SIZE_Y_PPEM=0,
241[#include <ft2build.h>
242#include FT_FREETYPE_H])
243AC_DEFINE_UNQUOTED(HAVE_FT_BITMAP_SIZE_Y_PPEM,$HAVE_FT_BITMAP_SIZE_Y_PPEM,
244 [FT_Bitmap_Size structure includes y_ppem field])
245CFLAGS="$fontconfig_save_cflags"
246LIBS="$fontconfig_save_libs"
247
248#
249# Check expat configuration
250#
251
252AC_ARG_WITH(expat, [ --with-expat=DIR Use Expat in DIR], expat=$withval, expat=yes)
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)
255
256if test "$enable_libxml2" != "yes"; then
257 case "$expat" in
258 no)
259 ;;
260 *)
261 case "$expat_includes" in
262 yes)
263 case "$expat" in
264 yes)
265 ;;
266 *)
267 EXPAT_CFLAGS="-I$expat/include"
268 ;;
269 esac
270 ;;
271 no)
272 EXPAT_CFLAGS=""
273 ;;
274 *)
275 EXPAT_CFLAGS="-I$expat_includes"
276 ;;
277 esac
278 case "$expat_lib" in
279 yes)
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)
290 ;;
291 *)
292 EXPAT_LIBS="-L$expat_lib -lexpat"
293 ;;
294 esac
295
296 expatsaved_CPPFLAGS="$CPPFLAGS"
297 CPPFLAGS="$CPPFLAGS $EXPAT_CFLAGS"
298 expatsaved_LIBS="$LIBS"
299 LIBS="$LIBS $EXPAT_LIBS"
300
301 AC_CHECK_HEADER(expat.h)
302 case "$ac_cv_header_expat_h" in
303 no)
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
317 ;;
318 yes)
319 have_expat_header=yes
320 ;;
321 esac
322 case "$have_expat_header" in
323 no)
324 expat=no
325 ;;
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 ;;
340 esac
341 CPPFLAGS="$expatsaved_CPPFLAGS"
342 LIBS="$expatsaved_LIBS"
343 ;;
344 esac
345
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
365PKG_PROG_PKG_CONFIG
366
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
374
375#
376# Set default font directory
377#
378
379AC_ARG_WITH(default-fonts, [ --with-default-fonts=DIR Use fonts from DIR when config is busted], default_fonts="$withval", default_fonts=yes)
380
381case "$default_fonts" in
382yes)
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
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#
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
406#
407AC_ARG_WITH(add-fonts, [ --with-add-fonts=DIR1,DIR2,...Find additional fonts in DIR1,DIR2,... ], add_fonts="$withval", add_fonts=yes)
408
409case "$add_fonts" in
410yes)
411 FC_ADD_FONTS=""
412 for dir in /usr/X11R6/lib/X11 /usr/X11/lib/X11 /usr/lib/X11; do
413 case x"$FC_ADD_FONTS" in
414 x)
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
425 fi
426 ;;
427 esac
428 done
429 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
430 ;;
431no)
432 FC_ADD_FONTS=""
433 ;;
434*)
435 FC_ADD_FONTS="$add_fonts"
436 AC_DEFINE_UNQUOTED(FC_ADD_FONTS,"$add_fonts",[Additional font directories])
437 ;;
438esac
439
440AC_SUBST(FC_ADD_FONTS)
441
442FC_FONTPATH=""
443
444case "$FC_ADD_FONTS" in
445"")
446 ;;
447*)
448 FC_FONTPATH=`echo $FC_ADD_FONTS |
449 sed -e 's/^/<dir>/' -e 's/$/<\/dir>/' -e 's/,/<\/dir> <dir>/g'`
450 ;;
451esac
452
453AC_SUBST(FC_FONTPATH)
454
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
471FC_FONTDATE=`LC_ALL=C date`
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)
483 confdir='${sysconfdir}'/fonts
484 ;;
485*)
486 ;;
487esac
488AC_SUBST(confdir)
489CONFDIR=${confdir}
490AC_DEFINE_UNQUOTED(CONFDIR, "$CONFDIR",[Font configuration directory])
491AC_SUBST(CONFDIR)
492
493#
494# Find out what language orthographies are included
495#
496
497ORTH_FILES=`cd ${srcdir}/fc-lang && echo *.orth`
498AC_SUBST(ORTH_FILES)
499
500#
501# Let people not build/install docs if they don't have docbook
502#
503
504AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
505
506AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)
507
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
518fi
519
520AC_ARG_ENABLE(docs, [ --disable-docs Don't build and install documentation],,enable_docs=$default_docs)
521
522AM_CONDITIONAL(ENABLE_DOCS, test "x$enable_docs" = xyes)
523
524if test "x$enable_docs" = xyes; then
525 DOCSRC="doc"
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
534else
535 DOCSRC=""
536 DOCMAN3=""
537fi
538
539AC_SUBST(DOCSRC)
540AC_SUBST(DOCMAN3)
541
542#
543# Figure out where to install documentation
544#
545
546AC_ARG_WITH(docdir, [ --with-docdir=DIR Use DIR to store documentation files (default ${datadir}/doc/fontconfig)], confdir="$withval")
547
548if test "x$with_docdir" = "x" ; then
549 DOCDIR='${datadir}/doc/fontconfig'
550else
551 DOCDIR=$with_docdir
552fi
553
554AC_SUBST(DOCDIR)
555
556
557AC_OUTPUT([
558Makefile
559fontconfig/Makefile
560fc-lang/Makefile
561fc-glyphname/Makefile
562fc-case/Makefile
563fc-arch/Makefile
564src/Makefile
565src/fontconfig.def
566conf.d/Makefile
567fc-cache/Makefile
568fc-cat/Makefile
569fc-list/Makefile
570fc-match/Makefile
571doc/Makefile
572doc/version.sgml
573test/Makefile
574fontconfig.spec
575fontconfig.pc
576fonts.conf
577fontconfig-zip
578])