mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-16 12:53:17 +00:00
15 lines
117 B
Bash
Executable file
15 lines
117 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case $1 in
|
|
link)
|
|
|
|
case `uname` in
|
|
SunOS | solaris)
|
|
echo '-lsocket -lnsl';
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|