configure.ac 13.4 KB
Newer Older
1
AC_PREREQ([2.64])
B
Minor  
Behdad Esfahbod 已提交
2
AC_INIT([HarfBuzz],
B
0.9.19  
Behdad Esfahbod 已提交
3
        [0.9.19],
4 5
        [http://bugs.freedesktop.org/enter_bug.cgi?product=harfbuzz],
        [harfbuzz],
B
Behdad Esfahbod 已提交
6
        [http://harfbuzz.org/])
7

B
Behdad Esfahbod 已提交
8
AC_CONFIG_MACRO_DIR([m4])
B
Behdad Esfahbod 已提交
9
AC_CONFIG_SRCDIR([src/harfbuzz.pc.in])
B
Behdad Esfahbod 已提交
10
AC_CONFIG_HEADERS([config.h])
11

B
Behdad Esfahbod 已提交
12
AM_INIT_AUTOMAKE([1.11.1 gnits dist-bzip2 no-dist-gzip -Wall no-define color-tests -Wno-portability])
13
AM_SILENT_RULES([yes])
B
Behdad Esfahbod 已提交
14

B
Minor  
Behdad Esfahbod 已提交
15
# Initialize libtool
16
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
B
Minor  
Behdad Esfahbod 已提交
17 18 19
LT_PREREQ([2.2])
LT_INIT([disable-static])

20
# Check for programs
B
Behdad Esfahbod 已提交
21
AC_PROG_CC
B
Behdad Esfahbod 已提交
22
AM_PROG_CC_C_O
B
Behdad Esfahbod 已提交
23
AC_PROG_CXX
B
Behdad Esfahbod 已提交
24
PKG_PROG_PKG_CONFIG([0.20])
B
Behdad Esfahbod 已提交
25

26
# Version
B
Behdad Esfahbod 已提交
27 28 29 30 31 32 33
m4_define(hb_version_triplet,m4_split(AC_PACKAGE_VERSION,[[.]]))
m4_define(hb_version_major,m4_argn(1,hb_version_triplet))
m4_define(hb_version_minor,m4_argn(2,hb_version_triplet))
m4_define(hb_version_micro,m4_argn(3,hb_version_triplet))
HB_VERSION_MAJOR=hb_version_major
HB_VERSION_MINOR=hb_version_minor
HB_VERSION_MICRO=hb_version_micro
34 35 36 37 38 39
HB_VERSION=AC_PACKAGE_VERSION
AC_SUBST(HB_VERSION_MAJOR)
AC_SUBST(HB_VERSION_MINOR)
AC_SUBST(HB_VERSION_MICRO)
AC_SUBST(HB_VERSION)

B
Behdad Esfahbod 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53
# Libtool version
m4_define([hb_version_int],
	  m4_eval(hb_version_major*10000 + hb_version_minor*100 + hb_version_micro))
m4_if(m4_eval(hb_version_minor % 2), [1],
      dnl for unstable releases
      [m4_define([hb_libtool_revision], 0)],
      dnl for stable releases
      [m4_define([hb_libtool_revision], hb_version_micro)])
m4_define([hb_libtool_age],
	  m4_eval(hb_version_int - hb_libtool_revision))
m4_define([hb_libtool_current],
	  m4_eval(hb_version_major + hb_libtool_age))
HB_LIBTOOL_VERSION_INFO=hb_libtool_current:hb_libtool_revision:hb_libtool_age
AC_SUBST(HB_LIBTOOL_VERSION_INFO)
54

55 56 57
# Documentation
have_gtk_doc=false
m4_ifdef([GTK_DOC_CHECK], [
B
Behdad Esfahbod 已提交
58
GTK_DOC_CHECK([1.15],[--flavour no-tmpl])
59 60 61 62 63 64
	if test "x$enable_gtk_doc" = xyes; then
		have_gtk_doc=true
	fi
], [
	AM_CONDITIONAL([ENABLE_GTK_DOC], false)
])
65

B
Behdad Esfahbod 已提交
66
# Functions and headers
B
Behdad Esfahbod 已提交
67 68
AC_CHECK_FUNCS(atexit mprotect sysconf getpagesize mmap isatty)
AC_CHECK_HEADERS(unistd.h sys/mman.h)
B
Behdad Esfahbod 已提交
69

B
Behdad Esfahbod 已提交
70
# Compiler flags
71
AC_CANONICAL_HOST
B
Behdad Esfahbod 已提交
72
if test "x$GCC" = "xyes"; then
73

74 75 76
	# Make symbols link locally
	LDFLAGS="$LDFLAGS -Bsymbolic-functions"

77
	# Make sure we don't link to libstdc++
B
Behdad Esfahbod 已提交
78
	CXXFLAGS="$CXXFLAGS -fno-rtti -fno-exceptions"
79

B
Behdad Esfahbod 已提交
80 81 82
	# Assorted warnings
	CXXFLAGS="$CXXFLAGS -Wcast-align"

B
Behdad Esfahbod 已提交
83
	case "$host" in
84
		*-*-mingw*)
B
Behdad Esfahbod 已提交
85 86 87 88 89 90 91
		;;
		*)
			# Hide inline methods
			CXXFLAGS="$CXXFLAGS -fvisibility-inlines-hidden"
		;;
	esac

92 93 94 95 96 97
	case "$host" in
		arm-*-*)
			# Request byte alignment on arm
			CXXFLAGS="$CXXFLAGS -mstructure-size-boundary=8"
		;;
	esac
