41c93bc73a
Changelog of Samba2.2 Japanese Edition Samba Users Group Japan Here is the fix list of Samba2.2 Japanese Edition. The sign of each line means: *: Fix of Samba Japanese Edition only x: Fix of sending a patch to Samba Team c: Fix of being commited a patch by Samba Team samba-2.2.8a-ja-1.1beta9 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the internationalized version * Fixed build problem with Solaris for Sparc [sugj-tech:5695] * Fixed html conversion problem for swat [sugj-tech:5696] samba-2.2.8a-ja-1.1beta8 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the original version * Fixed ineffective cd(chdir) problem in smbsh [sugj-tech:5647] * Fixed smbsh problem with BSD original csh [sugj-tech:5649] * Added target in Makefile for ipk packages [sugj-tech:5661] samba-2.2.8a-ja-1.1beta7 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the original version * Fixed smbsh problem for Linux except i386 [sugj-tech:5619] * Fixed libtool dependence problem with VFS [sugj-tech:5624] samba-2.2.8a-ja-1.1beta6 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the original version * Fixed smbsh problem for some OSs [sugj-tech:5562] * Fixed libtool dependence problem with VFS [sugj-tech:5593] * Fixed Kerberos V problem [sugj-tech:5594] * Fixed smbsh problem for Linux except i386 [sugj-tech:5596] samba-2.2.8a-ja-1.1beta5 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the internationalized version * Fixed no daemon problem for smbd/nmbd with RPM package [sugj-tech:5515] * Fixed alternative getpass() problem in configure [sugj-tech:5522] Changes to the original version * Fixed huge file problem for Linux/ppc [sugj-tech:5531] * Fixed 64bits shared library problem on Solaris [sugj-tech:5535] samba-2.2.8a-ja-1.1beta4 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the internationalized version * Fixed existent gettext library problem [sugj-tech:5385] * Added -t (specify coding system) option for smbsh [sugj-tech:5476] Changes to the original version * Suppressed any warnings on Solaris with Forte C [sugj-tech:5370] * Fixed smbsh problem for some OSs [sugj-tech:5381] * Fixed missing low-level getcwd() problem [sugj-tech:5415] * Fixed timestamp problem for client programs [sugj-tech:5470] samba-2.2.8a-ja-1.1beta3 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the internationalized version * Fixed failure to compile for HP-UX 11.00 [sugj-tech:5320] * Fixed failure to compile for Solaris [sugj-tech:5322] Changes to the original version * Suppressed any warnings on Solaris [sugj-tech:5324] * Suppressed any warnings on some platforms for PAM [sugj-tech:5328] samba-2.2.8a-ja-1.1beta2 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the original version * Fixed ineffective problem of mangling char [sugj-tech:5308] * Fixed shared library problem for IRIX [sugj-tech:5310] * Suppressed any warnings on some platforms [sugj-tech:5310] samba-2.2.8a-ja-1.1beta1 ~~~~~~~~~~~~~~~~~~~~~~~~ Changes to the original version * Fixed an unsetable problem for group permission from WinXP [samba-jp:14786] * Fixed NT architecture problem for WinXP/2003 Server [samba-jp:14789] * Fixed configure problem for Solaris [samba-jp:14793] * Fixed password timeout ploblem with LDAP [sugj-tech:5299] * Fixed missing send/receive ploblem for huge files [samba-jp:14822] c Fixed using CIDR of 'hosts allow/deny' parameters [samba-jp:14615]
60 lines
1.9 KiB
Text
60 lines
1.9 KiB
Text
# $NetBSD: Makefile.common,v 1.4 2003/08/30 01:31:11 taca Exp $
|
|
|
|
DISTNAME= samba-${SAMBA_BASE_VERS}-ja-${SAMBA_JA_VERS}
|
|
SAMBA_BASE_VERS= 2.2.8a
|
|
SAMBA_JA_VERS= 1.1
|
|
WRKSRC?= ${WRKDIR}/${DISTNAME}/source
|
|
CATEGORIES?= net
|
|
MASTER_SITES= ftp://ftp.samba.gr.jp/pub/samba-jp/samba-${SAMBA_BASE_VERS}-ja/ \
|
|
ftp://ring.asahi-net.or.jp/pub/net/samba-jp/samba-${SAMBA_BASE_VERS}-ja/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
DISTINFO_FILE?= ${.CURDIR}/../../net/ja-samba/distinfo
|
|
PATCHDIR?= ${.CURDIR}/../../net/ja-samba/patches
|
|
|
|
GNU_CONFIGURE= # defined
|
|
USE_LIBTOOL= # defined
|
|
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PKG_SYSCONFSUBDIR?= samba
|
|
|
|
VARDIR?= /var
|
|
SAMBA_ETCDIR?= ${PKG_SYSCONFDIR}
|
|
SAMBA_DATADIR= ${PREFIX}/share
|
|
SAMBA_LOCKDIR?= ${VARDIR}/db/samba
|
|
SAMBA_LOGDIR?= ${VARDIR}/log
|
|
SAMBA_PIDDIR?= ${VARDIR}/run
|
|
SAMBA_PRIVATE?= ${SAMBA_ETCDIR}/private
|
|
|
|
CONFIGURE_ARGS+= --localstatedir=${VARDIR}
|
|
CONFIGURE_ARGS+= --sbindir=${PREFIX}/sbin
|
|
CONFIGURE_ARGS+= --with-configdir=${SAMBA_ETCDIR}
|
|
CONFIGURE_ARGS+= --with-codepagedir=${SAMBA_DATADIR}/samba/codepages
|
|
CONFIGURE_ARGS+= --with-datadir=${SAMBA_DATADIR}
|
|
CONFIGURE_ARGS+= --with-lockdir=${SAMBA_LOCKDIR}
|
|
CONFIGURE_ARGS+= --with-logfilebase=${SAMBA_LOGDIR}
|
|
CONFIGURE_ARGS+= --with-piddir=${SAMBA_PIDDIR}
|
|
CONFIGURE_ARGS+= --with-privatedir=${SAMBA_PRIVATE}
|
|
CONFIGURE_ARGS+= --with-swatdir=${SAMBA_DATADIR}/samba/swat
|
|
|
|
CONFIGURE_ARGS+= --without-readline
|
|
CONFIGURE_ARGS+= --without-ssl
|
|
|
|
CONFIGURE_ENV+= ac_cv_lib_curses_tgetent=no
|
|
|
|
CONFIGURE_ARGS+= --disable-cups
|
|
CONFIGURE_ARGS+= --without-pam
|
|
CONFIGURE_ARGS+= --without-winbind
|
|
|
|
CONFIGURE_ARGS+= --with-i18n-swat
|
|
|
|
# The following are Linux-only options.
|
|
CONFIGURE_ARGS+= --without-smbwrapper
|
|
CONFIGURE_ARGS+= --without-smbmount
|
|
|
|
FILES_SUBST= SAMBA_PRIVATE=${SAMBA_PRIVATE}
|
|
FILES_SUBST+= SAMBA_LOCKDIR=${SAMBA_LOCKDIR}
|
|
FILES_SUBST+= SAMBA_LOGDIR=${SAMBA_LOGDIR}
|
|
FILES_SUBST+= SAMBA_ETCDIR=${SAMBA_ETCDIR}
|