diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-09 18:23:57 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-09 18:23:57 +0000 |
commit | 1ec6cad9a3fa97af5d57fdc9825e0b8403647892 (patch) | |
tree | 68169eaaaa0cb8f9656aca3a755b2b04d4899025 /include | |
parent | e780620769f5355d6549ea0e4f6bb51f6ca5bd85 (diff) | |
download | ATCD-1ec6cad9a3fa97af5d57fdc9825e0b8403647892.tar.gz |
.
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_irix6.x_g++.GNU | 8 | ||||
-rw-r--r-- | include/makeinclude/platform_irix6.x_sgic++.GNU | 8 | ||||
-rw-r--r-- | include/makeinclude/platform_linux_lxpthread.GNU | 10 | ||||
-rw-r--r-- | include/makeinclude/platform_linux_lxpthreads.GNU | 10 | ||||
-rw-r--r-- | include/makeinclude/platform_sunos5_g++.GNU | 12 | ||||
-rw-r--r-- | include/makeinclude/platform_sunos5_sunc++.GNU | 12 |
6 files changed, 44 insertions, 16 deletions
diff --git a/include/makeinclude/platform_irix6.x_g++.GNU b/include/makeinclude/platform_irix6.x_g++.GNU index 6f5b802feea..0541ebf6ad2 100644 --- a/include/makeinclude/platform_irix6.x_g++.GNU +++ b/include/makeinclude/platform_irix6.x_g++.GNU @@ -4,8 +4,12 @@ include $(ACE_ROOT)/include/makeinclude/platform_irix6.x_common.GNU -debug = 1 -optimize = 1 +ifeq (,$(debug)) + debug = 1 +endif +ifeq (,$(optimize)) + optimize = 1 +endif CC = gcc CXX = g++ diff --git a/include/makeinclude/platform_irix6.x_sgic++.GNU b/include/makeinclude/platform_irix6.x_sgic++.GNU index 656e8daf016..d3edb63bdf7 100644 --- a/include/makeinclude/platform_irix6.x_sgic++.GNU +++ b/include/makeinclude/platform_irix6.x_sgic++.GNU @@ -5,8 +5,12 @@ # environment variable to -n32. This causes a new compiler to be # invoked. -debug = 1 -optimize = 1 +ifeq (,$(debug)) + debug = 1 +endif +ifeq (,$(optimize)) + optimize = 1 +endif include $(ACE_ROOT)/include/makeinclude/platform_irix6.x_common.GNU diff --git a/include/makeinclude/platform_linux_lxpthread.GNU b/include/makeinclude/platform_linux_lxpthread.GNU index 0409487e18c..bce007866a9 100644 --- a/include/makeinclude/platform_linux_lxpthread.GNU +++ b/include/makeinclude/platform_linux_lxpthread.GNU @@ -8,9 +8,13 @@ # to compile it yourself (no binaries included) -- # Jan Rychter <jwr@icm.edu.pl> -debug = 1 -optimize = 1 -xt_reactor = 0 +ifeq (,$(debug)) + debug = 1 +endif +ifeq (,$(optimize)) + optimize = 1 +endif + xt_reactor = 0 PLATFORM_XT_CPPFLAGS= PLATFORM_XT_LIBS=-lXt diff --git a/include/makeinclude/platform_linux_lxpthreads.GNU b/include/makeinclude/platform_linux_lxpthreads.GNU index 0409487e18c..bce007866a9 100644 --- a/include/makeinclude/platform_linux_lxpthreads.GNU +++ b/include/makeinclude/platform_linux_lxpthreads.GNU @@ -8,9 +8,13 @@ # to compile it yourself (no binaries included) -- # Jan Rychter <jwr@icm.edu.pl> -debug = 1 -optimize = 1 -xt_reactor = 0 +ifeq (,$(debug)) + debug = 1 +endif +ifeq (,$(optimize)) + optimize = 1 +endif + xt_reactor = 0 PLATFORM_XT_CPPFLAGS= PLATFORM_XT_LIBS=-lXt diff --git a/include/makeinclude/platform_sunos5_g++.GNU b/include/makeinclude/platform_sunos5_g++.GNU index 9056fdddf8b..bcd304f0aef 100644 --- a/include/makeinclude/platform_sunos5_g++.GNU +++ b/include/makeinclude/platform_sunos5_g++.GNU @@ -10,9 +10,15 @@ # NOTE: On Solaris86, you'll need to use GNU as instead of /usr/ccs/bin/as, # if you want -gstabs+ and -pipe support. -debug = 1 -optimize = 1 -threads = 1 +ifeq (,$(debug)) + debug = 1 +endif +ifeq (,$(optimize)) + optimize = 1 +endif +ifeq (,$(threads)) + threads = 1 +endif ifeq ($(threads),0) CFLAGS += -DACE_MT_SAFE=0 diff --git a/include/makeinclude/platform_sunos5_sunc++.GNU b/include/makeinclude/platform_sunos5_sunc++.GNU index 1fda9c3cd58..e596f12d70d 100644 --- a/include/makeinclude/platform_sunos5_sunc++.GNU +++ b/include/makeinclude/platform_sunos5_sunc++.GNU @@ -24,9 +24,15 @@ # size should not be penalized. We don't use it because it's not # necessary with automatic template instantiation. -debug = 1 -distrib = 0 -threads = 1 +ifeq (,$(debug)) + debug = 1 +endif +ifeq (,$(distrib)) + distrib = 0 +endif +ifeq (,$(threads)) + threads = 1 +endif tk_reactor = 0 ace_with_x11 = 0 |