mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 09:23:17 +00:00
15 lines
117 B
Plaintext
15 lines
117 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case $1 in
|
||
|
link)
|
||
|
|
||
|
case $OSTYPE in
|
||
|
SunOS | solaris)
|
||
|
echo '-lsocket -lnsl';
|
||
|
;;
|
||
|
esac
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|