diff options
author | pst <pst@FreeBSD.org> | 1996-06-10 04:02:02 +0800 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-06-10 04:02:02 +0800 |
commit | ad73dc8fe8ae143ef4085aff600edade82330091 (patch) | |
tree | 8a7b050340dd477d2e772d95be2f3e3c812731b0 /mail/popper | |
parent | 637b84b2a0228bc6361a44bbe1b8b00a02e800e6 (diff) | |
download | freebsd-ports-gnome-ad73dc8fe8ae143ef4085aff600edade82330091.tar.gz freebsd-ports-gnome-ad73dc8fe8ae143ef4085aff600edade82330091.tar.zst freebsd-ports-gnome-ad73dc8fe8ae143ef4085aff600edade82330091.zip |
Fix up a couple of popauth problems in 2.2
Diffstat (limited to 'mail/popper')
-rw-r--r-- | mail/popper/files/patch-aa | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/mail/popper/files/patch-aa b/mail/popper/files/patch-aa index 90ab6aee6863..c44898c301aa 100644 --- a/mail/popper/files/patch-aa +++ b/mail/popper/files/patch-aa @@ -213,7 +213,7 @@ # define HAVE_VSPRINTF # define BIND43 # endif -+ # if (defined(BSD) && (BSD >= 199506)) ++ # if (defined(BSD) && (BSD >= 199306)) + # define BSD44_DBM + # endif #endif @@ -248,3 +248,32 @@ #if defined(AUTHFILE) extern int checkauthfile(); #endif +*** popauth.c Sun Jun 9 12:56:38 1996 +--- popauth.c Sun Jun 9 13:00:51 1996 +*************** +*** 36,43 **** + #include <sys/file.h> + #endif + +! #ifdef BSDI +! #define BSD44_DBM + #endif + + #ifdef NEED_STRERROR +--- 36,51 ---- + #include <sys/file.h> + #endif + +! #ifdef HAVE_PARAM_H +! #include <sys/param.h> +! # if (defined(BSD) && (BSD >= 199103)) +! # define HAVE_UNISTD_H +! # define HAVE_VSPRINTF +! # define BIND43 +! # endif +! # if (defined(BSD) && (BSD >= 199306)) +! # define BSD44_DBM +! # endif + #endif + + #ifdef NEED_STRERROR |