aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-09 01:48:32 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-09 01:48:32 +0000
commit757b829ea8e62705eb9e556ad9a98f980b21a33e (patch)
treed683b74695367acd393633904ca54200639276d3
parent78078236ea7c227085bce95b82fbf59add765e42 (diff)
downloadpostgresql-757b829ea8e62705eb9e556ad9a98f980b21a33e.tar.gz
postgresql-757b829ea8e62705eb9e556ad9a98f980b21a33e.zip
A few more sparc_solaris cleanups from keith parks
-rw-r--r--src/include/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/config.h b/src/include/config.h
index 4cc9e37229d..07040eed39e 100644
--- a/src/include/config.h
+++ b/src/include/config.h
@@ -9,9 +9,11 @@
#define BLCKSZ 8192
/* Found in catalog/catalog.c, but doesn't seem to do anything in there */
+#if !defined(sparc_solaris)
#ifndef MAXPATHLEN
#define MAXPATHLEN 80
#endif
+#endif /* !defined(sparc_solaris) */
#define HAVE_MEMMOVE
@@ -62,7 +64,7 @@
# define NEED_UNION_SEMUN
#endif
-#if defined(sparc)
+#if defined(sparc) && !defined(sparc_solaris)
# define USE_POSIX_TIME
# undef HAVE_MEMMOVE
#endif