summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-08-20 10:55:35 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-08-20 10:55:35 +0000
commit9b3d66ecbd2656c79825569bceecceb42ef45d73 (patch)
tree696129956258c8ce1817759bea31d573664895c9 /src/include
parent4b8f1bcb9cbc297c63521bcb3ea64e9eed29ff8a (diff)
downloadpostgresql-9b3d66ecbd2656c79825569bceecceb42ef45d73.tar.gz
Introduce HAVE_UNIX_SOCKETS symbol to replace repeatedly listing all the
unsupported platforms.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/config.h.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in
index 904cf0602e..e8bb0305ca 100644
--- a/src/include/config.h.in
+++ b/src/include/config.h.in
@@ -8,7 +8,7 @@
* or in config.h afterwards. Of course, if you edit config.h, then your
* changes will be overwritten the next time you run configure.
*
- * $Id: config.h.in,v 1.130 2000/08/07 20:15:44 tgl Exp $
+ * $Id: config.h.in,v 1.131 2000/08/20 10:55:34 petere Exp $
*/
#ifndef CONFIG_H
@@ -224,6 +224,14 @@
#define BITSPERBYTE 8
/*
+ * Define this is your operating system kernel supports AF_UNIX family
+ * sockets.
+ */
+#if !defined(__CYGWIN32__) && !defined(__QNX__)
+# define HAVE_UNIX_SOCKETS 1
+#endif
+
+/*
*------------------------------------------------------------------------
* These hand-configurable symbols are for enabling debugging code,
* not for controlling user-visible features or resource limits.