1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

- Update to 2.3.35

- Unbreak for kernels without COMPAT_43TTY [1]

Note: the patch from [1] was accepted by OpenLDAP, but
not yet integrated into there RELENG_2_3 branch.

Submitted by:	Ed Schouten <ed fxq.nl> [1]
PR:		ports/110386 [1]
This commit is contained in:
Xin LI 2007-04-10 14:23:02 +00:00
parent 04820b18ff
commit b6206262d3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=189672
3 changed files with 27 additions and 5 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= openldap
DISTVERSION= 2.3.34
DISTVERSION= 2.3.35
PORTREVISION= ${OPENLDAP_PORTREVISION}
CATEGORIES= net databases
MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \
@ -39,7 +39,7 @@ BROKEN= incompatible OpenLDAP version: ${WANT_OPENLDAP_VER}
.endif
PORTREVISION_CLIENT= 0
PORTREVISION_SERVER= 1
PORTREVISION_SERVER= 0
.if !defined(CLIENT_ONLY)
OPTIONS= SASL "With (Cyrus) SASL2 support" on \

View File

@ -1,3 +1,3 @@
MD5 (openldap-2.3.34.tgz) = 143eeb6e3c163e5f52d8e744b43a5960
SHA256 (openldap-2.3.34.tgz) = be1e258de7bb15969ede7dfc0f0dc163b337393846d872be6c9f3fb87b8d0f0e
SIZE (openldap-2.3.34.tgz) = 3791412
MD5 (openldap-2.3.35.tgz) = 91ae33b88bce17a48743da35a0aa04fd
SHA256 (openldap-2.3.35.tgz) = 87342ccb4844ff2fb77af1bc9bb7f419caa24c148842a97fc5af7c3fc0d5997a
SIZE (openldap-2.3.35.tgz) = 3795444

View File

@ -0,0 +1,22 @@
--- include/ac/termios.h Tue Jan 2 22:43:47 2007
+++ include/ac/termios.h Fri Mar 16 13:48:00 2007
@@ -17,7 +17,7 @@
#ifndef _AC_TERMIOS_H
#define _AC_TERMIOS_H
-#ifdef HAVE_POSIX_TERMIOS
+#ifdef HAVE_TERMIOS_H
#include <termios.h>
#ifdef GCWINSZ_IN_SYS_IOCTL
--- libraries/liblutil/getpass.c Tue Jan 2 22:43:52 2007
+++ libraries/liblutil/getpass.c Fri Mar 16 13:47:52 2007
@@ -60,7 +60,7 @@
char *
lutil_getpass( const char *prompt )
{
-#if !defined(HAVE_POSIX_TERMIOS) && !defined(HAVE_SGTTY_H)
+#if !defined(HAVE_TERMIOS_H) && !defined(HAVE_SGTTY_H)
static char buf[256];
int i, c;