vlc | branch: master | Jean-Baptiste Kempf <[email protected]> | Mon May 16 11:27:26 2016 +0200| [76237fed317425bc8f70350fac8ed2149ccdd0d5] | committer: Jean-Baptiste Kempf
configure: reorder by family of OS > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=76237fed317425bc8f70350fac8ed2149ccdd0d5 --- configure.ac | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index cb57bb6..9d3f658 100644 --- a/configure.ac +++ b/configure.ac @@ -317,16 +317,18 @@ AS_IF([test "${SYS}" = "mingw32"],[ ]) AC_DEFINE_UNQUOTED(VLC_WINSTORE_APP, ${vlc_winstore_app}, [Define to 1 if you want to build for Windows Store apps]) -AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin") AM_CONDITIONAL(HAVE_LINUX, test "${SYS}" = "linux") AM_CONDITIONAL(HAVE_OS2, test "${SYS}" = "os2") -AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32") -AM_CONDITIONAL(HAVE_WIN64, test "${HAVE_WIN64}" = "1") dnl Only used for the packaging -AM_CONDITIONAL([HAVE_WINSTORE], [test "$vlc_winstore_app" = "1"]) + +AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin") AM_CONDITIONAL(HAVE_IOS, test "${HAVE_IOS}" = "1") AM_CONDITIONAL(HAVE_OSX, test "${HAVE_OSX}" = "1") AM_CONDITIONAL(HAVE_TVOS, test "${HAVE_TVOS}" = "1") +AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32") +AM_CONDITIONAL(HAVE_WIN64, test "${HAVE_WIN64}" = "1") dnl Only used for the packaging +AM_CONDITIONAL([HAVE_WINSTORE], [test "$vlc_winstore_app" = "1"]) + dnl dnl Sadly autoconf does not think about testing foo.exe when ask to test dnl for program foo on win32 _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
