summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-06 02:06:18 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-06 02:06:18 +0000
commit1b90278bb197f3781adf190cc2ab9576b82f7c99 (patch)
tree27a1923a4af3b346c418cc4c75293460ef10b6c2 /include
parent8a7fb75777a99a4561ce9b667a9381542f9d8753 (diff)
downloadATCD-1b90278bb197f3781adf190cc2ab9576b82f7c99.tar.gz
ChangeLogTag: Mon Jun 05 20:59:42 2000 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'include')
-rw-r--r--include/makeinclude/wrapper_macros.GNU8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index eabadcf23b8..6f470a7929b 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -127,8 +127,12 @@
#### Default to building shared libraries only. Set it here to give the
#### platform a chance to override.
-shared_libs = 1
-static_libs = 0
+ifeq ($(shared_libs),)
+ shared_libs = 1
+endif # shared_libs
+ifeq ($(static_libs),)
+ static_libs = 0
+endif # static_libs
#### Let platform just look at whether or not exceptions is defined.
#### With the following override, it doesn't have to check for 0.