B
Behdad Esfahbod 已提交
98 99
fi

100 101
AM_CONDITIONAL(HAVE_GCC, test "x$GCC" = "xyes")

102
hb_os_win32=no
103 104 105 106 107 108 109 110 111
AC_MSG_CHECKING([for native Win32])
case "$host" in
  *-*-mingw*)
    hb_os_win32=yes
    ;;
esac
AC_MSG_RESULT([$hb_os_win32])
AM_CONDITIONAL(OS_WIN32, test "$hb_os_win32" = "yes")

B
Behdad Esfahbod 已提交
112
have_pthread=false
113 114 115
if test "$hb_os_win32" = no; then
	AX_PTHREAD([have_pthread=true])
fi
B
Behdad Esfahbod 已提交
116 117 118 119 120
if $have_pthread; then
	AC_DEFINE(HAVE_PTHREAD, 1, [Have POSIX threads])
fi
AM_CONDITIONAL(HAVE_PTHREAD, $have_pthread)

B
Behdad Esfahbod 已提交
121 122
dnl ==========================================================================

B
Shuffle  
Behdad Esfahbod 已提交
123 124 125 126 127 128 129 130
have_ot=true
if $have_ot; then
	AC_DEFINE(HAVE_OT, 1, [Have native OpenType Layout backend])
fi
AM_CONDITIONAL(HAVE_OT, $have_ot)

dnl ===========================================================================

B
Behdad Esfahbod 已提交
131
have_hb_old=false
132 133 134 135 136 137 138
if $have_hb_old; then
	AC_DEFINE(HAVE_HB_OLD, 1, [Have Old HarfBuzz backend])
fi
AM_CONDITIONAL(HAVE_HB_OLD, $have_hb_old)

dnl ===========================================================================

B
Behdad Esfahbod 已提交
139 140
AC_ARG_WITH(glib,
	[AS_HELP_STRING([--with-glib=@<:@yes/no/auto@:>@],
B
Behdad Esfahbod 已提交
141 142
			[Use glib @<:@default=auto@:>@])],,
	[with_glib=auto])
B
Behdad Esfahbod 已提交
143 144
have_glib=false
if test "x$with_glib" = "xyes" -o "x$with_glib" = "xauto"; then
B
Behdad Esfahbod 已提交
145
	PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.16, have_glib=true, :)
B
Behdad Esfahbod 已提交
146 147 148 149
fi
if test "x$with_glib" = "xyes" -a "x$have_glib" != "xtrue"; then
	AC_MSG_ERROR([glib support requested but glib-2.0 not found])
fi
150
if $have_glib; then
B
Behdad Esfahbod 已提交
151
	AC_DEFINE(HAVE_GLIB, 1, [Have glib2 library])
