summaryrefslogtreecommitdiff
path: root/include
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 /include
parentd25f31cc5748e0184a1e74841b7f3090c228e5df (diff)
downloadATCD-86b60fe48cd189c40961654a6f2510528fb06104.tar.gz
Sun Mar 17 18:22:12 2002 Craig Rodrigues <crodrigu@bbn.com>
Diffstat (limited to 'include')
-rw-r--r--include/makeinclude/platform_freebsd.GNU14
1 files changed, 11 insertions, 3 deletions
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++