Fixed the build of several network apps under R5:

- removed libnetapi.so from $NETWORK_LIBS - it's not used by anyone anyway,
  and it's definitely not necessary to link against it by default.
  Note, this might cause problems in some of the mail add-ons; I haven't
  tested this.
- route/ping/... now also link against $SELECT_UNAME_ETC_LIB

makehdimage should now work again under all BeOS platforms.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12325 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2005-04-12 04:22:55 +00:00
parent c7def18e6d
commit d67e6bc8a2
7 changed files with 9 additions and 10 deletions
+2 -4
View File
@@ -122,12 +122,10 @@ switch $(TARGET_PLATFORM)
}
}
if $(BONE_COMPATIBLE) {
# FIXME: we don't have our own "libbnetapi.so" yet :-(
# NETWORK_LIBS = libsocket.so libbind.so libbnetapi.so ;
NETWORK_LIBS = libsocket.so libbind.so bnetapi ;
NETWORK_LIBS = libsocket.so libbind.so ;
SELECT_UNAME_ETC_LIB = libroot.so ;
} else {
NETWORK_LIBS = libnet.so libnetapi.so ;
NETWORK_LIBS = libnet.so ;
SELECT_UNAME_ETC_LIB = libnet.so ;
}