mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 17:33:17 +00:00
31 lines
318 B
Bash
Executable file
31 lines
318 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $1 in
|
|
link)
|
|
|
|
case `uname` in
|
|
SunOS | solaris)
|
|
echo '-lsocket -lnsl';
|
|
;;
|
|
BeOS)
|
|
echo '-lsocket -lbind -lbsd';
|
|
;;
|
|
Haiku)
|
|
echo '-lnetwork';
|
|
;;
|
|
windows32)
|
|
echo '-lplibc -lws2_32';
|
|
;;
|
|
esac
|
|
;;
|
|
cflags)
|
|
case `uname` in
|
|
BeOS)
|
|
echo '-Dsocklen_t=int';
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|