diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-08-27 14:13:25 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-08-30 14:46:15 +0300 |
commit | b5d1286f2d796ce6dfcf45b9eeb0cf5630c191a9 (patch) | |
tree | 94590ff617c23a2c0b9088f612efa75e5c65b873 | |
parent | f9e140a243b6d6b5d28bd0813b69604562a39653 (diff) | |
download | patches-b5d1286f2d796ce6dfcf45b9eeb0cf5630c191a9.tar patches-b5d1286f2d796ce6dfcf45b9eeb0cf5630c191a9.tar.gz |
gnu: net-snmp: Specify '--with-openssl' configuration flag.
* gnu/packages/networking.scm (net-snmp)[arguments]: Add '--with-openssl'
flag.
-rw-r--r-- | gnu/packages/networking.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 943bcecb86..61c0ad7fba 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2013,7 +2013,9 @@ Features: (list (string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib") - "--with-logfile=/var/log/snmpd.log") + "--with-logfile=/var/log/snmpd.log" + (string-append "--with-openssl=" + (assoc-ref %build-inputs "openssl"))) #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-tests |