aboutsummaryrefslogtreecommitdiff
path: root/mail/emailrelay/Makefile
Commit message (Collapse)AuthorAge
* treewide: refactor to use PKG_BUILD_FLAGS:=ltoAndre Heider2023-04-08
| | | | | | | | | | See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS" on the main repository. Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This fixes it and properly enables LTO. Signed-off-by: Andre Heider <a.heider@gmail.com>
* treewide: refactor to use PKG_BUILD_FLAGS:=gc-sectionsAndre Heider2023-04-08
| | | | | | | | | | | | See commit da370098 "treewide: add support for "gc-sections" in PKG_BUILD_FLAGS" on the main repository. Note: This only touches packages which use all three parts (-ffunction-sections, -fdata-sections and -Wl,--gc-sections) enabled by this build flag. Some packages only use a subset, and these are left unchanged for now. Signed-off-by: Andre Heider <a.heider@gmail.com>
* emailrelay: update to v2.4.1Sergey Ponomarev2022-12-20
| | | | | | | The patch seems not needed anymore. Also remove deprecated PKG_RELEASE:=$(AUTORELEASE) Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
* emailrelay: don't disable fortify sourceRosen Penev2022-02-04
| | | | | | GCC8 and 9 are gone. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* emailrelay: update to 2.2Rosen Penev2021-03-12
| | | | | | | | Remove upstreamed patch. Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* emailrelay: Update to 2.1Rosen Penev2019-10-20
| | | | | | | | | | | | | Remove uClibc++ reference. This requires C++11 features not provided by uClibc++. Added size optimizations as this package is huge. Cleaned up Makefile for consistency between packages. Refreshed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: Use default PKG_BUILD_DIR when possibleJeffery To2019-10-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes lines that set PKG_BUILD_DIR when the set value is no different from the default value. Specifically, the line is removed if the assigned value is: * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION) The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT if it is set, so now this is identical to the default value. * $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR) if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it the same as the previous case * $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) This is the same as the default PKG_BUILD_DIR when there is no BUILD_VARIANT. * $(BUILD_DIR)/[name]-$(PKG_VERSION) where [name] is a string that is identical to PKG_NAME [1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* emailrelay: Remove unnecessary OpenSSL engine includeRosen Penev2019-01-01
| | | | | | | There's no usage of any ENGINE APIs and trying to include the header breaks compilation with ENGINE support disabled. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* emailrelay: Remove SSLv3 optionRosen Penev2018-10-28
| | | | | | The next version of OpenSSL will not include support. Removing in advance. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* emailrelay: add some runtime optionsOthmar Truniger2018-08-20
| | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* emailrelay: avoind linking with -lpamEneas U de Queiroz2018-08-04
| | | | | | | The package seems to link to -lpam even when using --without-pam. Set ac_cv_search_pam_end=no to avoid it. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* emailrelay: Update to 2.0Rosen Penev2018-07-31
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* mail/emailrelay: tune up initscript and configPaul Wassi2017-11-17
| | | | | | | | | Previously, configuration of emailrelay was done by fiddling around with the commandline inside the initscript. Introduce a config file in /etc/config for basic configuration and at the same time switch to a procd-style initscript. Signed-off-by: Paul Wassi <p.wassi@gmx.at>
* mail/emailrelay: cosmetic fixesPaul Wassi2017-11-16
| | | | | | | | | | This is just a cosmetic thing, therefore no increase of PKG_RELEASE. - Trailing spaces and tabs - Add newline to end of file - Add License info to Makefile - Move maintainer definition to PKG_MAINTAINER Signed-off-by: Paul Wassi <p.wassi@gmx.at>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* emailrelay: bugfix #2401, switched to libstdcpp due to some uclibc++ issuesRupan2016-12-07
| | | | Signed-off-by: Federico Di Marco <fededim@gmail.com>
* emailrelay: added configuration optionsRupan2016-10-04
- moved from net to mail category - removed no-ssl package and added ssl support as configuration option (default enabled) - added configuration option to support extended logging (default disabled) - disabled build of test tools - added LEDE compatibility (support for openssl without SSL3) Signed-off-by: Federico Di Marco <fededim@gmail.com>