[mutter/wip/lantw/wayland-on-freebsd: 4/5] configure: Don't declare functions in AC_TRY_LINK and AC_TRY_COMPILE
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/lantw/wayland-on-freebsd: 4/5] configure: Don't declare functions in AC_TRY_LINK and AC_TRY_COMPILE
- Date: Wed, 21 Mar 2018 13:15:40 +0000 (UTC)
commit 4e6114b14d2c850cf352691505b3802a556eb125
Author: Ting-Wei Lan <lantw src gnome org>
Date: Sat Jan 20 17:37:24 2018 +0800
configure: Don't declare functions in AC_TRY_LINK and AC_TRY_COMPILE
https://bugzilla.gnome.org/show_bug.cgi?id=792717
clutter/configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/clutter/configure.ac b/clutter/configure.ac
index 5474fa093..6ad5d9285 100644
--- a/clutter/configure.ac
+++ b/clutter/configure.ac
@@ -151,7 +151,7 @@ AC_ARG_ENABLE([Bsymbolic],
saved_LDFLAGS="${LDFLAGS}"
AC_MSG_CHECKING([for -Bsymbolic-functions linker flag])
LDFLAGS=-Wl,-Bsymbolic-functions
- AC_TRY_LINK([], [int main (void) { return 0; }],
+ AC_TRY_LINK([], [return 0],
[
AC_MSG_RESULT([yes])
enable_Bsymbolic=yes
@@ -172,7 +172,7 @@ dnl on other compilers, check if we can do -fvisibility=hidden
SAVED_CFLAGS="${CFLAGS}"
CFLAGS="-fvisibility=hidden"
AC_MSG_CHECKING([for -fvisibility=hidden compiler flag])
-AC_TRY_COMPILE([], [int main (void) { return 0; }],
+AC_TRY_COMPILE([], [return 0],
AC_MSG_RESULT(yes)
enable_fvisibility_hidden=yes,
AC_MSG_RESULT(no)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]