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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(libucimf, 2.3.8, ucimf@googlegroups.com)
AM_INIT_AUTOMAKE
AC_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
AM_PROG_CC_C_O
# Checks for libraries.
AC_CHECK_LIB([ltdl],
[lt_dlopen],
[],
[AC_MSG_ERROR([ltdl is required to build libucimf])])
dnl Checking FreeType2.......................................................
PKG_CHECK_MODULES([freetype2], [freetype2])
AC_SUBST(freetype2_CFLAGS)
AC_SUBST(freetype2_LIBS)
dnl .........................................................................
dnl Checking Fontconfig.......................................................
PKG_CHECK_MODULES([fontconfig], [fontconfig])
AC_SUBST(fontconfig_CFLAGS)
AC_SUBST(fontconfig_LIBS)
dnl .........................................................................
# Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
AC_CHECK_HEADERS([stdint.h fcntl.h locale.h stdlib.h string.h sys/ioctl.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
test "x$prefix" = xNONE && prefix=$ac_default_prefix
test "x$exec_prefix" = xNONE && exec_prefix=${prefix}
AC_DEFINE_UNQUOTED([UCIMF_CONF], ["`eval echo $sysconfdir/ucimf.conf`"], [Description])
AC_DEFINE_UNQUOTED([IMF_MODULE_DIR], ["`eval echo $libdir/ucimf/`"], [Description])
AH_VERBATIM([USE_DEBUG],[#undef USE_DEBUG])
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug],
[enable Debug (default: no)]),
debug=$enableval, debug="no")
if test "$debug" = yes; then
AC_DEFINE([USE_DEBUG], [], [])
fi
AM_CONDITIONAL(ENABLE_DEBUG, test "$debug" = "yes")
# Checks for library functions.
AC_FUNC_CLOSEDIR_VOID
AC_PROG_GCC_TRADITIONAL
AC_FUNC_MALLOC
AC_FUNC_MMAP
AC_FUNC_REALLOC
AC_CHECK_FUNCS([memmove memset munmap setlocale strstr])
AC_CHECK_PROG( DIALOG, dialog, yes, no)
if test "$DIALOG" = no ; then
AC_MSG_WARN([Couldn't find dialog. It recommanded to have 'dialog' to execute 'ucimf_start' successfully.])
fi
AC_CONFIG_FILES([Makefile
libucimf-uninstalled.pc
libucimf.pc
ucimf_start
src/Makefile
font/Makefile
man/Makefile
sample/Makefile
display/Makefile])
AC_OUTPUT
|