Commit c395d1f9ffd5f7b29dfff4395029e045658735a2
1 parent
8ffe1bd5
Exists in
master
and in
3 other branches
Fixing MSYS2 builds.
Showing
2 changed files
with
15 additions
and
10 deletions
Show diff stats
configure.ac
... | ... | @@ -75,7 +75,7 @@ dnl --------------------------------------------------------------------------- |
75 | 75 | DLLPREFIX="lib" |
76 | 76 | |
77 | 77 | case "$host" in |
78 | - *-mingw32) | |
78 | + *-mingw32|*-pc-msys) | |
79 | 79 | app_cv_osname="windows" |
80 | 80 | CFLAGS="$CFLAGS -pthread -D_WIN32_WINNT=0x0600" |
81 | 81 | LIBS="$LIBS -lws2_32 -lwtsapi32 -lcomdlg32" |
... | ... | @@ -201,7 +201,7 @@ AC_CHECK_HEADER(libintl.h, [ |
201 | 201 | AC_DEFINE(HAVE_LIBINTL, 1) |
202 | 202 | |
203 | 203 | case "$host" in |
204 | - *-mingw32) | |
204 | + *-mingw32|*-pc-msys) | |
205 | 205 | INTL_LIBS="-lintl" |
206 | 206 | ;; |
207 | 207 | |
... | ... | @@ -380,11 +380,11 @@ if test "$app_cv_enable_crl_check" == "yes"; then |
380 | 380 | AC_DEFINE(SSL_ENABLE_CRL_CHECK) |
381 | 381 | fi |
382 | 382 | |
383 | -AC_ARG_WITH([default-crl-url], | |
384 | - [AS_HELP_STRING([--with-default-crl-url], [Set lib3270 default crl url])], | |
385 | -[ | |
386 | - AC_DEFINE_UNQUOTED(SSL_DEFAULT_CRL_URL,"$withval") | |
387 | -],[ | |
383 | +AC_ARG_WITH([default-crl-url], | |
384 | + [AS_HELP_STRING([--with-default-crl-url], [Set lib3270 default crl url])], | |
385 | +[ | |
386 | + AC_DEFINE_UNQUOTED(SSL_DEFAULT_CRL_URL,"$withval") | |
387 | +],[ | |
388 | 388 | AC_MSG_NOTICE(No default crl url) |
389 | 389 | ]) |
390 | 390 | |
... | ... | @@ -447,7 +447,7 @@ AC_ARG_WITH([inet-ntop], [AS_HELP_STRING([--with-inet-ntop], [Assume that inet_n |
447 | 447 | if test "$app_cv_inet_ntop" == "auto"; then |
448 | 448 | |
449 | 449 | case "$host" in |
450 | - *-mingw32) | |
450 | + *-mingw32|*-pc-msys) | |
451 | 451 | app_cv_inet_ntop="yes" |
452 | 452 | ;; |
453 | 453 | ... | ... |
lib3270.cbp
... | ... | @@ -39,6 +39,7 @@ |
39 | 39 | <Unit filename="LICENCA" /> |
40 | 40 | <Unit filename="LICENSE" /> |
41 | 41 | <Unit filename="README.md" /> |
42 | + <Unit filename="configure.ac" /> | |
42 | 43 | <Unit filename="gitsync.sh" /> |
43 | 44 | <Unit filename="src/include/3270ds.h" /> |
44 | 45 | <Unit filename="src/include/actionsc.h" /> |
... | ... | @@ -111,7 +112,9 @@ |
111 | 112 | <Unit filename="src/lib3270++/private.h" /> |
112 | 113 | <Unit filename="src/lib3270++/session.cc" /> |
113 | 114 | <Unit filename="src/lib3270++/testprogram/testprogram.cc" /> |
114 | - <Unit filename="src/lib3270++/windows/resources.rc" /> | |
115 | + <Unit filename="src/lib3270++/windows/resources.rc"> | |
116 | + <Option compilerVar="WINDRES" /> | |
117 | + </Unit> | |
115 | 118 | <Unit filename="src/lib3270/actions.c"> |
116 | 119 | <Option compilerVar="CC" /> |
117 | 120 | </Unit> |
... | ... | @@ -254,7 +257,9 @@ |
254 | 257 | <Unit filename="src/lib3270/windows/event_dispatcher.c"> |
255 | 258 | <Option compilerVar="CC" /> |
256 | 259 | </Unit> |
257 | - <Unit filename="src/lib3270/windows/resources.rc" /> | |
260 | + <Unit filename="src/lib3270/windows/resources.rc"> | |
261 | + <Option compilerVar="WINDRES" /> | |
262 | + </Unit> | |
258 | 263 | <Unit filename="src/lib3270/windows/resources.rc.in" /> |
259 | 264 | <Unit filename="src/lib3270/windows/util.c"> |
260 | 265 | <Option compilerVar="CC" /> | ... | ... |