diff options
author | tono <tono@openoffice.org> | 2011-01-06 21:56:21 +0900 |
---|---|---|
committer | tono <tono@openoffice.org> | 2011-01-06 21:56:21 +0900 |
commit | 2f324e58ca1102a272f9c375b87910bb2e8fe6a3 (patch) | |
tree | c04d5027c5f859ebb235e3534bb75b298667f278 /icu | |
parent | cb87f3db2a9b48489cef9f3dc51df02f70061e4a (diff) |
mingwport33: i#116329: MinGW port enhancement: configurable libstdc++ name
Diffstat (limited to 'icu')
-rw-r--r-- | icu/makefile.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icu/makefile.mk b/icu/makefile.mk index 44a5fd99cac4..b4a9d7dd3bbf 100644 --- a/icu/makefile.mk +++ b/icu/makefile.mk @@ -149,9 +149,9 @@ icu_LDFLAGS+=-shared-libgcc icu_LDFLAGS+=-L$(COMPATH)/lib/mingw -L$(COMPATH)/lib/w32api .ENDIF icu_LDFLAGS+=-L$(COMPATH)$/lib -icu_LIBS=-lmingwthrd +icu_LIBS= .IF "$(MINGW_SHARED_GXXLIB)"=="YES" -icu_LIBS+=-lstdc++_s +icu_LIBS+=$(MINGW_SHARED_LIBSTDCPP) .ENDIF icu_LDFLAGS+=-Wl,--enable-runtime-pseudo-reloc-v2 CONFIGURE_ACTION+=sh -c 'CFLAGS="-O -D_MT" CXXFLAGS="-O -D_MT" LDFLAGS="$(icu_LDFLAGS)" LIBS="$(icu_LIBS)" ./configure --build=i586-pc-mingw32 --enable-layout --enable-static --enable-shared=yes --enable-64bit-libs=no' |