svn commit: r401904 - in head/devel/efl: . files

Grzegorz Blach gblach at FreeBSD.org
Wed Nov 18 23:42:09 UTC 2015


Author: gblach
Date: Wed Nov 18 23:42:07 2015
New Revision: 401904
URL: https://svnweb.freebsd.org/changeset/ports/401904

Log:
  Fix build when SSL is off
  
  PR:	204611

Added:
  head/devel/efl/files/patch-src-lib-eet-eet_cipher.c   (contents, props changed)
Modified:
  head/devel/efl/Makefile

Modified: head/devel/efl/Makefile
==============================================================================
--- head/devel/efl/Makefile	Wed Nov 18 22:50:48 2015	(r401903)
+++ head/devel/efl/Makefile	Wed Nov 18 23:42:07 2015	(r401904)
@@ -3,6 +3,7 @@
 
 PORTNAME=	efl
 PORTVERSION=	1.16.0
+PORTREVISION=	1
 CATEGORIES=	devel enlightenment
 MASTER_SITES=	http://download.enlightenment.org/rel/libs/${PORTNAME}/
 

Added: head/devel/efl/files/patch-src-lib-eet-eet_cipher.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/efl/files/patch-src-lib-eet-eet_cipher.c	Wed Nov 18 23:42:07 2015	(r401904)
@@ -0,0 +1,17 @@
+diff --git a/src/lib/eet/eet_cipher.c b/src/lib/eet/eet_cipher.c
+index bb85452..9bff406 100644
+--- src/lib/eet/eet_cipher.c.orig
++++ src/lib/eet/eet_cipher.c
+@@ -236,9 +236,9 @@ on_error:
+ 
+ # endif /* ifdef HAVE_GNUTLS */
+ #else
+-   void (certificate_file);
+-   void (private_key_file);
+-   void (cb);
++   certificate_file = NULL;
++   private_key_file = NULL;
++   cb = NULL;
+ #endif /* ifdef HAVE_SIGNATURE */
+    return NULL;
+ }


More information about the svn-ports-all mailing list