This website requires JavaScript.
Explore
Help
Sign In
other_mirrors
/
iodine
Watch
1
Star
0
Fork
You've already forked iodine
0
mirror of
https://github.com/yarrick/iodine.git
synced
2024-11-12 19:39:19 +02:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
d24dae882a
iodine
/
src
/
osflags
15 lines
117 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add extra ldflags for solaris
2008-07-12 15:42:19 +03:00
#!/bin/sh
case $1 in
link)
fixed osflags script, updated changelog
2008-08-06 23:02:34 +03:00
case `uname` in
Add extra ldflags for solaris
2008-07-12 15:42:19 +03:00
SunOS | solaris)
echo '-lsocket -lnsl';
;;
esac
;;
*)
;;
esac