From 86b60fe48cd189c40961654a6f2510528fb06104 Mon Sep 17 00:00:00 2001 From: crodrigu Date: Sun, 17 Mar 2002 23:04:37 +0000 Subject: Sun Mar 17 18:22:12 2002 Craig Rodrigues --- ChangeLog | 6 ++++++ ChangeLogs/ChangeLog-02a | 6 ++++++ ChangeLogs/ChangeLog-03a | 6 ++++++ include/makeinclude/platform_freebsd.GNU | 14 +++++++++++--- 4 files changed, 29 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5c0210f171f..a788039bc8e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sun Mar 17 18:22:12 2002 Craig Rodrigues + + * include/makeinclude/platform_freebsd.GNU: Copy lines from + platform_linux.GNU. exceptions=1 is now the default, + unless overridden by the user, just like for Linux. + Sun Mar 17 11:53:12 2002 Johnny Willemsen * include/makeinclude/compiler.bor: diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 5c0210f171f..a788039bc8e 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,9 @@ +Sun Mar 17 18:22:12 2002 Craig Rodrigues + + * include/makeinclude/platform_freebsd.GNU: Copy lines from + platform_linux.GNU. exceptions=1 is now the default, + unless overridden by the user, just like for Linux. + Sun Mar 17 11:53:12 2002 Johnny Willemsen * include/makeinclude/compiler.bor: diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 5c0210f171f..a788039bc8e 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,9 @@ +Sun Mar 17 18:22:12 2002 Craig Rodrigues + + * include/makeinclude/platform_freebsd.GNU: Copy lines from + platform_linux.GNU. exceptions=1 is now the default, + unless overridden by the user, just like for Linux. + Sun Mar 17 11:53:12 2002 Johnny Willemsen * include/makeinclude/compiler.bor: diff --git a/include/makeinclude/platform_freebsd.GNU b/include/makeinclude/platform_freebsd.GNU index ec19e671667..213680a592d 100644 --- a/include/makeinclude/platform_freebsd.GNU +++ b/include/makeinclude/platform_freebsd.GNU @@ -7,9 +7,17 @@ ifeq ($(VERSION),2) versioned_so = 1 endif -optimize = 1 - -debug = 1 +ifndef exceptions + exceptions = 1 +endif + +ifeq (,$(debug)) + debug = 1 +endif + +ifeq (,$(optimize)) + optimize = 1 +endif CC = gcc CXX = g++ -- cgit v1.2.1