diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2012-02-20 18:29:41 +0000 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-02-22 09:45:55 +0100 |
| commit | f89d930201725d0427b0c1e881cff929c5a8ef7e (patch) | |
| tree | 0f2c07e66fb634cfd7d9072653ea6141d9780294 /vsftpd/09-s390.patch | |
| parent | b9fbd254ba2bcf7d350842e8467f50c4016fc5b8 (diff) | |
| download | meta-openembedded-f89d930201725d0427b0c1e881cff929c5a8ef7e.tar.gz | |
vsftpd: add new package
Hello Eric,
On 20.02.2012 14:51, Eric Bénard wrote:
> - imported 2.0.5 from oe-classic
> - upgrade to 2.3.5 which is latest stable
> - tested on ARMv5 with Angstrom
I created a recipe for vsftpd, too. Here's my version for your
reference. All patches were taken from the Debian or Ubuntu package.
It differs from your recipe in these ways:
- uses openssl
- uses pam if available
- uses xinetd
- allows to set custom default configuration options in bbappends
- only build-tested with OE-core, no runtime tests so far.
Regards,
Andreas
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'vsftpd/09-s390.patch')
| -rw-r--r-- | vsftpd/09-s390.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vsftpd/09-s390.patch b/vsftpd/09-s390.patch new file mode 100644 index 0000000000..4711f9bc68 --- /dev/null +++ b/vsftpd/09-s390.patch | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | Author: Philipp Kern <pkern@debian.org> | ||
| 2 | Description: Fix vsftpd on s390 (Closes: #602726). | ||
| 3 | |||
| 4 | diff -Naurp vsftpd.orig/sysdeputil.c vsftpd/sysdeputil.c | ||
| 5 | --- vsftpd.orig/sysdeputil.c 2011-09-05 16:03:18.728857644 +0200 | ||
| 6 | +++ vsftpd/sysdeputil.c 2011-09-05 16:05:12.909423834 +0200 | ||
| 7 | @@ -64,7 +64,7 @@ | ||
| 8 | #include <utmpx.h> | ||
| 9 | |||
| 10 | /* BEGIN config */ | ||
| 11 | -#if defined(__linux__) | ||
| 12 | +#if defined(__linux__) && !defined(__s390__) | ||
| 13 | #include <errno.h> | ||
| 14 | #include <syscall.h> | ||
| 15 | #define VSF_SYSDEP_HAVE_LINUX_CLONE | ||
