From 0eddefbe02d5d2ab612aae4294af3e193bdc3d0e Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 30 Oct 2004 12:08:24 +0000 Subject: [PATCH] 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 --- src/tools/jam/Jamfile | 5 +++++ src/tools/jam/Makefile | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/tools/jam/Jamfile b/src/tools/jam/Jamfile index 846f97b2b3..eb6c8350be 100644 --- a/src/tools/jam/Jamfile +++ b/src/tools/jam/Jamfile @@ -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 # diff --git a/src/tools/jam/Makefile b/src/tools/jam/Makefile index bf60c3b4f8..681e87876c 100644 --- a/src/tools/jam/Makefile +++ b/src/tools/jam/Makefile @@ -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 \