152
fi
B
Behdad Esfahbod 已提交
153 154
AM_CONDITIONAL(HAVE_GLIB, $have_glib)

155 156
dnl ===========================================================================

B
Behdad Esfahbod 已提交
157 158 159
AC_ARG_WITH(gobject,
	[AS_HELP_STRING([--with-gobject=@<:@yes/no/auto@:>@],
			[Use gobject @<:@default=auto@:>@])],,
160
	[with_gobject=no])
B
Behdad Esfahbod 已提交
161
have_gobject=false
B
Behdad Esfahbod 已提交
162 163 164 165 166
if test "x$with_gobject" = "xyes" -o "x$with_gobject" = "xauto"; then
	PKG_CHECK_MODULES(GOBJECT, gobject-2.0 glib-2.0, have_gobject=true, :)
fi
if test "x$with_gobject" = "xyes" -a "x$have_gobject" != "xtrue"; then
	AC_MSG_ERROR([gobject support requested but gobject-2.0 / glib-2.0 not found])
B
Behdad Esfahbod 已提交
167
fi
168 169
if $have_gobject; then
	AC_DEFINE(HAVE_GOBJECT, 1, [Have gobject2 library])
170 171
	GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
	AC_SUBST(GLIB_MKENUMS)
172 173 174
fi
AM_CONDITIONAL(HAVE_GOBJECT, $have_gobject)

B
Minor  
Behdad Esfahbod 已提交
175 176
dnl ===========================================================================

177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195

dnl ===========================================================================
# Gobject-Introspection
have_introspection=false
m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
	if $have_gobject; then
		GOBJECT_INTROSPECTION_CHECK([1.32.0])
		if test "x$found_introspection" = xyes; then
			have_introspection=true
		fi
	else
		AM_CONDITIONAL([HAVE_INTROSPECTION], false)
	fi
], [
	AM_CONDITIONAL([HAVE_INTROSPECTION], false)
])

dnl ===========================================================================

B
Minor  
Behdad Esfahbod 已提交
196
have_ucdn=true
197 198 199
if $have_glib; then
	have_ucdn=false
fi
B
Minor  
Behdad Esfahbod 已提交
200 201 202 203 204
if $have_ucdn; then
	AC_DEFINE(HAVE_UCDN, 1, [Have UCDN Unicode functions])
fi
AM_CONDITIONAL(HAVE_UCDN, $have_ucdn)

B
Behdad Esfahbod 已提交
205 206
dnl ==========================================================================

B
Behdad Esfahbod 已提交
207 208 209 210 211 212
AC_ARG_WITH(cairo,
	[AS_HELP_STRING([--with-cairo=@<:@yes/no/auto@:>@],
			[Use cairo @<:@default=auto@:>@])],,
	[with_cairo=auto])
have_cairo=false
if test "x$with_cairo" = "xyes" -o "x$with_cairo" = "xauto"; then
B
Behdad Esfahbod 已提交
213
	PKG_CHECK_MODULES(CAIRO, cairo >= 1.8.0, have_cairo=true, :)
B
Behdad Esfahbod 已提交
214 215 216 217
fi
if test "x$with_cairo" = "xyes" -a "x$have_cairo" != "xtrue"; then
	AC_MSG_ERROR([cairo support requested but not found])
fi
B
Behdad Esfahbod 已提交
218 219 220 221 222
if $have_cairo; then
	AC_DEFINE(HAVE_CAIRO, 1, [Have cairo graphics library])
fi
AM_CONDITIONAL(HAVE_CAIRO, $have_cairo)

B
Behdad Esfahbod 已提交
223 224
have_cairo_ft=false
if $have_cairo; then
B
Behdad Esfahbod 已提交
225
	PKG_CHECK_MODULES(CAIRO_FT, cairo-ft, have_cairo_ft=true, :)
B
Behdad Esfahbod 已提交
226
fi
B
Behdad Esfahbod 已提交
227 228 229 230 231
if $have_cairo_ft; then
	AC_DEFINE(HAVE_CAIRO_FT, 1, [Have cairo-ft support in cairo graphics library])
