Search Criteria
Package Details: nmh 1.7.1-1
Git Clone URL: | https://aur.archlinux.org/nmh.git (read-only, click to copy) |
---|---|
Package Base: | nmh |
Description: | Powerful electronic mail handling system, based on a set of command-line utilities. |
Upstream URL: | http://www.nongnu.org/nmh/ |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | None |
Maintainer: | aksr |
Last Packager: | aksr |
Votes: | 24 |
Popularity: | 0.000000 |
First Submitted: | 2006-02-27 04:20 |
Last Updated: | 2018-08-18 05:23 |
Latest Comments
loebl commented on 2017-11-22 22:07
updated, nice. Thank you!
loebl commented on 2017-11-10 13:14
currently configure does not recognize OpenSSL 1.1. Similiar to this bug: https://bugs.archlinux.org/task/53809
necessary patch:
--- configure.ac 2014-05-16 05:03:13.000000000 +0200
+++ configure.ac.new 2017-11-10 15:05:50.422571460 +0100
@@ -481,7 +481,7 @@
AC_CHECK_HEADER([openssl/ssl.h], , [AC_MSG_ERROR([openssl/ssl.h not found])])
AC_CHECK_LIB([crypto], [BIO_write], [TLSLIB="-lcrypto"],
[AC_MSG_ERROR([OpenSSL crypto library not found])])
- AC_CHECK_LIB([ssl], [SSL_library_init], [TLSLIB="-lssl $TLSLIB"],
+ AC_CHECK_LIB([ssl], [OPENSSL_init_ssl], [TLSLIB="-lssl $TLSLIB"],
[AC_MSG_ERROR([OpenSSL library not found])],[$TLSLIB])],
[TLSLIB=])
AC_SUBST([TLSLIB])
after that, just run autogen.sh and proceed with makepkg. It's just one line, but if you want to I can send you the patch file.
Also it seems nmh 1.7 is incoming.
Ocypheum commented on 2016-01-06 03:51
Something is wrong with this package. All the config files end up in /etc/ instead of in /etc/nmh/.
ankz commented on 2012-05-19 04:10
Please consider replacing '$startdir/src' with '$srcdir' in the PKGBUILD to support a non-default BUILDDIR in /etc/makepkg.conf. Thank you.