turn off shared for freebsd 2.x

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@3904 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1999-03-12 16:28:01 +00:00
parent f288cac19c
commit 800227c2c7
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
1999-03-12 Adam Fedor <fedor@gnu.org>
* target.make: Turn off shared libs for FreeBSD 2.x
Wed Mar 10 15:23:00 1999 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* configure.in: Fix configure to set up installation directory

View file

@ -325,7 +325,7 @@ endif
# FreeBSD a.out (2.2.x)
#
ifeq ($(findstring freebsd2, $(GNUSTEP_TARGET_OS)), freebsd2)
HAVE_SHARED_LIBS = yes
HAVE_SHARED_LIBS = no
SHARED_LIB_LINK_CMD = \
$(CC) -shared -Wl,-soname,$(VERSION_LIBRARY_FILE) \
-o $(GNUSTEP_OBJ_DIR)/$(VERSION_LIBRARY_FILE) $^ /usr/lib/c++rt0.o;\