1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

Fix for systems where __FreeBSD__ >= 3.

Submitted by:	Peter Jeremy <peter.jeremy@auss2.alcatel.com.au>
Diagnosed by:	David Deatherage <DDeatherage@bridge.com>
This commit is contained in:
Steve Price 1999-04-10 00:14:41 +00:00
parent 97d5cce4cd
commit 32eae4f504
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=17752

View File

@ -1,5 +1,5 @@
--- src/s/freebsd.h.orig Wed Aug 19 16:25:36 1998
+++ src/s/freebsd.h Sun Jan 3 20:56:02 1999
--- src/s/freebsd.h.orig Wed Aug 19 02:25:36 1998
+++ src/s/freebsd.h Fri Apr 9 18:19:53 1999
@@ -45,6 +45,13 @@
#define LIBS_SYSTEM -lutil
#define LIBS_TERMCAP -ltermcap
@ -32,3 +32,12 @@
#undef LIB_GCC
#define LIB_GCC
@@ -107,7 +121,7 @@
#define BSD_SYSTEM 199103
#elif __FreeBSD__ == 2
#define BSD_SYSTEM 199306
-#elif __FreeBSD__ == 3
+#elif __FreeBSD__ >= 3
#define BSD_SYSTEM 199506
#endif