diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-05-01 06:52:38 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-05-01 06:52:38 +0000 |
commit | 5bf9d5841abcaa7be72bd73c7549316c37ccc8a1 (patch) | |
tree | 814e533d2305bd2da23f7c56f8e8969207cad283 /include | |
parent | 866bd09e983677ed5f6528a81ae9c61ca95b5f0d (diff) | |
download | ATCD-5bf9d5841abcaa7be72bd73c7549316c37ccc8a1.tar.gz |
ChangeLogTag: Mon May 1 06:52:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_sunos5_g++.GNU | 4 | ||||
-rw-r--r-- | include/makeinclude/platform_sunos5_sunc++.GNU | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/makeinclude/platform_sunos5_g++.GNU b/include/makeinclude/platform_sunos5_g++.GNU index acc6d642c88..3751c0d83c1 100644 --- a/include/makeinclude/platform_sunos5_g++.GNU +++ b/include/makeinclude/platform_sunos5_g++.GNU @@ -39,6 +39,10 @@ ifeq ($(shell /bin/uname -r),5.9) # Solaris 9 puts sendfile() in a separate library. LIBS += -lsendfile endif +ifeq ($(shell /bin/uname -r),5.10) + # Solaris 10 puts sendfile() in a separate library. + LIBS += -lsendfile +endif LIBS += -lsocket -ldl -lgen -lnsl -lposix4 -lthread OCFLAGS += -O3 PIC = -fPIC diff --git a/include/makeinclude/platform_sunos5_sunc++.GNU b/include/makeinclude/platform_sunos5_sunc++.GNU index 3de043b380d..31d0705e471 100644 --- a/include/makeinclude/platform_sunos5_sunc++.GNU +++ b/include/makeinclude/platform_sunos5_sunc++.GNU @@ -262,6 +262,10 @@ ifeq ($(shell /bin/uname -r),5.9) # Solaris 9 puts sendfile() in a separate library. LIBS += -lsendfile endif +ifeq ($(shell /bin/uname -r),5.10) + # Solaris 10 puts sendfile() in a separate library. + LIBS += -lsendfile +endif LIBS += -lsocket -ldl -lnsl -lgen -lposix4 -ladm LDFLAGS += -xildoff |