1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
AC_PREREQ(2.54)
AC_INIT(GrcRegressionTest, 1.0, silgraphite-devel@lists.sourceforge.net)
AC_CONFIG_SRCDIR(Makefile.am)
AC_CONFIG_AUX_DIR(config)
# setup automake
AM_INIT_AUTOMAKE(foreign)
AM_MAINTAINER_MODE
# System checks.
AC_CANONICAL_HOST
# Check programs we need
AC_PROG_CXX
# Check packages needed
# PKG_CHECK_MODULES(GR2, silgraphite >= 2.2.0)
# Set default language for tests
AC_LANG(C++)
# Checks for typedefs, structures, and compiler characteristics.
AC_C_BIGENDIAN
AC_TYPE_SIZE_T
AC_CHECK_SIZEOF(wchar_t)
AC_SUBST(SIZEOF_WCHAR_T)
# need to check for icu .h files as in unicode/uchar.h
AC_CHECK_HEADER(unicode/utf16.h,,)
AC_CONFIG_FILES(Makefile)
AC_OUTPUT
|