* [Buildroot] [PATCH/Next v2] package/proftpd: add BR2_PACKAGE_PROFTPD_MOD_SFTP
@ 2018-08-14 18:15 Matt Weber
2018-08-14 20:22 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Matt Weber @ 2018-08-14 18:15 UTC (permalink / raw)
To: buildroot
From: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com>
This patch adds BR2_PACKAGE_PROFTPD_MOD_SFTP support and also
changes the .mk file to add required modules as a list in a
separate variable. This new variable will help in future to add
more module support in proftpd package.
Signed-off-by: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com>
Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
---
Changes
v1 ->v2
- Added a disable condition for the BR2_PACKAGE_PROFTPD_MOD_SFTP
conditional in the .mk
[Baruch
- Added dependency on openssl and did testpkg runs on libopenssl
and libressl as the backend
[Thomas P
- Cleaned up final --with-modules using Thomas's makeish approach
---
package/proftpd/Config.in | 6 ++++++
package/proftpd/proftpd.mk | 15 ++++++++++++++-
2 files changed, 20 insertions(+), 1 deletion(-)
diff --git a/package/proftpd/Config.in b/package/proftpd/Config.in
index e979d40..e7e3c13 100644
--- a/package/proftpd/Config.in
+++ b/package/proftpd/Config.in
@@ -20,4 +20,10 @@ config BR2_PACKAGE_PROFTPD_MOD_REDIS
The mod_redis module enables ProFTPD support for caching
data in Redis servers, using the hiredis client library.
+config BR2_PACKAGE_PROFTPD_MOD_SFTP
+ bool "mod_sftp support"
+ select BR2_PACKAGE_OPENSSL
+ help
+ Compile ProFTPD with mod_sftp support
+
endif
diff --git a/package/proftpd/proftpd.mk b/package/proftpd/proftpd.mk
index 3e165c6..873ccf2 100644
--- a/package/proftpd/proftpd.mk
+++ b/package/proftpd/proftpd.mk
@@ -23,8 +23,11 @@ PROFTPD_CONF_OPTS = \
--enable-shadow \
--with-gnu-ld
+#Append all required modules in PROFTPD_MODULES variable
+#Use 'space' seperator for more than one module
+#e.g. PROFTPD_MODULES += mod_readme mod_ifsession
ifeq ($(BR2_PACKAGE_PROFTPD_MOD_REWRITE),y)
-PROFTPD_CONF_OPTS += --with-modules=mod_rewrite
+PROFTPD_MODULES = mod_rewrite
endif
ifeq ($(BR2_PACKAGE_PROFTPD_MOD_REDIS),y)
@@ -34,6 +37,16 @@ else
PROFTPD_CONF_OPTS += --disable-redis
endif
+ifeq ($(BR2_PACKAGE_PROFTPD_MOD_SFTP),y)
+PROFTPD_CONF_OPTS += --enable-openssl
+PROFTPD_MODULES += mod_sftp
+PROFTPD_DEPENDENCIES += openssl
+else
+PROFTPD_CONF_OPTS += --disable-openssl
+endif
+
+PROFTPD_CONF_OPTS += --with-modules=$(subst $(space),:,$(PROFTPD_MODULES))
+
# configure script doesn't handle detection of %llu format string
# support for printing the file size when cross compiling, breaking
# access for large files.
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH/Next v2] package/proftpd: add BR2_PACKAGE_PROFTPD_MOD_SFTP
2018-08-14 18:15 [Buildroot] [PATCH/Next v2] package/proftpd: add BR2_PACKAGE_PROFTPD_MOD_SFTP Matt Weber
@ 2018-08-14 20:22 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2018-08-14 20:22 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 14 Aug 2018 13:15:25 -0500, Matt Weber wrote:
> +#Append all required modules in PROFTPD_MODULES variable
> +#Use 'space' seperator for more than one module
> +#e.g. PROFTPD_MODULES += mod_readme mod_ifsession
This comment really wasn't necessary, that's how we do things
everywhere in Buildroot, for all variables.
> ifeq ($(BR2_PACKAGE_PROFTPD_MOD_REWRITE),y)
> -PROFTPD_CONF_OPTS += --with-modules=mod_rewrite
> +PROFTPD_MODULES = mod_rewrite
I changed the "=" here to a "+=" to avoid potential mistakes in the
future.
Applied to next with those changes. Thanks!
Thomas
--
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-08-14 20:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-14 18:15 [Buildroot] [PATCH/Next v2] package/proftpd: add BR2_PACKAGE_PROFTPD_MOD_SFTP Matt Weber
2018-08-14 20:22 ` Thomas Petazzoni
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.