=?UTF-8?Q?J=C3=B3zef=20Kucia=20?=: configure: Sort AC_ARG_WITH() calls.

Alexandre Julliard julliard at winehq.org
Thu Mar 1 13:34:44 CST 2018


Module: wine
Branch: master
Commit: 6ae777319e8bc33fd8d0ba7a12f6eb13bf938761
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=6ae777319e8bc33fd8d0ba7a12f6eb13bf938761

Author: Józef Kucia <jkucia at codeweavers.com>
Date:   Thu Mar  1 16:37:06 2018 +0100

configure: Sort AC_ARG_WITH() calls.

Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 configure    | 16 ++++++++--------
 configure.ac |  2 +-
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/configure b/configure
index 20be8b9..28e678e 100755
--- a/configure
+++ b/configure
@@ -860,9 +860,9 @@ with_png
 with_pthread
 with_pulse
 with_sane
+with_sdl
 with_tiff
 with_udev
-with_sdl
 with_v4l
 with_vulkan
 with_xcomposite
@@ -2436,9 +2436,9 @@ Optional Packages:
   --without-pthread       do not use the pthread library
   --without-pulse         do not use PulseAudio sound support
   --without-sane          do not use SANE (scanner support)
+  --without-sdl           do not use SDL
   --without-tiff          do not use TIFF
   --without-udev          do not use udev (plug and play support)
-  --without-sdl           do not use SDL
   --without-v4l           do not use v4l1 (v4l support)
   --without-vulkan        do not use Vulkan
   --without-xcomposite    do not use the Xcomposite extension
@@ -3737,6 +3737,12 @@ if test "${with_sane+set}" = set; then :
 fi
 
 
+# Check whether --with-sdl was given.
+if test "${with_sdl+set}" = set; then :
+  withval=$with_sdl;
+fi
+
+
 # Check whether --with-tiff was given.
 if test "${with_tiff+set}" = set; then :
   withval=$with_tiff;
@@ -3749,12 +3755,6 @@ if test "${with_udev+set}" = set; then :
 fi
 
 
-# Check whether --with-sdl was given.
-if test "${with_sdl+set}" = set; then :
-  withval=$with_sdl;
-fi
-
-
 # Check whether --with-v4l was given.
 if test "${with_v4l+set}" = set; then :
   withval=$with_v4l;
diff --git a/configure.ac b/configure.ac
index 3b93966..2695c67 100644
--- a/configure.ac
+++ b/configure.ac
@@ -77,9 +77,9 @@ AC_ARG_WITH(pthread,   AS_HELP_STRING([--without-pthread],[do not use the pthrea
             [if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi])
 AC_ARG_WITH(pulse,     AS_HELP_STRING([--without-pulse],[do not use PulseAudio sound support]))
 AC_ARG_WITH(sane,      AS_HELP_STRING([--without-sane],[do not use SANE (scanner support)]))
+AC_ARG_WITH(sdl,       AS_HELP_STRING([--without-sdl],[do not use SDL]))
 AC_ARG_WITH(tiff,      AS_HELP_STRING([--without-tiff],[do not use TIFF]))
 AC_ARG_WITH(udev,      AS_HELP_STRING([--without-udev],[do not use udev (plug and play support)]))
-AC_ARG_WITH(sdl,       AS_HELP_STRING([--without-sdl],[do not use SDL]))
 AC_ARG_WITH(v4l,       AS_HELP_STRING([--without-v4l],[do not use v4l1 (v4l support)]))
 AC_ARG_WITH(vulkan,    AS_HELP_STRING([--without-vulkan],[do not use Vulkan]))
 AC_ARG_WITH(xcomposite,AS_HELP_STRING([--without-xcomposite],[do not use the Xcomposite extension]),




More information about the wine-cvs mailing list