fi
AM_CONDITIONAL(HAVE_CAIRO_FT, $have_cairo_ft)

B
Behdad Esfahbod 已提交
232 233
dnl ==========================================================================

234 235 236 237 238 239
AC_ARG_WITH(icu,
	[AS_HELP_STRING([--with-icu=@<:@yes/no/auto@:>@],
			[Use ICU @<:@default=auto@:>@])],,
	[with_icu=auto])
have_icu=false
if test "x$with_icu" = "xyes" -o "x$with_icu" = "xauto"; then
B
Behdad Esfahbod 已提交
240
	PKG_CHECK_MODULES(ICU, icu-uc, have_icu=true, :)
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258

	dnl Fallback to icu-config if ICU pkg-config files could not be found
	if test "$have_icu" != "true"; then
		AC_CHECK_TOOL(ICU_CONFIG, icu-config, no)
		AC_MSG_CHECKING([for ICU by using icu-config fallback])
		if test "$ICU_CONFIG" != "no" && "$ICU_CONFIG" --version >/dev/null; then
			have_icu=true
			# We don't use --cflags as this gives us a lot of things that we don't
			# necessarily want, like debugging and optimization flags
			# See man (1) icu-config for more info.
			ICU_CFLAGS=`$ICU_CONFIG --cppflags`
			ICU_LIBS=`$ICU_CONFIG --ldflags-searchpath --ldflags-libsonly`
			AC_SUBST(ICU_CFLAGS)
			AC_SUBST(ICU_LIBS)
			AC_MSG_RESULT([yes])
		else
			AC_MSG_RESULT([no])
		fi
259 260
	fi
fi
261 262 263
if test "x$with_icu" = "xyes" -a "x$have_icu" != "xtrue"; then
	AC_MSG_ERROR([icu support requested but icu-uc not found])
fi
B
Behdad Esfahbod 已提交
264
if $have_icu; then
265
	CXXFLAGS="$CXXFLAGS `$PKG_CONFIG --variable=CXXFLAGS icu-uc`"
B
Behdad Esfahbod 已提交
266 267 268 269
	AC_DEFINE(HAVE_ICU, 1, [Have ICU library])
fi
AM_CONDITIONAL(HAVE_ICU, $have_icu)

B
Behdad Esfahbod 已提交
270
dnl ==========================================================================
271

B
Behdad Esfahbod 已提交
272
have_icu_le=false
B
Behdad Esfahbod 已提交
273
dnl PKG_CHECK_MODULES(ICU_LE, icu-le icu-uc, have_icu_le=true, :)
274 275 276 277 278 279 280
if $have_icu_le; then
	AC_DEFINE(HAVE_ICU_LE, 1, [Have ICU Layout Engine library])
fi
AM_CONDITIONAL(HAVE_ICU_LE, $have_icu_le)

dnl ==========================================================================

281 282 283 284 285 286
AC_ARG_WITH(graphite2,
	[AS_HELP_STRING([--with-graphite2=@<:@yes/no/auto@:>@],
			[Use the graphite2 library @<:@default=no@:>@])],,
	[with_graphite2=no])
have_graphite2=false
if test "x$with_graphite2" = "xyes" -o "x$with_graphite2" = "xauto"; then
B
Behdad Esfahbod 已提交
287
	PKG_CHECK_MODULES(GRAPHITE2, graphite2, have_graphite2=true, :)
288
fi
289 290 291 292 293 294 295
if test "x$with_graphite2" = "xyes" -a "x$have_graphite2" != "xtrue"; then
	AC_MSG_ERROR([graphite2 support requested but libgraphite2 not found])
fi
if $have_graphite2; then
    AC_DEFINE(HAVE_GRAPHITE2, 1, [Have Graphite2 library])
fi
AM_CONDITIONAL(HAVE_GRAPHITE2, $have_graphite2)
B
Behdad Esfahbod 已提交
296 297

dnl ==========================================================================
B
Behdad Esfahbod 已提交
298

