svn commit: r481274 - in head/www/neon: . files
Lev A. Serebryakov
lev at FreeBSD.org
Fri Oct 5 12:21:47 UTC 2018
Author: lev
Date: Fri Oct 5 12:21:46 2018
New Revision: 481274
URL: https://svnweb.freebsd.org/changeset/ports/481274
Log:
Fix build with openssl 1.1.1
PR: 228867
Submitted by: brnrd at freebsd.org
Added:
head/www/neon/files/
head/www/neon/files/patch-configure (contents, props changed)
Modified:
head/www/neon/Makefile
Modified: head/www/neon/Makefile
==============================================================================
--- head/www/neon/Makefile Fri Oct 5 11:07:12 2018 (r481273)
+++ head/www/neon/Makefile Fri Oct 5 12:21:46 2018 (r481274)
@@ -3,7 +3,7 @@
PORTNAME= neon
PORTVERSION= 0.30.2
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= LOCAL/lev
@@ -14,6 +14,7 @@ LICENSE= GPLv2
USES= pathfix libtool
USE_LDCONFIG= yes
+
GNU_CONFIGURE= yes
OPTIONS_SUB= yes
Added: head/www/neon/files/patch-configure
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/neon/files/patch-configure Fri Oct 5 12:21:46 2018 (r481274)
@@ -0,0 +1,30 @@
+--- configure.orig 2018-10-05 00:12:59 UTC
++++ configure
+@@ -6318,7 +6318,7 @@ $ne__code
+ }
+ _ACEOF
+ if ac_fn_c_try_link "$LINENO"; then :
+- ne_cv_libsfor_SSL_library_init="-l$lib -ldl"; break
++ ne_cv_libsfor_SSL_library_init_ssl="-l$lib -ldl"; break
+ fi
+ rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+@@ -6329,14 +6329,14 @@ rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext conftest.$ac_ext
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ne_cv_libsfor_SSL_library_init" >&5
+-$as_echo "$ne_cv_libsfor_SSL_library_init" >&6; }
++$as_echo "$ne_cv_libsfor_SSL_library_init_ssl" >&6; }
+
+-if test "$ne_cv_libsfor_SSL_library_init" = "not found"; then
++if test "$ne_cv_libsfor_SSL_library_init_ssl" = "not found"; then
+ as_fn_error $? "could not find library containing SSL_library_init" "$LINENO" 5
+-elif test "$ne_cv_libsfor_SSL_library_init" = "none needed"; then
++elif test "$ne_cv_libsfor_SSL_library_init_ssl" = "none needed"; then
+ :
+ else
+- NEON_LIBS="$ne_cv_libsfor_SSL_library_init $NEON_LIBS"
++ NEON_LIBS="$ne_cv_libsfor_SSL_library_init_ssl $NEON_LIBS"
+
+ fi
+ else
More information about the svn-ports-all
mailing list