From bc6457fc369dcd7f02daa5b02e8a740cd698d926 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 7 May 2005 00:53:36 +0200 Subject: [PATCH 1/2] - added some required CXXFLAGS to BUILD/compile-dist to allow the distribution build to pass without unresolved symbols BUILD/compile-dist: - added some required CXXFLAGS to allow the distribution build to pass --- BUILD/compile-dist | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BUILD/compile-dist b/BUILD/compile-dist index ef6302f0d9c..4fa3c0a8624 100755 --- a/BUILD/compile-dist +++ b/BUILD/compile-dist @@ -18,12 +18,17 @@ autoconf # Default to gcc for CC and CXX if test -z "$CXX" ; then export CXX=gcc + # Set some required compile options + if test -z "$CXXFLAGS" ; then + export CXXFLAGS=""-felide-constructors -fno-exceptions -fno-rtti"" + fi fi if test -z "$CC" ; then export CC=gcc fi + # Use ccache, if available if ccache -V > /dev/null 2>&1 then From 8ec23d0efcfd48b19746f19934256d216caf0f8f Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 7 May 2005 01:25:20 +0200 Subject: [PATCH 2/2] - typo fix in BUILD/compile-dist BUILD/compile-dist: - typo fix --- BUILD/compile-dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD/compile-dist b/BUILD/compile-dist index 4fa3c0a8624..51afd104491 100755 --- a/BUILD/compile-dist +++ b/BUILD/compile-dist @@ -20,7 +20,7 @@ if test -z "$CXX" ; then export CXX=gcc # Set some required compile options if test -z "$CXXFLAGS" ; then - export CXXFLAGS=""-felide-constructors -fno-exceptions -fno-rtti"" + export CXXFLAGS="-felide-constructors -fno-exceptions -fno-rtti" fi fi