summaryrefslogtreecommitdiff
path: root/japanese/samba/scripts
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2003-08-29 09:11:18 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2003-08-29 09:11:18 +0000
commite442b2d3d48c12e73d773f49250dd6e25e9ead6c (patch)
treea8df56fcc55a8fb3eea1cebf16c18d94df84dac3 /japanese/samba/scripts
parent- Update to 2.02 (diff)
Update to 2.2.8a-ja-1.1 released on Aug/28/2003
o CUPS is not used in default. o Some FreeBSD specific patches are included samba-ja itself. PR: ports/56122 Submitted by: NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (maintainer)
Notes
Notes: svn path=/head/; revision=87965
Diffstat (limited to 'japanese/samba/scripts')
-rw-r--r--japanese/samba/scripts/configure.samba14
1 files changed, 11 insertions, 3 deletions
diff --git a/japanese/samba/scripts/configure.samba b/japanese/samba/scripts/configure.samba
index 80af4c823d43..2058a5b470a3 100644
--- a/japanese/samba/scripts/configure.samba
+++ b/japanese/samba/scripts/configure.samba
@@ -17,7 +17,8 @@ Please select desired options:" -1 -1 12 \
syslog "With syslog support" OFF \
ssl "With ssl support" OFF \
ldap "With LDAP2 support" OFF \
-nocups "Without CUPS" OFF \
+cups "With CUPS" OFF \
+gettext "With GNU gettext" OFF \
acl "With ACL support" OFF \
utmp "With UTMP support" OFF \
msdfs "With MSDFS support" OFF \
@@ -26,6 +27,7 @@ recycle "With Recycle Bin" OFF \
audit "With Audit" OFF \
winbind "With Winbind" OFF \
wbauth "With Winbind Auth Challenge" OFF \
+smbsh "With Smbsh and smbwrapper" OFF \
2> $tempfile
retval=$?
@@ -60,8 +62,11 @@ while [ "$1" ]; do
\"ldap\")
echo "WITH_LDAP=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
;;
- \"nocups\")
- echo "WITHOUT_CUPS=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
+ \"cups\")
+ echo "WITH_CUPS=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
+ ;;
+ \"gettext\")
+ echo "WITH_GNU_GETTEXT=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
;;
\"acl\")
echo "WITH_ACL_SUPPORT=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
@@ -87,6 +92,9 @@ while [ "$1" ]; do
\"wbauth\")
echo "WITH_WINBIND_AUTH_CHALLENGE=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
;;
+ \"smbsh\")
+ echo "WITH_SMBSH=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc
+ ;;
*)
echo "Invalid option: $1"
rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc