mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
Fix ldap support
Add SSL support Add Syslog support Submitted by: U.Drolshagen@t-online.de, rehsack@liwing.de, rolnas@takas.lt
This commit is contained in:
parent
dd417ab9bd
commit
4de8da5040
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=56017
@ -41,6 +41,14 @@ CONFIGURE_ARGS= --libdir=${SAMBA_CONFDIR} \
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(WITH_SYSLOG)
|
||||
CONFIGURE_ARGS+= --with-syslog
|
||||
.endif
|
||||
|
||||
.if defined(WITH_SSL)
|
||||
CONFIGURE_ARGS+= --with-ssl -ssl-inc=/usr/include/openssl --ssl-lib=/usr/lib
|
||||
.endif
|
||||
|
||||
.if defined(WITH_LDAP)
|
||||
LIB_DEPENDS+= ldap.2:\${PORTSDIR}/net/openldap2
|
||||
CONFIGURE_ARGS+=--with-ldapsam
|
||||
|
@ -1,6 +1,6 @@
|
||||
--- configure.in.orig Sat Oct 13 17:09:16 2001
|
||||
+++ configure.in Fri Jan 11 19:58:14 2002
|
||||
@@ -1622,7 +1607,7 @@
|
||||
--- configure.in.orig Wed Feb 6 20:56:47 2002
|
||||
+++ configure.in Wed Mar 13 12:42:20 2002
|
||||
@@ -1792,7 +1792,7 @@
|
||||
yes)
|
||||
AC_MSG_RESULT(yes)
|
||||
AC_DEFINE(KRB5_AUTH)
|
||||
@ -9,3 +9,12 @@
|
||||
CFLAGS="$CFLAGS -I$withval/include"
|
||||
LDFLAGS="$LDFLAGS -L$withval/lib"
|
||||
;;
|
||||
@@ -1966,7 +1966,7 @@
|
||||
yes)
|
||||
AC_MSG_RESULT(yes)
|
||||
AC_DEFINE(WITH_LDAP_SAM)
|
||||
- LIBS="-lldap -llber -lresolv $LIBS"
|
||||
+ LIBS="-lldap -llber $LIBS"
|
||||
with_smbpasswd_sam=no
|
||||
;;
|
||||
*)
|
||||
|
Loading…
Reference in New Issue
Block a user