git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18879 a95241bf-73f2-0310-859d-f6bbb57e9c96
27 lines
750 B
Plaintext
27 lines
750 B
Plaintext
SubDir HAIKU_TOP src add-ons kernel network protocols ipv4 ;
|
|
|
|
SetSubDirSupportedPlatformsBeOSCompatible ;
|
|
|
|
if $(TARGET_PLATFORM) != haiku {
|
|
UseHeaders [ FStandardOSHeaders ] : true ;
|
|
# Needed for <support/Errors.h> and maybe other stuff.
|
|
UseHeaders [ FDirName $(HAIKU_TOP) headers posix ] : true ;
|
|
# We need the public network headers also when not compiling for Haiku.
|
|
# Unfortunately we get more than we want, namely all POSIX headers.
|
|
}
|
|
|
|
UsePrivateHeaders kernel net ;
|
|
|
|
KernelAddon ipv4 :
|
|
ipv4.cpp
|
|
ipv4_address.cpp
|
|
;
|
|
|
|
# Installation
|
|
HaikuInstall install-networking : /boot/home/config/add-ons/kernel/haiku_network/protocols
|
|
: ipv4 ;
|
|
|
|
Package haiku-networkingkit-cvs :
|
|
haiku :
|
|
boot home config add-ons kernel haiku_network protocols ;
|