07234b4379
Samba3 patch is updated again so it applies after the new serive function update (#29075). I just tested it on my router and everything (still) seems to work. So please commit it. Through all versions these things are added to the original package in the repositories: * Updates samba3 package to version 3.0.37 * Splits nmbd and mountcifs into separate packages * Added settings to remove printing support and to make smbd even smaller * Removed LDAP, Kerebos and AD support * Added iconv support Signed-off-by: Maarten Bezemer <m.m.bezemer@utwente.nl> git-svn-id: svn://svn.openwrt.org/openwrt/packages@29343 3c298f89-4303-0410-b956-a3cf2f4a3e73
40 lines
1.8 KiB
Diff
40 lines
1.8 KiB
Diff
Index: samba-3.0.37/source/Makefile.in
|
|
===================================================================
|
|
--- samba-3.0.37.orig/source/Makefile.in 2009-09-30 14:21:56.000000000 +0200
|
|
+++ samba-3.0.37/source/Makefile.in 2011-04-03 20:35:19.000000000 +0200
|
|
@@ -92,7 +92,7 @@
|
|
# or in smb.conf (see smb.conf(5))
|
|
LOGFILEBASE = @logfilebase@
|
|
CONFIGFILE = $(CONFIGDIR)/smb.conf
|
|
-LMHOSTSFILE = $(CONFIGDIR)/lmhosts
|
|
+LMHOSTSFILE = /etc/lmhosts
|
|
|
|
# This is where smbpasswd et al go
|
|
PRIVATEDIR = @privatedir@
|
|
Index: samba-3.0.37/source/configure
|
|
===================================================================
|
|
--- samba-3.0.37.orig/source/configure 2009-09-30 15:08:58.000000000 +0200
|
|
+++ samba-3.0.37/source/configure 2011-04-03 20:35:20.000000000 +0200
|
|
@@ -1536,8 +1536,8 @@
|
|
--with-fhs Use FHS-compliant paths (default=no)
|
|
--with-privatedir=DIR Where to put smbpasswd ($ac_default_prefix/private)
|
|
--with-rootsbindir=DIR Which directory to use for root sbin ($ac_default_prefix/sbin)
|
|
- --with-lockdir=DIR Where to put lock files ($ac_default_prefix/var/locks)
|
|
- --with-piddir=DIR Where to put pid files ($ac_default_prefix/var/locks)
|
|
+ --with-lockdir=DIR Where to put lock files ($ac_default_prefix/var/lock)
|
|
+ --with-piddir=DIR Where to put pid files ($ac_default_prefix/var/run)
|
|
--with-swatdir=DIR Where to put SWAT files ($ac_default_prefix/swat)
|
|
--with-configdir=DIR Where to put configuration files ($libdir)
|
|
--with-logfilebase=DIR Where to put log files ($VARDIR)
|
|
@@ -2295,8 +2295,8 @@
|
|
|
|
|
|
rootsbindir="\${SBINDIR}"
|
|
-lockdir="\${VARDIR}/locks"
|
|
-piddir="\${VARDIR}/locks"
|
|
+lockdir="\${VARDIR}/lock"
|
|
+piddir="\${VARDIR}/run"
|
|
test "${mandir}" || mandir="\${prefix}/man"
|
|
logfilebase="\${VARDIR}"
|
|
privatedir="\${prefix}/private"
|