2008-01-16 Everaldo Canuto <ecanuto@novell.com>
[mono.git] / eglib / configure.ac
index a016d731763ee50090f82196091620174e73713b..cf2e80ca75f571233156587330a772091a827177 100644 (file)
@@ -7,20 +7,17 @@ AM_MAINTAINER_MODE
 
 AC_PROG_CC
 AM_PROG_LIBTOOL
-CFLAGS='-g -O0'
+CFLAGS='-g -O0 -D_GNU_SOURCE'
 AC_SUBST(CFLAGS)
-
 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)
@@ -47,9 +44,20 @@ esac
 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)
+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)
 
 if test $ac_cv_sizeof_void_p != $ac_cv_sizeof_int; then
    GPOINTER_TO_INT="((gint)(long) (ptr))"
@@ -58,6 +66,7 @@ if test $ac_cv_sizeof_void_p != $ac_cv_sizeof_int; then
    GUINT_TO_POINTER="((gpointer)(gulong) (v))"
    GSIZE="long"
    GSIZE_FORMAT='"lu"'
+   G_GUINT64_FORMAT='"lu"'
 else
    GPOINTER_TO_INT="((gint) (ptr))"
    GPOINTER_TO_UINT="((guint) (ptr))"
@@ -65,17 +74,24 @@ else
    GUINT_TO_POINTER="((gpointer) (v))"
    GSIZE="int"
    GSIZE_FORMAT='"u"'
+   G_GUINT64_FORMAT='"llu"'
 fi
+
+PKG_CHECK_MODULES(GLIB, glib-2.0,
+       [AM_CONDITIONAL(HAVE_GLIB, test x = x)],
+       [AM_CONDITIONAL(HAVE_GLIB, test x = y)]
+       )
 AC_SUBST(GPOINTER_TO_INT)
 AC_SUBST(GPOINTER_TO_UINT)
 AC_SUBST(GINT_TO_POINTER)
 AC_SUBST(GUINT_TO_POINTER)
 AC_SUBST(GSIZE)
 AC_SUBST(GSIZE_FORMAT)
+AC_SUBST(G_GUINT64_FORMAT)
 
 AC_OUTPUT([
 Makefile
 src/Makefile
 src/eglib-config.h
 test/Makefile
-])
\ No newline at end of file
+])