summaryrefslogtreecommitdiff
path: root/acconfig.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1997-06-24 01:44:29 +0000
committerJim Blandy <jimb@red-bean.com>1997-06-24 01:44:29 +0000
commitc10012e3edf8d2e52f990e2ea1b66d6782a698cb (patch)
tree7df4190c448cf23b85ac206879a82bb11ecd2efa /acconfig.h
parent2409cdfac737891dbdac3fc488faad311daa0c58 (diff)
downloadguile-c10012e3edf8d2e52f990e2ea1b66d6782a698cb.tar.gz
Changes to compile under gnu-win32, from Marcus Daniels:
* configure.in: When sys/un.h exists, define HAVE_UNIX_DOMAIN_SOCKETS to indicate that Unix domain sockets will work. Check for socketpair, getgroups, setwent, pause, and tzset (cygwin currently lacks these them). Check for sethostent endhostent getnetent setnetent endnetent getprotoent endprotoent getservent endservent getnetbyaddr getnetbyname inet_lnaof inet_makeaddr inet_netof (cygwin currently lacks them). In the case of cygwin, temporarily prefix these functions with "cygwin32_", the way that netdb.h does. Don't define HAVE_REGCOMP unless both regcomp and regex.h are available (cygwin b18 came distributed without a working regex.h file). * acconfig.h (HAVE_UNIX_DOMAIN_SOCKETS): Add this. * configure: Regenerated.
Diffstat (limited to 'acconfig.h')
-rw-r--r--acconfig.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h
index e7f263c14..cfde7b0ea 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -71,3 +71,6 @@
/* Define if the operating system can restart system calls. */
#undef HAVE_RESTARTS
+
+/* Define if the system supports Unix-domain (file-domain) sockets. */
+#undef HAVE_UNIX_DOMAIN_SOCKETS