• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

The MinGW.org Windows System Libraries


コミットメタ情報

リビジョン2e1e5c90e5078ebcfa6c51271706e49b934b9a86 (tree)
日時2013-06-27 21:06:58
作者Earnie Boyd <earnie@user...>
コミッターEarnie Boyd

ログメッセージ

Resolve issue to define all components of _STAT_DEFINED.

変更サマリ

差分

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,14 @@
11 2013-06-27 Earnie Boyd <earnie@users.sourceforge.net>
22
33 * include/wchar.h: Resolve issue to define all components of
4- _STAT_DEFINED.
4+ _STAT_DEFINED
5+
6+2013-06-25 Keith Marshall <keithmarshall@users.sourceforge.net>
7+
8+ Correct ill advised use of non-standard shell syntax.
9+
10+ * Makefile.in (lib%.a): Remove bash/ksh/csh style logic construct;
11+ replace it using standard Bourne shell "test" command syntax.
512
613 2013-06-21 Mark Brand <mabrand@mabrand.nl>
714
--- a/Makefile.in
+++ b/Makefile.in
@@ -724,12 +724,12 @@ lib%.a: %.def
724724 V=`echo $@ | sed -e 's|lib\([a-z]*\)\([0-9]*\).*|\2|'`; \
725725 DLLNAME="$${N}$${V}.dll"; \
726726 $(DLLTOOL) $(DLLTOOL_FLAGS) $${DLLNAME} --def $< --output-lib $@ ; \
727- if [[ $${DLLNAME} = msvcrt.dll || \
728- $${DLLNAME} = msvcrtd.dll || \
729- $${DLLNAME} = msvcr70.dll || \
730- $${DLLNAME} = msvcr70d.dll || \
731- $${DLLNAME} = msvcr71.dll || \
732- $${DLLNAME} = msvcr71d.dll ]]; then \
727+ if test $${DLLNAME} = msvcrt.dll \
728+ -o $${DLLNAME} = msvcrtd.dll \
729+ -o $${DLLNAME} = msvcr70.dll \
730+ -o $${DLLNAME} = msvcr70d.dll \
731+ -o $${DLLNAME} = msvcr71.dll \
732+ -o $${DLLNAME} = msvcr71d.dll; then \
733733 $(AR) rc $@ src/libcrt/crt/ofmt_stub.o; \
734734 fi
735735 $(RANLIB) $@