summaryrefslogtreecommitdiff
path: root/m4/optimizations.m4
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2007-03-29 18:23:36 +0000
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2007-03-29 18:23:36 +0000
commit170641f69a86cdd740df4c1ec74194ef84dab6a0 (patch)
tree06fe02512fdee953cce1c56d73257a4c714c64ac /m4/optimizations.m4
parent6afd42f5c2fc8272cd1308584c6f794f91a07c40 (diff)
downloadxine-lib-170641f69a86cdd740df4c1ec74194ef84dab6a0.tar.gz
xine-lib-170641f69a86cdd740df4c1ec74194ef84dab6a0.tar.bz2
Replace obsolete macros (processing done by autoupdate).
Some tests were rearranged (AC_TRY_LINK moved out of AC_TRY_RUN cross-compilation case, with arrangements to maintain the semantics) to avoid autoupdate errors. Factored out common (duplicate) code in aa.m4. Tested with autoconf 2.61; needs testing with 2.60. CVS patchset: 8767 CVS date: 2007/03/29 18:23:36
Diffstat (limited to 'm4/optimizations.m4')
-rw-r--r--m4/optimizations.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/optimizations.m4 b/m4/optimizations.m4
index 48ded848b..a1f2f2f00 100644
--- a/m4/optimizations.m4
+++ b/m4/optimizations.m4
@@ -53,7 +53,7 @@ AC_DEFUN([AC_OPTIMIZATIONS], [
AC_MSG_CHECKING(for sane -Wpointer-arith)
SAVE_CFLAGS="$CFLAGS"
CFLAGS="-O2 -Wpointer-arith -Werror $CFLAGS"
- AC_TRY_COMPILE([#include <string.h>],[int a; memset(&a, 0, sizeof(int));],
+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <string.h>]], [[int a; memset(&a, 0, sizeof(int));]])],
[AC_MSG_RESULT(yes); CFLAGS="-Wpointer-arith $SAVE_CFLAGS"],
[AC_MSG_RESULT(no); CFLAGS="$SAVE_CFLAGS"]);