My favorites | Sign in
Project Logo
                
New issue | Search
for
| Advanced search | Search tips
Issue 32: SSL build issue - patch attatched
1 person starred this issue and may be notified of changes. Back to list
 
Reported by noel.w8tvi, Sep 28, 2008
 'The current SSL branch does not build successfully, because the naming of
one of one of the #define''s in configure.ac conflicts with the struct
definitions for the SSL libraries (both are called SSL). By renaming this
to USE_SSL it builds fine. This is a quick patch which does the job:



--- dircproxy-SSL.clean/configure.ac	2005-02-23 18:05:57.000000000 +0000
+++ dircproxy-SSL/configure.ac	2005-02-23 18:03:10.000000000 +0000
@@ -69,8 +69,8 @@
 AC_ARG_ENABLE([ssl], AC_HELP_STRING([--enable-ssl], [Add SSL support]),
               [ if test "x${enable_ssl}" = "xyes"; then
 	                 use_ssl="y"
-			 CFLAGS="-DSSL $CFLAGS "
-                         AC_DEFINE([SSL], [1], [Try to sniff me now])
+			 CFLAGS="-DUSE_SSL $CFLAGS "
+                         AC_DEFINE([USE_SSL], [1], [Try to sniff me now])
                 fi ])
 # if test -z "${use_ssl}"; then
 #  AC_CHECK_FUNCS([str	 dup vasprintf vsnprintf])



PS: This is a blocker, right? I''m new to all this, but I figured given
without it it wouldn''t compile... I guess someone will bitch at me if I''m
wrong :)
Sign in to add a comment

Hosted by Google Code