diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2018-12-07 11:14:46 +0100 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2018-12-07 12:39:37 +0100 |
commit | 4aeb3e20c95c53b9a856a9269d691cbc275839a4 (patch) | |
tree | f779f344933f3f1b3f898fbc4e56ac031ac3d2b0 | |
parent | 6206e7e944b60cd3fd4a8e655cedc77146e9653d (diff) |
autotools: evil: add needed -lmsvcr100 library flag for _create/_free_locale()
Since commit 33b8e5157a25b73a0729055ecd22b17e97781e11 we need these two
new symbols on our windows cross build. At least on my mingw system they
are not showing up by default and I need to ensure we are linking
against msvcr100 to get them or I get undefined references during
linking.
Reviewed-by: Marcel Hollerbach <marcel-hollerbach@t-online.de>
Differential Revision: https://phab.enlightenment.org/D7428
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4467f0072d..576a1afc71 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -804,7 +804,7 @@ EFL_SELECT_WINDOWS_VERSION | |||
804 | 804 | ||
805 | ### Checks for libraries | 805 | ### Checks for libraries |
806 | 806 | ||
807 | EFL_ADD_LIBS([EVIL], [-lpsapi -lole32 -lws2_32 -lsecur32 -luuid]) | 807 | EFL_ADD_LIBS([EVIL], [-lpsapi -lole32 -lws2_32 -lsecur32 -luuid -lmsvcr100]) |
808 | 808 | ||
809 | ### Checks for header files | 809 | ### Checks for header files |
810 | 810 | ||