diff options
author | taca <taca> | 2002-06-25 15:31:32 +0000 |
---|---|---|
committer | taca <taca> | 2002-06-25 15:31:32 +0000 |
commit | 41aa7800e3527a003020540265bcf0057937085b (patch) | |
tree | e52053348ff418cf08826173b8da9d0ee9316cfd /net/ja-samba/patches/patch-ab | |
parent | 0ba864b4db368df0b12b3737318d8483b1499cdb (diff) | |
download | pkgsrc-41aa7800e3527a003020540265bcf0057937085b.tar.gz |
Importing ja-samba 2.2.2.1.1 package.
This is modified version deveopled by Samba Users Group Japan.
o I18N for SWAT.
Select display language based on information supplied by
Web browser.
o L10N for Japanese.
Support various use of Japanese name; share name, computer
name, workgroup name, user name.
Solve some problems when different version of Windows are
mixed. Especially, vanilla samba dosen't support vendor
depended characters completely. (Those characters are
differently handled among Windows 95, Windows 98, Windows NT
and something changed in Windows XP.) This cause practical
problem on real world.
o Some Bugfix go ahead to original samba.
o Some original feature
Supoprt a recycle bin.
Currently it is samba 2.2.2 base, and they are developing newer
version based on samba 2.2.4.
Diffstat (limited to 'net/ja-samba/patches/patch-ab')
-rw-r--r-- | net/ja-samba/patches/patch-ab | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/net/ja-samba/patches/patch-ab b/net/ja-samba/patches/patch-ab new file mode 100644 index 00000000000..b84e8391234 --- /dev/null +++ b/net/ja-samba/patches/patch-ab @@ -0,0 +1,52 @@ +$NetBSD: patch-ab,v 1.1.1.1 2002/06/25 15:31:34 taca Exp $ + +--- configure.in.orig Wed Feb 20 16:39:39 2002 ++++ configure.in +@@ -13,13 +13,15 @@ + codepagedir="\$(DATADIR)/samba/codepages" + configdir="${sysconfdir}/samba" + lockdir="\${VARDIR}/cache/samba" ++ piddir="\$(VARDIR)/run" + logfilebase="\${VARDIR}/log/samba" + privatedir="\${CONFIGDIR}/private" + swatdir="\${DATADIR}/samba/swat", + codepagedir="\$(LIBDIR)/codepages" + configdir="\$(LIBDIR)" + lockdir="\$(VARDIR)/locks" +- logfilebase="\$(VARDIR)" ++ piddir="\${VARDIR}/run" ++ logfilebase="\$(VARDIR)/log" + privatedir="\${prefix}/private" + swatdir="\${prefix}/swat") + +@@ -56,6 +58,22 @@ + esac]) + + ################################################# ++# set pid directory location ++AC_ARG_WITH(piddir, ++[ --with-piddir=DIR Where to put lock files (\${VARDIR}/run)], ++[ case "$withval" in ++ yes|no) ++ # ++ # Just in case anybody calls it without argument ++ # ++ AC_MSG_WARN([--with-piddir called without argument - will use default]) ++ ;; ++ * ) ++ piddir="$withval" ++ ;; ++ esac]) ++ ++################################################# + # set SWAT directory location + AC_ARG_WITH(swatdir, + [ --with-swatdir=DIR Where to put SWAT files ($ac_default_prefix/swat)], +@@ -108,6 +126,7 @@ + AC_SUBST(configdir) + AC_SUBST(lockdir) + AC_SUBST(logfilebase) ++AC_SUBST(piddir) + AC_SUBST(privatedir) + AC_SUBST(swatdir) + AC_SUBST(bindir) |