efl/legacy/eet/configure.in

140 lines
3.5 KiB
Plaintext
Raw Normal View History

2002-12-02 15:39:26 -08:00
# get rid of that stupid cache mechanism
rm -f config.cache
AC_INIT(configure.in)
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_ISC_POSIX
2007-08-26 07:33:41 -07:00
AM_INIT_AUTOMAKE(eet, 0.9.10.041)
2002-12-02 15:39:26 -08:00
AM_CONFIG_HEADER(config.h)
AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC
AC_C_CONST
AM_ENABLE_SHARED
AM_PROG_LIBTOOL
2005-11-03 19:22:22 -08:00
AC_FUNC_ALLOCA
2002-12-02 15:39:26 -08:00
AC_CHECK_HEADER(zlib.h,, AC_MSG_ERROR("Cannot find zlib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file"))
AC_CHECK_HEADER(jpeglib.h,, AC_MSG_ERROR("Cannot find jpeglib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file"))
2004-05-12 20:38:32 -07:00
AC_CHECK_HEADERS(netinet/in.h)
winsock_libs=""
create_shared_lib=""
2004-10-12 09:15:54 -07:00
case "$host_os" in
mingw|mingw32)
winsock_libs="-lwsock32"
create_shared_lib="-no-undefined "
2004-10-12 09:15:54 -07:00
;;
esac
AC_SUBST(winsock_libs)
2007-01-20 08:51:48 -08:00
AC_SUBST(create_shared_lib)
2004-10-12 09:15:54 -07:00
AC_CHECK_HEADER(fnmatch.h,, AC_MSG_ERROR([Cannot find fnmatch.h. Make sure your CFLAGS environment variable contains include lines for the location of this file. MinGW users: see the INSTALL file]))
2004-10-12 09:15:54 -07:00
fnmatch_libs=""
2004-10-12 09:15:54 -07:00
AC_CHECK_FUNCS(fnmatch, res=yes, res=no)
if test "x$res" = "xno"; then
AC_CHECK_LIB(fnmatch, fnmatch, res=yes fnmatch_libs="-lfnmatch", res=no)
dnl Test for compilation with MinGW.
dnl fnmatch function is in the libiberty library
2004-10-12 09:15:54 -07:00
if test "x$res" = "xno"; then
AC_CHECK_LIB(iberty, fnmatch, res=yes fnmatch_libs="-liberty", res=no)
fi
if test "x$res" = "xno"; then
AC_MSG_ERROR([Cannot find fnmatch() in neither libc nor libfnmatch, nor libiberty])
2004-10-12 09:15:54 -07:00
fi
fi
AC_SUBST(fnmatch_libs)
dnl These are needed for fmemopen/open_memstream
AC_DEFINE(_GNU_SOURCE, , [Enable GNU extensions])
AC_DEFINE(__USE_GNU, , [Enable GNU extensions])
AC_CHECK_FUNCS(fmemopen open_memstream realpath)
dnl Check whether the null pointer is zero on this arch
AC_MSG_CHECKING([value of the null pointer])
AC_TRY_RUN([
#include <stdlib.h>
int main (int argc, char **argv) {
void *foo = NULL;
int bar = (int)foo;
return (int)foo;
}
], AC_MSG_RESULT([yes]), [
AC_MSG_RESULT([no])
AC_MSG_WARN([Your system is a bit too funny, eet might not work properly])
2005-06-10 02:40:23 -07:00
], AC_MSG_WARN([Cannot check when cross-compiling -- assuming null is okay])
)
2002-12-02 15:39:26 -08:00
if test "x${bindir}" = 'xNONE'; then
if test "x${prefix}" = "xNONE"; then
PACKAGE_BIN_DIR="${ac_default_prefix}/bin"
2002-12-02 15:39:26 -08:00
else
PACKAGE_BIN_DIR="${prefix}/bin"
2002-12-02 15:39:26 -08:00
fi
else
PACKAGE_BIN_DIR="${bindir}"
2002-12-02 15:39:26 -08:00
fi
AC_SUBST(PACKAGE_BIN_DIR)
2002-12-02 15:39:26 -08:00
if test "x${libdir}" = 'xNONE'; then
if test "x${prefix}" = "xNONE"; then
PACKAGE_LIB_DIR="${ac_default_prefix}/lib"
2002-12-02 15:39:26 -08:00
else
PACKAGE_LIB_DIR="${prefix}/lib"
2002-12-02 15:39:26 -08:00
fi
else
PACKAGE_LIB_DIR="${libdir}"
2002-12-02 15:39:26 -08:00
fi
AC_SUBST(PACKAGE_LIB_DIR)
if test "x${prefix}" = "xNONE"; then
PACKAGE_DATA_DIR="${ac_default_prefix}/share/${PACKAGE}"
else
PACKAGE_DATA_DIR="${prefix}/share/${PACKAGE}"
fi
AC_SUBST(PACKAGE_DATA_DIR)
2002-12-02 15:39:26 -08:00
#AM_CHECK_DOXYGEN()
2002-12-02 15:39:26 -08:00
AC_OUTPUT([
Makefile
2003-05-08 00:59:58 -07:00
eet.pc
eet.c
src/Makefile
src/lib/Makefile
src/bin/Makefile
README
eet.spec
debian/changelog
2002-12-02 15:39:26 -08:00
])
#####################################################################
## Info
echo
echo
echo
echo "------------------------------------------------------------------------"
echo "$PACKAGE $VERSION"
echo "------------------------------------------------------------------------"
echo
echo "Configuration Options Summary:"
echo
#echo " Build documentation..: $BUILD_DOCS"
#echo
echo " Compilation..........: make"
echo
echo " Installation.........: make install"
echo
echo " prefix.............: $prefix"
#echo " documentation..: $datadir/$PACKAGE/doc"
echo