2 # Copyright 2012 Xamarin Inc
5 [http://bugzilla.xamarin.com/enter_bug.cgi?classification=Mono])
7 AC_CONFIG_SRCDIR([README])
8 AC_CONFIG_MACRO_DIR([m4])
12 AM_INIT_AUTOMAKE([1.9 dist-bzip2 tar-ustar no-dist-gzip foreign])
13 AM_CONFIG_HEADER([config.h])
18 # Use dolt (http://dolt.freedesktop.org/) instead of libtool for building.
22 BREAKPOINT="G_STMT_START { raise (SIGTRAP); } G_STMT_END"
23 if test x$GCC = xyes; then
24 GNUC_UNUSED='__attribute__((__unused__))'
25 GNUC_NORETURN='__attribute__((__noreturn__))'
27 i*86|x86_64) BREAKPOINT="G_STMT_START { __asm__ (\"int \$03\"); } G_STMT_END" ;;
32 AC_SUBST(GNUC_NORETURN)
35 # We use a separate variable to pass down CPPFLAGS and CFLAGS from the main mono
36 # configure, because of autoconf brokeness
37 if test "x$CPPFLAGS_FOR_EGLIB" != "x"; then
38 CPPFLAGS=$CPPFLAGS_FOR_EGLIB
40 if test "x$CFLAGS_FOR_EGLIB" != "x"; then
41 CFLAGS=$CFLAGS_FOR_EGLIB
44 CFLAGS="$CFLAGS -g -D_GNU_SOURCE"
46 AM_CONDITIONAL(CROSS_COMPILING, [test x$cross_compiling = xyes])
47 AC_C_BIGENDIAN([ORDER=G_BIG_ENDIAN],[ORDER=G_LITTLE_ENDIAN])
53 *-*-msdos* | *-*-go32* | *-*-mingw32* | *-*-cygwin* | *-*-windows*)
68 AC_DEFINE(PLATFORM_ANDROID,1,[Targeting the Android platform])
84 CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS"
90 CFLAGS="$CFLAGS -U_FORTIFY_SOURCE"
96 CFLAGS="$CFLAGS -pthread"
97 LDFLAGS="$LDFLAGS -pthread"
107 AM_CONDITIONAL(HOST_WIN32, test x$OS = xWIN32)
108 AM_CONDITIONAL(TARGET_WIN32, test x$OS = xWIN32)
109 AM_CONDITIONAL(PLATFORM_DARWIN, test x$platform_darwin = xyes)
110 AM_CONDITIONAL(PLATFORM_ANDROID, test x$platform_android = xyes)
113 AC_CHECK_SIZEOF(void *)
114 AC_CHECK_SIZEOF(long)
115 AC_CHECK_SIZEOF(long long)
116 AC_CHECK_FUNCS(strndup strlcpy stpcpy getpwuid_r strtok_r rewinddir vasprintf)
117 AM_CONDITIONAL(NEED_VASPRINTF, test x$have_vasprintf = x )
119 AC_SEARCH_LIBS(sqrtf, m)
121 # nanosleep may not be part of libc, also search it in other libraries
122 AC_SEARCH_LIBS(nanosleep, rt)
124 AC_SEARCH_LIBS(dlopen, dl)
125 old_ldflags="${LDFLAGS}"
126 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
127 AC_TRY_LINK(, [int i;], found_export_dynamic=yes, found_export_dynamic=no)
128 if test $found_export_dynamic = no; then
129 LDFLAGS="${old_ldflags}"
132 AC_MSG_CHECKING(for varargs macros)
134 int foo (int i, int j);
135 #define bar(...) foo (1, __VA_ARGS__)
139 ],have_iso_varargs=yes,have_iso_varargs=no)
140 AC_MSG_RESULT($have_iso_varargs)
142 if test "x$have_iso_varargs" = "xyes"; then
145 AC_SUBST(G_HAVE_ISO_VARARGS)
147 AC_CHECK_HEADERS(getopt.h sys/time.h sys/wait.h pwd.h langinfo.h iconv.h localcharset.h sys/types.h)
148 AC_CHECK_HEADER(alloca.h, [HAVE_ALLOCA_H=1], [HAVE_ALLOCA_H=0])
149 AC_SUBST(HAVE_ALLOCA_H)
151 if test $ac_cv_sizeof_void_p = $ac_cv_sizeof_int; then
152 GPOINTER_TO_INT="((gint) (ptr))"
153 GPOINTER_TO_UINT="((guint) (ptr))"
154 GINT_TO_POINTER="((gpointer) (v))"
155 GUINT_TO_POINTER="((gpointer) (v))"
158 G_GUINT64_FORMAT='"llu"'
159 G_GINT64_FORMAT='"lld"'
160 G_GUINT32_FORMAT='"lu"'
161 G_GINT32_FORMAT='"ld"'
162 elif test $ac_cv_sizeof_void_p = $ac_cv_sizeof_long; then
163 GPOINTER_TO_INT="((gint)(long) (ptr))"
164 GPOINTER_TO_UINT="((guint)(long) (ptr))"
165 GINT_TO_POINTER="((gpointer)(glong) (v))"
166 GUINT_TO_POINTER="((gpointer)(gulong) (v))"
169 G_GUINT64_FORMAT='"lu"'
170 G_GINT64_FORMAT='"ld"'
171 G_GUINT32_FORMAT='"u"'
172 G_GINT32_FORMAT='"d"'
173 elif test $ac_cv_sizeof_void_p = $ac_cv_sizeof_long_long; then
174 GPOINTER_TO_INT="((gint)(long long) (ptr))"
175 GPOINTER_TO_UINT="((guint)(unsigned long long) (ptr))"
176 GINT_TO_POINTER="((gpointer)(long long) (v))"
177 GUINT_TO_POINTER="((gpointer)(unsigned long long) (v))"
179 GSIZE_FORMAT='"I64u"'
180 G_GUINT64_FORMAT='"I64u"'
181 G_GINT64_FORMAT='"I64i"'
182 G_GUINT32_FORMAT='"I32u"'
183 G_GINT32_FORMAT='"I32i"'
185 AC_MSG_ERROR([unsupported pointer size])
188 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
191 AC_ARG_WITH(crosspkgdir, [ --with-crosspkgdir=/path/to/pkg-config/dir Change pkg-config dir to custom dir],
192 if test x$with_crosspkgdir = "x"; then
193 if test -s $PKG_CONFIG_PATH; then
194 pkg_config_path=$PKG_CONFIG_PATH
197 pkg_config_path=$with_crosspkgdir
198 PKG_CONFIG_PATH=$pkg_config_path
199 export PKG_CONFIG_PATH
204 dnl No, you can not replace the call below with a pkg.m4 macro
207 if test "x$PKG_CONFIG" != "xno"; then
208 if $PKG_CONFIG --atleast-version=$GLIB_REQUIRED_VERSION glib-2.0; then
214 AM_CONDITIONAL(HAVE_GLIB, $have_glib)
216 AC_ARG_ENABLE(quiet-build, [ --enable-quiet-build Enable quiet runtime build (on by default)], enable_quiet_build=$enableval, enable_quiet_build=yes)
217 AC_SUBST(GPOINTER_TO_INT)
218 AC_SUBST(GPOINTER_TO_UINT)
219 AC_SUBST(GINT_TO_POINTER)
220 AC_SUBST(GUINT_TO_POINTER)
222 AC_SUBST(GSIZE_FORMAT)
223 AC_SUBST(G_GUINT64_FORMAT)
224 AC_SUBST(G_GINT64_FORMAT)
225 AC_SUBST(G_GUINT32_FORMAT)
226 AC_SUBST(G_GINT32_FORMAT)
228 if test x$enable_quiet_build = xyes; then
229 AC_CONFIG_COMMANDS([quiet],
230 [ for i in `find mono src test -name Makefile`; do
231 if [ grep -q 'generated by automake' $i ]; then
232 $srcdir/../scripts/patch-quiet.sh $i;
236 AC_CONFIG_COMMANDS([quiet-libtool], [sed -e 's/$echo "copying selected/$show "copying selected/g' < libtool > libtool.tmp && mv libtool.tmp libtool && chmod a+x libtool; sed -e 's/$ECHO "copying selected/# "copying selected/g' < libtool > libtool.tmp && mv libtool.tmp libtool && chmod a+x libtool])