B
Behdad Esfahbod 已提交
299 300 301 302 303 304
AC_ARG_WITH(freetype,
	[AS_HELP_STRING([--with-freetype=@<:@yes/no/auto@:>@],
			[Use the FreeType library @<:@default=auto@:>@])],,
	[with_freetype=auto])
have_freetype=false
if test "x$with_freetype" = "xyes" -o "x$with_freetype" = "xauto"; then
B
Behdad Esfahbod 已提交
305
	PKG_CHECK_MODULES(FREETYPE, freetype2 >= 2.3.8, have_freetype=true, :)
B
Behdad Esfahbod 已提交
306 307 308 309
fi
if test "x$with_freetype" = "xyes" -a "x$have_freetype" != "xtrue"; then
	AC_MSG_ERROR([FreeType support requested but libfreetype2 not found])
fi
310 311
if $have_freetype; then
	AC_DEFINE(HAVE_FREETYPE, 1, [Have FreeType 2 library])
B
Behdad Esfahbod 已提交
312 313 314 315 316 317 318
	_save_libs="$LIBS"
	_save_cflags="$CFLAGS"
	LIBS="$LIBS $FREETYPE_LIBS"
	CFLAGS="$CFLAGS $FREETYPE_CFLAGS"
	AC_CHECK_FUNCS(FT_Face_GetCharVariantIndex)
	LIBS="$_save_libs"
	CFLAGS="$_save_cflags"
319
fi
B
Behdad Esfahbod 已提交
320 321
AM_CONDITIONAL(HAVE_FREETYPE, $have_freetype)

322
dnl ===========================================================================
B
Behdad Esfahbod 已提交
323

B
Behdad Esfahbod 已提交
324 325 326 327 328 329
AC_ARG_WITH(uniscribe,
	[AS_HELP_STRING([--with-uniscribe=@<:@yes/no/auto@:>@],
			[Use the Uniscribe library @<:@default=no@:>@])],,
	[with_uniscribe=no])
have_uniscribe=false
if test "x$with_uniscribe" = "xyes" -o "x$with_uniscribe" = "xauto"; then
330
	AC_CHECK_HEADERS(usp10.h windows.h, have_uniscribe=true)
B
Behdad Esfahbod 已提交
331 332 333 334
fi
if test "x$with_uniscribe" = "xyes" -a "x$have_uniscribe" != "xtrue"; then
	AC_MSG_ERROR([uniscribe support requested but not found])
fi
335 336
if $have_uniscribe; then
	UNISCRIBE_CFLAGS=
337
	UNISCRIBE_LIBS="-lusp10 -lgdi32 -lrpcrt4"
338 339
	AC_SUBST(UNISCRIBE_CFLAGS)
	AC_SUBST(UNISCRIBE_LIBS)
B
Behdad Esfahbod 已提交
340
	AC_DEFINE(HAVE_UNISCRIBE, 1, [Have Uniscribe library])
341 342 343
fi
AM_CONDITIONAL(HAVE_UNISCRIBE, $have_uniscribe)

344 345
dnl ===========================================================================

B
Behdad Esfahbod 已提交
346 347 348 349 350 351 352 353 354 355 356
AC_ARG_WITH(coretext,
	[AS_HELP_STRING([--with-coretext=@<:@yes/no/auto@:>@],
			[Use CoreText @<:@default=no@:>@])],,
	[with_coretext=no])
