diff options
author | Steve Huston <shuston@riverace.com> | 1999-02-19 17:34:17 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 1999-02-19 17:34:17 +0000 |
commit | 04be66e9d7a1c1cdd254d3d0bf614a0386efa125 (patch) | |
tree | 1f89b126367129fc2a9d37e1d4deb834ce62c780 /include/makeinclude | |
parent | d7533972525dd7c8b4bd3301b60900d0f9a5678f (diff) | |
download | ATCD-04be66e9d7a1c1cdd254d3d0bf614a0386efa125.tar.gz |
Add 'distrib' keyword - if = 1, does not use -R options when linking, producing
dynamic link records which require standard file locations, or use of
LD_LIBRARY_PATH.
Diffstat (limited to 'include/makeinclude')
-rw-r--r-- | include/makeinclude/platform_sunos5_sunc++.GNU | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/makeinclude/platform_sunos5_sunc++.GNU b/include/makeinclude/platform_sunos5_sunc++.GNU index df0841bb73c..189c0fb0864 100644 --- a/include/makeinclude/platform_sunos5_sunc++.GNU +++ b/include/makeinclude/platform_sunos5_sunc++.GNU @@ -25,6 +25,7 @@ # necessary with automatic template instantiation. debug = 1 +distrib = 0 threads = 1 ifeq ($(threads),1) @@ -88,7 +89,9 @@ ifdef orbix -lthread -lgen -lposix4 CPPFLAGS += -I$(ORBIX_ROOT)/corba2/include else +ifeq ($(distrib),0) LDFLAGS += -R $(ACE_ROOT)/ace -R./ +endif LIBS += -lsocket -ldl -lnsl -lgen -lposix4 endif # orbix |