diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_linux.GNU | 3 | ||||
-rw-r--r-- | include/makeinclude/platform_sunos5_sunc++.GNU | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/include/makeinclude/platform_linux.GNU b/include/makeinclude/platform_linux.GNU index 16f220337da..cbc26622554 100644 --- a/include/makeinclude/platform_linux.GNU +++ b/include/makeinclude/platform_linux.GNU @@ -47,8 +47,7 @@ PLATFORM_WX_LIBS = $(shell wx-config --libs) $(PLATFORM_GTK_LIBS) PLATFORM_WX_LDFLAGS = $(shell wx-config --ldflags) $(PLATFORM_GTK_LDFLAGS) PLATFORM_AIO_SUPPORT := \ - $(shell test "`ls -L /usr/lib/librt.so* /lib/librt.so*`" && echo -DACE_ -HAS_AIO_CALLS) + $(shell test "`ls -L /usr/lib/librt.so* /lib/librt.so*`" && echo -DACE_HAS_AIO_CALLS) ssl ?= 0 ifeq ($(ssl),1) diff --git a/include/makeinclude/platform_sunos5_sunc++.GNU b/include/makeinclude/platform_sunos5_sunc++.GNU index 56ba08da116..0e32bec299c 100644 --- a/include/makeinclude/platform_sunos5_sunc++.GNU +++ b/include/makeinclude/platform_sunos5_sunc++.GNU @@ -214,9 +214,9 @@ endif # ! exceptions LD = $(CXX) ifeq ($(distrib),0) - LDFLAGS += -R $(ACE_ROOT)/ace -R./ + LDFLAGS += -R $(ACE_ROOT)/lib -R./ endif - LIBS += -lsocket -ldl -lnsl -lgen -lposix4 + LIBS += -lsocket -ldl -lnsl -lgen -lposix4 -ladm LDFLAGS += -xildoff |