INN commit: trunk (Makefile.global.in nnrpd/Makefile)
INN Commit
rra at isc.org
Thu Nov 21 15:46:13 UTC 2013
Date: Thursday, November 21, 2013 @ 07:46:13
Author: iulius
Revision: 9572
properly link nnrpd with libcrypto
Since the separation of SSL_LIBS into OPENSSL_LIBS and CRYPTO_LIBS
in openssl.m4, the crypto part has been missing for nnrpd.
Now fixed.
Modified:
trunk/Makefile.global.in
trunk/nnrpd/Makefile
--------------------+
Makefile.global.in | 1 +
nnrpd/Makefile | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
Modified: Makefile.global.in
===================================================================
--- Makefile.global.in 2013-11-21 15:32:04 UTC (rev 9571)
+++ Makefile.global.in 2013-11-21 15:46:13 UTC (rev 9572)
@@ -174,6 +174,7 @@
SSL_CPPFLAGS = @OPENSSL_CPPFLAGS@
SSL_LDFLAGS = @OPENSSL_LDFLAGS@
SSL_LIBS = @OPENSSL_LIBS@
+CRYPTO_LIBS = @CRYPTO_LIBS@
SSLBIN = @SSLBIN@
Modified: nnrpd/Makefile
===================================================================
--- nnrpd/Makefile 2013-11-21 15:32:04 UTC (rev 9571)
+++ nnrpd/Makefile 2013-11-21 15:46:13 UTC (rev 9572)
@@ -34,7 +34,7 @@
NNRPDLIBS = $(LIBHIST) $(LIBSTORAGE) $(LIBINN) $(STORAGE_LIBS) \
$(PERL_LIBS) $(PYTHON_LIBS) $(SSL_LDFLAGS) $(SSL_LIBS) \
- $(SASL_LDFLAGS) $(SASL_LIBS) $(LIBS)
+ $(CRYPTO_LIBS) $(SASL_LDFLAGS) $(SASL_LIBS) $(LIBS)
.c.o:
$(CC) $(CFLAGS) $(SSL_CPPFLAGS) $(SASL_CPPFLAGS) -c $<
More information about the inn-committers
mailing list