From owner-freebsd-ports-bugs@freebsd.org Sun Dec 4 17:18:31 2016 Return-Path: Delivered-To: freebsd-ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 660B4C6708B for ; Sun, 4 Dec 2016 17:18:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AC5BDB5 for ; Sun, 4 Dec 2016 17:18:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uB4HIUVU092504 for ; Sun, 4 Dec 2016 17:18:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 215047] www/uwsgi: Support OpenSSL properly Date: Sun, 04 Dec 2016 17:18:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: m.r.sopacua@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: demon@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Dec 2016 17:18:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215047 Bug ID: 215047 Summary: www/uwsgi: Support OpenSSL properly Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: demon@FreeBSD.org Reporter: m.r.sopacua@gmail.com Flags: maintainer-feedback?(demon@FreeBSD.org) Assignee: demon@FreeBSD.org Following up on github bug #1395: The uwsgi port isn't setup to work with SSL correctly. If two API-incompati= ble versions are installed (in base and from ports) linking/building goes rather badly. To prepare uwsgi for building against other SSL libraries, I'd appreciate t= he following patch to the Makefile: --- www/uwsgi/Makefile.orig +++ www/uwsgi/Makefile @@ -12,7 +12,7 @@ COMMENT=3D Developer-friendly WSGI server which uses uwsgi proto LICENSE=3D GPLv2 LICENSE_FILE=3D ${WRKSRC}/LICENSE -USES=3D python +USES=3D python ssl USE_PYTHON=3D distutils USE_RC_SUBR=3D uwsgi @@ -43,6 +43,8 @@ O_XML=3D libxml2 O_XML=3D false .endif +CFLAGS+=3D -I${OPENSSLINC} +LDFLAGS+=3D ${OPENSSL_LDFLAGS} MAKE_ENV+=3D CPUCOUNT=3D${MAKE_JOBS_NUMBER} UWSGI_EMBED_PLUGINS=3Dcgi PYSETUP=3D uwsgiconfig.py --=20 You are receiving this mail because: You are the assignee for the bug.=