mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-14 04:19:20 +02:00
400f45c793
It was not available on my MinGW crosscompiler, and it may be harmful: https://code.google.com/p/chromium/issues/detail?id=5234 Also, remove old conflicting WINVER in osflags. It is set in src/windows.h now.
43 lines
697 B
Bash
Executable File
43 lines
697 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case $2 in
|
|
link)
|
|
|
|
case $1 in
|
|
SunOS | solaris)
|
|
echo '-lsocket -lnsl';
|
|
;;
|
|
BeOS)
|
|
echo '-lsocket -lbind -lbsd';
|
|
;;
|
|
Haiku)
|
|
echo '-lnetwork';
|
|
;;
|
|
windows32)
|
|
echo '-lws2_32 -liphlpapi';
|
|
;;
|
|
Linux)
|
|
FLAGS="";
|
|
[ -e /usr/include/selinux/selinux.h ] && FLAGS="$FLAGS -lselinux";
|
|
[ -e /usr/include/systemd/sd-daemon.h ] && FLAGS="$FLAGS -lsystemd-daemon";
|
|
echo $FLAGS;
|
|
;;
|
|
esac
|
|
;;
|
|
cflags)
|
|
case $1 in
|
|
BeOS)
|
|
echo '-Dsocklen_t=int';
|
|
;;
|
|
Linux)
|
|
FLAGS="";
|
|
[ -e /usr/include/selinux/selinux.h ] && FLAGS="$FLAGS -DHAVE_SETCON";
|
|
[ -e /usr/include/systemd/sd-daemon.h ] && FLAGS="$FLAGS -DHAVE_SYSTEMD";
|
|
echo $FLAGS;
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|