diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-12 17:28:20 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-12 17:28:20 -0400 |
commit | 525df80285aa9896df58be826eff17016a0077ab (patch) | |
tree | 6346fcce96c225d78b620a401fee1c65356910b7 /m4 | |
parent | 3146f2b79aacbfd102c6883ad15108350c18109a (diff) | |
download | xine-lib-525df80285aa9896df58be826eff17016a0077ab.tar.gz xine-lib-525df80285aa9896df58be826eff17016a0077ab.tar.bz2 |
Style consistency fixes. No functional change.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/directx.m4 | 4 | ||||
-rw-r--r-- | m4/ioctl_request.m4 | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/m4/directx.m4 b/m4/directx.m4 index fc8e22e16..4417023ee 100644 --- a/m4/directx.m4 +++ b/m4/directx.m4 @@ -30,8 +30,8 @@ AC_DEFUN([AM_PATH_DIRECTX], [ #include <dsound.h>]], [[DirectDrawCreate(0, NULL, 0); DirectsoundCreate(0, NULL, 0)]])], [have_directx=yes], [have_directx=no]) - CPPFLAGS=$ac_save_CPPFLAGS - LIBS=$ac_save_LIBS + CPPFLAGS="$ac_save_CPPFLAGS" + LIBS="$ac_save_LIBS" AC_LANG_POP([C]) AC_SUBST(DIRECTX_CPPFLAGS) diff --git a/m4/ioctl_request.m4 b/m4/ioctl_request.m4 index b90559592..8ded72504 100644 --- a/m4/ioctl_request.m4 +++ b/m4/ioctl_request.m4 @@ -40,7 +40,7 @@ AC_DEFUN([AC_IOCTL_REQUEST], [ int ioctl(int fd, $ac_ioctl_request_type request, ...);]], [[]])], [ac_cv_ioctl_request=$ac_ioctl_request_type], []) done - if test "x$ac_cv_ioctl_request" = "x"; then + if test x"$ac_cv_ioctl_request" = x""; then AC_MSG_ERROR([Unable to determine the type for ioctl() request parameter]) fi ]) |