mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 06:10:50 +00:00
Include -lm for freebsd and osf
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3599 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
625e603f82
commit
c13f68d072
1 changed files with 4 additions and 1 deletions
|
@ -65,12 +65,15 @@ endif
|
|||
ifeq ($(findstring aix4.1, $(GNUSTEP_TARGET_OS)), aix4.1)
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
|
||||
endif
|
||||
ifeq ($(findstring freebsd3.0, $(GNUSTEP_TARGET_OS)), freebsd3.0)
|
||||
ifeq ($(findstring freebsd, $(GNUSTEP_TARGET_OS)), freebsd)
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
|
||||
endif
|
||||
ifeq ($(findstring netbsd, $(GNUSTEP_TARGET_OS)), netbsd)
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
|
||||
endif
|
||||
ifeq ($(findstring osf, $(GNUSTEP_TARGET_OS)), osf)
|
||||
TARGET_SYSTEM_LIBS := $(CONFIG_SYSTEM_LIBS) -lm
|
||||
endif
|
||||
|
||||
#
|
||||
# Specific settings for building shared libraries, static libraries,
|
||||
|
|
Loading…
Reference in a new issue