The MinGW.org Windows System Libraries
修訂 | bb2a90f93abd0752d03f771b09889a94a343c586 (tree) |
---|---|
時間 | 2020-05-28 06:53:31 |
作者 | Keith Marshall <keith@user...> |
Commiter | Keith Marshall |
Fix libmingwex-n.dll dependencies; cf. Issue #40438.
@@ -1,3 +1,9 @@ | ||
1 | +2020-05-27 Keith Marshall <keith@users.osdn.me> | |
2 | + | |
3 | + Fix libmingwex-n.dll dependencies; cf. Issue #40438. | |
4 | + | |
5 | + * VERSION.m4 (LIBMINGWEX): Increment interface version to 3:0:0. | |
6 | + | |
1 | 7 | 2020-05-26 Keith Marshall <keith@users.osdn.me> |
2 | 8 | |
3 | 9 | Adjust repository version following WSL-5.3.1 release. |
@@ -23,7 +23,7 @@ m4_define([__VERSION__],[5.3.2]) | ||
23 | 23 | # as required, in accordance with libtool conventions. |
24 | 24 | # |
25 | 25 | m4_define([MINGW_AC_ENUMERATE_DLLVERSION_SPECS],dnl |
26 | -[MINGW_AC_SET_DLLVERSION([LIBMINGWEX], [libmingwex.dll.a], [2:0:0])dnl | |
26 | +[MINGW_AC_SET_DLLVERSION([LIBMINGWEX], [libmingwex.dll.a], [3:0:0])dnl | |
27 | 27 | ]) |
28 | 28 | |
29 | 29 | # $RCSfile$: end of file |
@@ -1,3 +1,11 @@ | ||
1 | +2020-05-27 Keith Marshall <keith@users.osdn.me> | |
2 | + | |
3 | + Fix libmingwex-n.dll dependencies; cf. Issue #40438. | |
4 | + | |
5 | + * Makefile.in (libmingwex.a): Remove... | |
6 | + (mbrscan.$OBJEEXT, wcharmap.$OBJEXT): ...these; relocate them to... | |
7 | + (libmingw32.a): ...here. | |
8 | + | |
1 | 9 | 2020-04-30 Keith Marshall <keith@users.osdn.me> |
2 | 10 | |
3 | 11 | Prepare and publish MinGW.org WSL-5.3.1 release. |
@@ -468,8 +468,9 @@ libmingwex.a: $(addsuffix .$(OBJEXT), mkstemp mkdtemp cryptnam setenv) | ||
468 | 468 | |
469 | 469 | vpath %.s ${mingwrt_srcdir}/mingwex |
470 | 470 | vpath %.sx ${mingwrt_srcdir}/mingwex |
471 | -libmingwex.a: $(addsuffix .$(OBJEXT), codeset mbrconv mbrscan mbrlen) | |
472 | -libmingwex.a: $(addsuffix .$(OBJEXT), mbrtowc mbsrtowcs strnlen wcharmap) | |
471 | +libmingw32.a: $(addsuffix .$(OBJEXT), mbrscan wcharmap) | |
472 | +libmingwex.a: $(addsuffix .$(OBJEXT), codeset mbrconv mbrlen) | |
473 | +libmingwex.a: $(addsuffix .$(OBJEXT), mbrtowc mbsrtowcs strnlen) | |
473 | 474 | libmingwex.a: $(addsuffix .$(OBJEXT), wcrtomb wcsrtombs wcsnlen wcstod wcstof) |
474 | 475 | libmingwex.a: $(addsuffix .$(OBJEXT), wcstofp wcstold wctob wctrans wctype) |
475 | 476 | libmingwex.a: $(addsuffix .$(OBJEXT), wmemchr wmemcmp wmemcpy wmemmove wmemset) |