aboutsummaryrefslogtreecommitdiffstats
path: root/ext/socket/extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/socket/extconf.rb')
-rw-r--r--ext/socket/extconf.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/socket/extconf.rb b/ext/socket/extconf.rb
new file mode 100644
index 0000000000..bbde1a0c35
--- /dev/null
+++ b/ext/socket/extconf.rb
@@ -0,0 +1,17 @@
+$LDFLAGS = "-L/usr/local/lib"
+have_library("wsock32", "cygwin32_socket") or have_library("socket", "socket")
+have_library("inet", "gethostbyname")
+have_library("nsl", "gethostbyname")
+have_header("sys/un.h")
+if have_func("socket") or have_func("cygwin32_socket")
+ have_func("hsterror")
+ unless have_func("gethostname")
+ have_func("uname")
+ end
+ if ENV["SOCKS_SERVER"] # test if SOCKSsocket needed
+ if have_library("socks", "Rconnect")
+ $CFLAGS="-DSOCKS"
+ end
+ end
+ create_makefile("socket")
+end