summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2021-09-16 19:56:24 +0200
committerGravatar Nikias Bassen2021-09-16 19:56:24 +0200
commit1d90f6accd40e6801559d38386d71d3597f36d3b (patch)
tree82ca04934e750bc06773c77710270d46a798a72b
parente01742968c13efb969a00ddeb0af1b7c92eab900 (diff)
downloadlibirecovery-1d90f6accd40e6801559d38386d71d3597f36d3b.tar.gz
libirecovery-1d90f6accd40e6801559d38386d71d3597f36d3b.tar.bz2
configure: Remove explicit msvcrt linkage for Windows
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index d571f48..518366c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,14 +66,14 @@ case ${host_os} in
66 ;; 66 ;;
67 mingw32*) 67 mingw32*)
68 AC_MSG_RESULT([${host_os}]) 68 AC_MSG_RESULT([${host_os}])
69 GLOBAL_LDFLAGS+=" -static-libgcc -lkernel32 -lmsvcrt -lsetupapi" 69 GLOBAL_LDFLAGS+=" -static-libgcc -lkernel32 -lsetupapi"
70 win32=true 70 win32=true
71 ;; 71 ;;
72 cygwin*) 72 cygwin*)
73 AC_MSG_RESULT([${host_os}]) 73 AC_MSG_RESULT([${host_os}])
74 CC=gcc-3 74 CC=gcc-3
75 CFLAGS+=" -mno-cygwin" 75 CFLAGS+=" -mno-cygwin"
76 GLOBAL_LDFLAGS+=" -static-libgcc -lkernel32 -lmsvcrt -lsetupapi" 76 GLOBAL_LDFLAGS+=" -static-libgcc -lkernel32 -lsetupapi"
77 win32=true 77 win32=true
78 ;; 78 ;;
79 *) 79 *)