mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-21 14:41:26 +00:00
osflags: on Haiku, require BSD headers and lib
This commit is contained in:
parent
b82bc776b3
commit
8ba813f08e
|
@ -13,7 +13,7 @@ link)
|
||||||
echo '-lsocket -lbind -lbsd';
|
echo '-lsocket -lbind -lbsd';
|
||||||
;;
|
;;
|
||||||
Haiku)
|
Haiku)
|
||||||
echo '-lnetwork';
|
echo '-lnetwork -lbsd';
|
||||||
;;
|
;;
|
||||||
windows32)
|
windows32)
|
||||||
echo '-lws2_32 -liphlpapi';
|
echo '-lws2_32 -liphlpapi';
|
||||||
|
@ -35,6 +35,9 @@ cflags)
|
||||||
BeOS)
|
BeOS)
|
||||||
echo '-Dsocklen_t=int';
|
echo '-Dsocklen_t=int';
|
||||||
;;
|
;;
|
||||||
|
Haiku)
|
||||||
|
echo '-D_DEFAULT_SOURCE';
|
||||||
|
;;
|
||||||
Darwin)
|
Darwin)
|
||||||
echo '-D__APPLE_USE_RFC_3542';
|
echo '-D__APPLE_USE_RFC_3542';
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue