mirror of
https://github.com/yarrick/iodine.git
synced 2025-02-25 09:47:23 +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
|