With our new gcc 2.95.3 we need to explicitly link against libnet.so again.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9658 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2004-10-30 12:08:24 +00:00
parent 6686b03883
commit 0eddefbe02
2 changed files with 8 additions and 0 deletions

View File

@ -97,6 +97,11 @@ if $(VMS)
CCFLAGS += /define=VMS ;
}
# Need to link against -lnet
if $(OS) = BEOS {
LINKLIBS += -lnet ;
}
#
# The guts of the Jamfile: how to build Jam
#

View File

@ -50,6 +50,9 @@ TARGET = -o $(EXENAME)
# QNX rtp (neutrino)
#CC = gcc
# BeOS
LINKLIBS = -lnet
SOURCES = \
builtins.c \
command.c compile.c execunix.c execvms.c expand.c \