X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=eglib%2Fconfigure.ac;h=d3919e3003aeed771ac080bafd2759123bfa27b9;hb=3d53571ffdc2a24f196012c2da962c59a31483d8;hp=347375d477232a1224158ded1918c30865698670;hpb=fc4b07f20f9e79fe99d4b520bb5ff8b5e80b10f6;p=mono.git diff --git a/eglib/configure.ac b/eglib/configure.ac index 347375d4772..d3919e3003a 100644 --- a/eglib/configure.ac +++ b/eglib/configure.ac @@ -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 { } 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 targte_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,13 @@ 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(strlcpy) + +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))" @@ -81,4 +82,4 @@ Makefile src/Makefile src/eglib-config.h test/Makefile -]) \ No newline at end of file +])