# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. rm -f config.cache AC_INIT(moon, 0.2.2, enlightenment-devel@lists.sourceforge.net) AC_PREREQ(2.59) AC_CONFIG_SRCDIR(src/e_mod_main.c) AC_CANONICAL_BUILD AC_CANONICAL_HOST AC_ISC_POSIX AM_INIT_AUTOMAKE(1.6) AM_CONFIG_HEADER(config.h) AC_PROG_CC AM_PROG_CC_STDC AC_HEADER_STDC AC_C_CONST # Checks for header files. AC_CHECK_HEADERS([limits.h string.h]) # Checks for typedefs, structures, and compiler characteristics. AC_STRUCT_TM # Checks for library functions. AC_CHECK_FUNCS([sqrt strdup]) MODULE_ARCH="$host_os-$host_cpu" AC_SUBST(MODULE_ARCH) define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl AC_PROG_LIBTOOL AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION(0.14) # Checks for libraries. AC_PATH_PROG(EDJE_CC, "edje_cc", "", $PATH) AC_ARG_WITH(enlightenment-config, AS_HELP_STRING([--with-enlightenment-config=E_CONFIG], [use enlightenment-config specified]), [ E_CONFIG=$withval; echo "using "$E_CONFIG" for enlightenment-config"; ], [ PROG="enlightenment-config"; AC_PATH_PROG(E_CONFIG, $PROG, "", $PATH) ] ) e_cflags=`$E_CONFIG --cflags` e_libs=`$E_CONFIG --libs` e_modules=`$E_CONFIG --module-dir` AC_SUBST(e_cflags) AC_SUBST(e_libs) dnl TODO: Fix better install for homedir datadir="${e_modules}/${PACKAGE}" AC_CONFIG_FILES([Makefile e_modules-moon.spec data/Makefile data/themes/Makefile data/themes/images/Makefile po/Makefile.in src/Makefile]) AC_OUTPUT