[Libreoffice-commits] core.git: solenv/gbuild

David Ostrovsky david at ostrovsky.org
Sun Feb 24 14:35:44 PST 2013


 solenv/gbuild/platform/WNT_INTEL_GCC.mk |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit f4a6b7d3d6ab2599dc795b640e14af808ea9de35
Author: David Ostrovsky <david at ostrovsky.org>
Date:   Sun Feb 24 23:30:30 2013 +0100

    fix HAVE_CXX0X case on MinGW
    
    During configure phase HAVE_CXX0X is determined and exposed
    if the current gcc version supports it. With gcc 4.7.2 this
    is the case. Activate it during compilation phase too.
    
    Change-Id: I7b738de083fa337a422c20bdf88d9dca5f8303ed

diff --git a/solenv/gbuild/platform/WNT_INTEL_GCC.mk b/solenv/gbuild/platform/WNT_INTEL_GCC.mk
index b9edab0..3a5be2c 100644
--- a/solenv/gbuild/platform/WNT_INTEL_GCC.mk
+++ b/solenv/gbuild/platform/WNT_INTEL_GCC.mk
@@ -85,8 +85,7 @@ gb_CFLAGS += --sysroot=$(SYSBASE)
 endif
 
 ifeq ($(HAVE_CXX0X),TRUE)
-# We can turn on additional useful checks with c++0x
-# FIXME still does not compile fully gb_CXXFLAGS += -std=gnu++0x
+gb_CXXFLAGS += -std=gnu++0x
 endif
 
 # At least sal defines its own __main, which would cause DLLs linking against


More information about the Libreoffice-commits mailing list