Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
aports
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
642
Issues
642
List
Boards
Labels
Service Desk
Milestones
Merge Requests
195
Merge Requests
195
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpine
aports
Commits
a808081b
Commit
a808081b
authored
Jun 23, 2010
by
Natanael Copa
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
main/samba: upgrade to 3.4.8
fixes
#370
parent
96848a5e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
3 deletions
+27
-3
main/samba/APKBUILD
main/samba/APKBUILD
+12
-3
main/samba/samba-uclibc-fstab.patch
main/samba/samba-uclibc-fstab.patch
+15
-0
No files found.
main/samba/APKBUILD
View file @
a808081b
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname
=
samba
pkgver
=
3.4.
7
pkgver
=
3.4.
8
pkgrel
=
0
pkgdesc
=
"Tools to access a server's filespace and printers via SMB"
url
=
"http://www.samba.org"
...
...
@@ -13,9 +13,17 @@ source="http://us1.$pkgname.org/$pkgname/ftp/stable/$pkgname-$pkgver.tar.gz
samba.initd
samba.confd
samba.logrotate
samba-uclibc-fstab.patch
"
pkggroups
=
"winbind"
prepare
()
{
cd
"
$srcdir
"
/
$pkgname
-
$pkgver
/source3
for
i
in
"
$srcdir
"
/
*
.patch
;
do
patch
-p1
-i
"
$i
"
||
return
1
done
}
build
()
{
cd
"
$srcdir
"
/
$pkgname
-
$pkgver
/source3
./configure
--prefix
=
/usr
\
...
...
@@ -108,7 +116,8 @@ tdb() {
usr/bin/tdb
*
}
md5sums
=
"f
5e11690d54466c143f4598bcce2a8bb samba-3.4.7
.tar.gz
md5sums
=
"f
e1f6c77be289fd65e19419c1bcaa42c samba-3.4.8
.tar.gz
c8a7f6ac5df2f73dbf023e25ea39927b samba.initd
c150433426e18261e6e3eed3930e1a76 samba.confd
b7cafabfb4fa5b3ab5f2e857d8d1c733 samba.logrotate"
b7cafabfb4fa5b3ab5f2e857d8d1c733 samba.logrotate
811e5a3f570d0053cf27a73248be4ae6 samba-uclibc-fstab.patch"
main/samba/samba-uclibc-fstab.patch
0 → 100644
View file @
a808081b
--- ./client/mount.cifs.c.orig
+++ ./client/mount.cifs.c
@@ -39,7 +39,11 @@
#include <mntent.h>
#include <fcntl.h>
#include <limits.h>
-#include <fstab.h>
+#if defined(__UCLIBC__)
+ #define _PATH_FSTAB "/etc/fstab"
+#else
+ #include <fstab.h>
+#endif
#include "mount.h"
#define MOUNT_CIFS_VERSION_MAJOR "1"
Natanael Copa
@ncopa
mentioned in issue
#370 (closed)
·
Jul 12, 2019
mentioned in issue
#370 (closed)
mentioned in issue #370
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment