mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-03 20:54:42 +02:00
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>
19 lines
507 B
Diff
19 lines
507 B
Diff
Author: Daniel Jacobowitz <dan@debian.org>
|
|
Description: Build with tcpwrapper and SSL support.
|
|
|
|
diff -Naurp vsftpd.orig/builddefs.h vsftpd/builddefs.h
|
|
--- vsftpd.orig/builddefs.h 2009-01-31 00:02:36.000000000 +0000
|
|
+++ vsftpd/builddefs.h 2009-01-31 00:26:34.000000000 +0000
|
|
@@ -1,9 +1,9 @@
|
|
#ifndef VSF_BUILDDEFS_H
|
|
#define VSF_BUILDDEFS_H
|
|
|
|
-#undef VSF_BUILD_TCPWRAPPERS
|
|
+#define VSF_BUILD_TCPWRAPPERS 1
|
|
#define VSF_BUILD_PAM
|
|
-#undef VSF_BUILD_SSL
|
|
+#define VSF_BUILD_SSL
|
|
|
|
#endif /* VSF_BUILDDEFS_H */
|
|
|