X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=eglib%2Fconfigure.ac;h=a32caf55cfa8b84203c3805c7bd8cc91539f190a;hb=110b77b72f847699c19bb0d9ff0f9c771d8318b7;hp=347375d477232a1224158ded1918c30865698670;hpb=cccbf6a4b7152c24fafc319e77060a4723a8560e;p=mono.git diff --git a/eglib/configure.ac b/eglib/configure.ac index 347375d4772..a32caf55cfa 100644 --- a/eglib/configure.ac +++ b/eglib/configure.ac @@ -2,25 +2,21 @@ AC_INIT(README) AC_CANONICAL_SYSTEM AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(eglib,0.1) +AM_INIT_AUTOMAKE(eglib,0.3) AM_MAINTAINER_MODE AC_PROG_CC AM_PROG_LIBTOOL -CFLAGS='-g -O0' -AC_SUBST(CFLAGS) - +CFLAGS="$CFLAGS -g -O0 -D_GNU_SOURCE" GNUC_PRETTY= GNUC_UNUSED= -BREAKPOINT= +BREAKPOINT="G_STMT_START { raise (SIGTRAP); } G_STMT_END" if test x$GCC = xyes; then - GNUC_PRETTY=__PRETTY_FUNCTION__ GNUC_UNUSED='__attribute__((__unused__))' GNUC_NORETURN='__attribute__((__noreturn__))' - case $target in - i[3456]86-*) - BREAKPOINT="G_STMT_START { __asm__ ("int $03"); } G_STMT_END" - ;; + echo target_cpu=$target_cpu + case $target_cpu in + i*86) BREAKPOINT="G_STMT_START { __asm__ (\"int \$03\"); } G_STMT_END" ;; esac fi AC_SUBST(GNUC_PRETTY) @@ -28,6 +24,7 @@ AC_SUBST(GNUC_UNUSED) AC_SUBST(GNUC_NORETURN) AC_SUBST(BREAKPOINT) +AM_CONDITIONAL(CROSS_COMPILING, [test x$cross_compiling = xyes]) AC_C_BIGENDIAN([ORDER=G_BIG_ENDIAN],[ORDER=G_LITTLE_ENDIAN]) AC_SUBST(ORDER) @@ -44,12 +41,30 @@ case $host in ;; esac +case $target in +arm*-darwin*) + CFLAGS="$CFLAGS -U_FORTIFY_SOURCE" + ;; +esac + +AC_SUBST(CFLAGS) AC_SUBST(PATHSEP) AC_SUBST(SEARCHSEP) AC_SUBST(OS) +AM_CONDITIONAL(PLATFORM_WIN32, test x$OS = xWIN32) AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(void *) +AC_CHECK_FUNCS(strndup strlcpy getpwent_r strtok_r rewinddir) +AC_CHECK_LIB(iconv, libiconv_open, LIBS="$LIBS -liconv") +old_ldflags="${LDFLAGS}" +LDFLAGS="${LDFLAGS} -Wl,-export-dynamic" +AC_TRY_LINK(, [int i;], found_export_dynamic=yes, found_export_dynamic=no) +if test $found_export_dynamic = no; then + LDFLAGS="${old_ldflags}" +fi + +AC_CHECK_HEADERS(getopt.h sys/time.h sys/wait.h pwd.h langinfo.h iconv.h) if test $ac_cv_sizeof_void_p != $ac_cv_sizeof_int; then GPOINTER_TO_INT="((gint)(long) (ptr))" @@ -68,6 +83,35 @@ else GSIZE_FORMAT='"u"' G_GUINT64_FORMAT='"llu"' fi + +AC_PATH_PROG(PKG_CONFIG, pkg-config, no) +if test "x$PKG_CONFIG" = "xno"; then + AC_MSG_ERROR([You need to install pkg-config]) +fi + +pkg_config_path= +AC_ARG_WITH(crosspkgdir, [ --with-crosspkgdir=/path/to/pkg-config/dir Change pkg-config dir to custom dir], + if test x$with_crosspkgdir = "x"; then + if test -s $PKG_CONFIG_PATH; then + pkg_config_path=$PKG_CONFIG_PATH + fi + else + pkg_config_path=$with_crosspkgdir + PKG_CONFIG_PATH=$pkg_config_path + export PKG_CONFIG_PATH + fi +) + +dnl +dnl No, you can not replace the call below with a pkg.m4 macro +dnl +if $PKG_CONFIG --atleast-version=$GLIB_REQUIRED_VERSION glib-2.0; then + have_glib=true; +else + have_glib=false; +fi +AM_CONDITIONAL(HAVE_GLIB, $have_glib) + AC_SUBST(GPOINTER_TO_INT) AC_SUBST(GPOINTER_TO_UINT) AC_SUBST(GINT_TO_POINTER) @@ -81,4 +125,4 @@ Makefile src/Makefile src/eglib-config.h test/Makefile -]) \ No newline at end of file +])