aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m414
1 files changed, 6 insertions, 8 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index ae14411f6..9ab684877 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -71,14 +71,12 @@ AC_DEFUN([TOR_CHECK_LDFLAGS], [
CFLAGS="$CFLAGS -pedantic -Werror"
LDFLAGS="$LDFLAGS $2 $1"
LIBS="$LIBS $3"
- AC_RUN_IFELSE([
-#include <stdio.h>
-int main(int argc, char **argv) { fputs("", stdout); return 0; }],
- [AS_VAR_SET(VAR,yes)],
- [AS_VAR_SET(VAR,no)],
- [AC_TRY_LINK([], [return 0;],
- [AS_VAR_SET(VAR,yes)],
- [AS_VAR_SET(VAR,no)])])
+ AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdio.h>], [fputs("", stdout)])],
+ [AS_VAR_SET(VAR,yes)],
+ [AS_VAR_SET(VAR,no)],
+ [AC_TRY_LINK([], [return 0;],
+ [AS_VAR_SET(VAR,yes)],
+ [AS_VAR_SET(VAR,no)])])
CFLAGS="$tor_saved_CFLAGS"
LDFLAGS="$tor_saved_LDFLAGS"
LIBS="$tor_saved_LIBS"