have_coretext=false
if test "x$with_coretext" = "xyes" -o "x$with_coretext" = "xauto"; then
	AC_CHECK_TYPE(CTFontRef, have_coretext=true,, [#include <ApplicationServices/ApplicationServices.h>])
fi
if test "x$with_coretext" = "xyes" -a "x$have_coretext" != "xtrue"; then
	AC_MSG_ERROR([CoreText support requested but libcoretext not found])
fi
357 358
if $have_coretext; then
	CORETEXT_CFLAGS=
359
	CORETEXT_LIBS="-framework ApplicationServices"
360 361 362 363 364 365 366 367
	AC_SUBST(CORETEXT_CFLAGS)
	AC_SUBST(CORETEXT_LIBS)
	AC_DEFINE(HAVE_CORETEXT, 1, [Have Core Text backend])
fi
AM_CONDITIONAL(HAVE_CORETEXT, $have_coretext)

dnl ===========================================================================

368 369
AC_CACHE_CHECK([for Intel atomic primitives], hb_cv_have_intel_atomic_primitives, [
	hb_cv_have_intel_atomic_primitives=false
B
Behdad Esfahbod 已提交
370
	AC_TRY_LINK([
371
		void memory_barrier (void) { __sync_synchronize (); }
B
Behdad Esfahbod 已提交
372 373 374 375
		int atomic_add (int *i) { return __sync_fetch_and_add (i, 1); }
		int mutex_trylock (int *m) { return __sync_lock_test_and_set (m, 1); }
		void mutex_unlock (int *m) { __sync_lock_release (m); }
		], [], hb_cv_have_intel_atomic_primitives=true
376 377 378 379 380 381 382 383
	)
])
if $hb_cv_have_intel_atomic_primitives; then
	AC_DEFINE(HAVE_INTEL_ATOMIC_PRIMITIVES, 1, [Have Intel __sync_* atomic primitives])
fi

dnl ===========================================================================

B
Behdad Esfahbod 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
AC_CACHE_CHECK([for Solaris atomic operations], hb_cv_have_solaris_atomic_ops, [
	hb_cv_have_solaris_atomic_ops=false
	AC_TRY_LINK([
		#include <atomic.h>
		/* This requires Solaris Studio 12.2 or newer: */
		#include <mbarrier.h>
		void memory_barrier (void) { __machine_rw_barrier (); }
		int atomic_add (volatile unsigned *i) { return atomic_add_int_nv (i, 1); }
		void *atomic_ptr_cmpxchg (volatile void **target, void *cmp, void *newval) { return atomic_cas_ptr (target, cmp, newval); }
		], [], hb_cv_have_solaris_atomic_ops=true
	)
])
if $hb_cv_have_solaris_atomic_ops; then
	AC_DEFINE(HAVE_SOLARIS_ATOMIC_OPS, 1, [Have Solaris __machine_*_barrier and atomic_* operations])
fi

if test "$os_win32" = no && ! $have_pthread; then
	AC_CHECK_HEADERS(sched.h)
	AC_SEARCH_LIBS(sched_yield,rt,AC_DEFINE(HAVE_SCHED_YIELD, 1, [Have sched_yield]))
fi

dnl ===========================================================================

B
Behdad Esfahbod 已提交
407 408 409
AC_CONFIG_FILES([
Makefile
src/Makefile
410
src/hb-version.h
411
src/hb-icu-le/Makefile
B
Behdad Esfahbod 已提交
412 413
src/hb-old/Makefile
src/hb-ucdn/Makefile
B
Behdad Esfahbod 已提交
414
util/Makefile
B
Behdad Esfahbod 已提交
415
test/Makefile
B
Behdad Esfahbod 已提交
416
test/api/Makefile
417
test/shaping/Makefile
A
Anthony Carrico 已提交
418 419
docs/Makefile
docs/reference/Makefile
B
Behdad Esfahbod 已提交
420 421 422
])

AC_OUTPUT
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439

AC_MSG_NOTICE([

Build configuration:

Unicode callbacks (you want at least one):
	Glib:			${have_glib}
	ICU:			${have_icu}
	UCDN:			${have_ucdn}

Font callbacks (the more the better):
	FreeType:		${have_freetype}

Tools used for command-line utilities:
	Cairo:			${have_cairo}

Additional shapers (the more the better):
440
	Graphite2:		${have_graphite2}
441 442 443 444 445 446

Test / platform shapers (not normally needed):
	CoreText:		${have_coretext}
	ICU Layout Engine:	${have_icu_le}
	Old HarfBuzz:		${have_hb_old}
	Uniscribe:		${have_uniscribe}
A
Anthony Carrico 已提交
447

448
Other features:
449
	Documentation:		${have_gtk_doc}
B
Behdad Esfahbod 已提交
450
	GObject bindings:	${have_gobject}
451
	Introspection:		${have_introspection}
452
])