mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-03-12 05:15:16 +01:00
build: Move Windows OS detection to the OS features section
This was placed here to make use of the same AS_CASE, but it does not really fit with the section. Move it to the more appropriate place, and detangle the AS_CASE.
This commit is contained in:
parent
ccbfd1c241
commit
8b7a4d9d3b
13
configure.ac
13
configure.ac
@ -55,6 +55,14 @@ int symbol(void) { return 0; }
|
||||
AM_CONDITIONAL([HAVE_LINKER_VERSION_SCRIPT],
|
||||
[test "x$libbsd_cv_version_script" = "xyes"])
|
||||
|
||||
is_windows=no
|
||||
AS_CASE([$host_os],
|
||||
[mingw*], [
|
||||
is_windows=yes
|
||||
],
|
||||
)
|
||||
AM_CONDITIONAL([OS_WINDOWS], [test "x$is_windows" = "xyes"])
|
||||
|
||||
# Checks for programs.
|
||||
AC_CHECK_TOOL([OBJDUMP], [objdump])
|
||||
AC_PROG_CC
|
||||
@ -143,7 +151,6 @@ LIBS="$saved_LIBS"
|
||||
AM_CONDITIONAL([NEED_TRANSPARENT_LIBMD],
|
||||
[test "x$need_transparent_libmd" = "xyes"])
|
||||
|
||||
is_windows=no
|
||||
AS_CASE([$host_os],
|
||||
[*-gnu*], [
|
||||
# In old glibc versions (< 2.17) clock_gettime() is in librt.
|
||||
@ -155,11 +162,7 @@ AS_CASE([$host_os],
|
||||
])
|
||||
LIBS="$saved_LIBS"
|
||||
],
|
||||
[mingw*], [
|
||||
is_windows=yes
|
||||
],
|
||||
)
|
||||
AM_CONDITIONAL([OS_WINDOWS], [test "x$is_windows" = "xyes"])
|
||||
|
||||
# Checks for header files.
|
||||
AC_CHECK_HEADERS([\
|
||||
|
Loading…
x
Reference in New Issue
Block a user