summaryrefslogtreecommitdiff
path: root/m4/ioctl_request.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/ioctl_request.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/ioctl_request.m4')
-rw-r--r--m4/ioctl_request.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/ioctl_request.m4 b/m4/ioctl_request.m4
index e5ea6d346..c6d12258e 100644
--- a/m4/ioctl_request.m4
+++ b/m4/ioctl_request.m4
@@ -38,10 +38,10 @@ AC_DEFUN([AC_IOCTL_REQUEST], [
ac_cv_ioctl_request,
[for ac_ioctl_request_type in "unsigned long" "int"
do
- AC_TRY_LINK([
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([[
#include <sys/ioctl.h>
int ioctl(int fd, $ac_ioctl_request_type request, ...);
- ], [], [ac_cv_ioctl_request=$ac_ioctl_request_type])
+ ]], [[]])],[ac_cv_ioctl_request=$ac_ioctl_request_type],[])
done])
if test "x$ac_cv_ioctl_request" = "x"; then