summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-12 19:11:14 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-12 19:11:14 -0800
commit6a54a5630ee0e33f34387131e16d33d2b8c63aec (patch)
tree5b17b95cf0d755269cccec8e480936ca0fa4ed4b
parent4c47303a0af4b5045f7735ccc848cd02fef6995d (diff)
unifdef BSD < 199103
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--vendor.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/vendor.h b/vendor.h
index 576c093..e0b77a2 100644
--- a/vendor.h
+++ b/vendor.h
@@ -51,10 +51,7 @@ from the X Consortium.
*/
#define SEARCHDIR MAN
-
-#if (defined(BSD) && (BSD >= 199103)) || defined(linux) || defined(__CYGWIN__)
-# define SEARCHOTHER CAT
-#endif
+#define SEARCHOTHER CAT
/*
* The default manual page directory.
@@ -68,12 +65,10 @@ from the X Consortium.
# define SYSMANPATH "/usr/share/man:/usr/local/man:/usr/X11R6/man"
#elif defined(SVR4) && defined(sun)
# define SYSMANPATH "/usr/share/man:/usr/X11/man:/usr/openwin/share/man:/usr/dt/share/man:/usr/sfw/share/man"
-#elif (defined(BSD) && (BSD >= 199103))
-# define SYSMANPATH "/usr/share/man"
#endif
#ifndef SYSMANPATH
-# define SYSMANPATH "/usr/man"
+# define SYSMANPATH "/usr/share/man"
#endif
#endif
@@ -105,8 +100,6 @@ from the X Consortium.
#ifndef HANDLE_ROFFSEQ
# if defined(CSRG_BASED)
# define FORMAT "| eqn | tbl | nroff -mandoc"
-# elif defined(BSD) && (BSD >= 199103)
-# define FORMAT "| eqn | tbl | nroff -man"
# elif defined(linux) || defined(__CYGWIN__)
# define FORMAT "| pic | eqn | tbl -Tlatin1 | GROFF_NO_SGR= groff -Tlatin1 -mandoc"
# else