summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-17 23:04:37 +0000
committercrodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-17 23:04:37 +0000
commit86b60fe48cd189c40961654a6f2510528fb06104 (patch)
treeada8fe250eae8f12d54f262233f068c36ae4c0dd
parentd25f31cc5748e0184a1e74841b7f3090c228e5df (diff)
downloadATCD-86b60fe48cd189c40961654a6f2510528fb06104.tar.gz
Sun Mar 17 18:22:12 2002 Craig Rodrigues <crodrigu@bbn.com>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--include/makeinclude/platform_freebsd.GNU14
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 <crodrigu@bbn.com>
+
+ * 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 <jwillemsen@remedy.nl>
* 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 <crodrigu@bbn.com>
+
+ * 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 <jwillemsen@remedy.nl>
* 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 <crodrigu@bbn.com>
+
+ * 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 <jwillemsen@remedy.nl>
* 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++