You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by hd...@apache.org on 2013/08/20 14:48:57 UTC

svn commit: r1515802 - in /openoffice/branches/rejuvenate01/main/solenv/inc: unxlng.mk unxmacc.mk

Author: hdu
Date: Tue Aug 20 12:48:56 2013
New Revision: 1515802

URL: http://svn.apache.org/r1515802
Log:
allow build of rejuvenate01 with older compilers

forcing C++11 mode is possible with setting the environment
variable CXX to the C++ compiler and setting its C++11 option

Modified:
    openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk
    openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk

Modified: openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk
URL: http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk?rev=1515802&r1=1515801&r2=1515802&view=diff
==============================================================================
--- openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk (original)
+++ openoffice/branches/rejuvenate01/main/solenv/inc/unxlng.mk Tue Aug 20 12:48:56 2013
@@ -84,7 +84,7 @@ CFLAGSEXCEPTIONS=-fexceptions -fno-enfor
 CFLAGS_NO_EXCEPTIONS=-fno-exceptions
 
 # -fpermissive should be removed as soon as possible
-CFLAGSCXX= -std=c++11 -pipe $(ARCH_FLAGS)
+CFLAGSCXX= -pipe $(ARCH_FLAGS)
 .IF "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE"
 CFLAGSCXX += -fvisibility-inlines-hidden
 .ENDIF # "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE"

Modified: openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk
URL: http://svn.apache.org/viewvc/openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk?rev=1515802&r1=1515801&r2=1515802&view=diff
==============================================================================
--- openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk (original)
+++ openoffice/branches/rejuvenate01/main/solenv/inc/unxmacc.mk Tue Aug 20 12:48:56 2013
@@ -106,7 +106,7 @@ CFLAGSEXCEPTIONS=-fexceptions
 CFLAGS_NO_EXCEPTIONS=-fno-exceptions
 
 # Normal C++ compilation flags
-CFLAGSCXX=-pipe -std=c++11 -fsigned-char
+CFLAGSCXX=-pipe -fsigned-char
 
 CFLAGSCXX+= -Wno-ctor-dtor-privacy