mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
* target.make (TARGET_SYSTEM_LIBS): Remove -ldl (added when necessary
by gnustep-base). git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@16838 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4f38cc2639
commit
73e334efe3
2 changed files with 10 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-05-29 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* target.make (TARGET_SYSTEM_LIBS): Remove -ldl (added when necessary
|
||||
by gnustep-base).
|
||||
|
||||
Wed May 28 09:47:42 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Instance/framework.make: Use test -r instead of test -f to check
|
||||
|
|
10
target.make
10
target.make
|
@ -46,20 +46,20 @@ ifeq ($(findstring cygwin, $(GNUSTEP_TARGET_OS)), cygwin)
|
|||
endif
|
||||
ifeq ($(GNUSTEP_TARGET_OS),linux-gnu)
|
||||
ifeq ("$(objc_threaded)","")
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -ldl -lm
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
|
||||
else
|
||||
INTERNAL_CFLAGS = -D_REENTRANT
|
||||
INTERNAL_OBJCFLAGS = -D_REENTRANT
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) $(objc_threaded) -ldl -lm
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) $(objc_threaded) -lm
|
||||
endif
|
||||
endif
|
||||
ifeq ($(findstring solaris, $(GNUSTEP_TARGET_OS)), solaris)
|
||||
ifeq ("$(objc_threaded)","")
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lsocket -lnsl -ldl -lm
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lsocket -lnsl -lm
|
||||
else
|
||||
INTERNAL_CFLAGS = -D_REENTRANT
|
||||
INTERNAL_OBJCFLAGS = -D_REENTRANT
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) $(objc_threaded) -lsocket -lnsl -ldl -lm
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) $(objc_threaded) -lsocket -lnsl -lm
|
||||
endif
|
||||
endif
|
||||
ifeq ($(findstring irix, $(GNUSTEP_TARGET_OS)), irix)
|
||||
|
@ -75,7 +75,7 @@ ifeq ($(findstring hpux, $(GNUSTEP_TARGET_OS)), hpux)
|
|||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
|
||||
endif
|
||||
ifeq ($(findstring sysv4.2, $(GNUSTEP_TARGET_OS)), sysv4.2)
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lsocket -lnsl -ldl -lm
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lsocket -lnsl -lm
|
||||
endif
|
||||
ifeq ($(findstring aix4.1, $(GNUSTEP_TARGET_OS)), aix4.1)
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
|
||||
|
|
Loading…
Reference in a new issue