Changeset 113

Show
Ignore:
Timestamp:
21/10/08 15:45:55 (3 months ago)
Author:
smoku
Message:

Removed OpenSSL support

Location:
jggtrans/libgadu
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • jggtrans/libgadu/config.h.in

    r106 r113  
    1515/* Defined if this machine supports long long. */ 
    1616#undef GG_CONFIG_HAVE_LONG_LONG 
    17  
    18 /* Defined if libgadu was compiled and linked with TLS support. */ 
    19 #undef GG_CONFIG_HAVE_OPENSSL 
    2017 
    2118/* Defined if libgadu was compiled and linked with pthread support. */ 
     
    5451/* Define to 1 if you have the <memory.h> header file. */ 
    5552#undef HAVE_MEMORY_H 
    56  
    57 /* define if you have OpenSSL */ 
    58 #undef HAVE_OPENSSL 
    5953 
    6054/* Define if you have POSIX threads libraries and header files. */ 
  • jggtrans/libgadu/configure.ac

    r105 r113  
    174174]) 
    175175 
    176 dnl 
    177 dnl  Sprawdzamy OpenSSL 
    178 dnl 
    179  
    180 AC_CHECK_OPENSSL 
    181  
    182 if test "x$have_openssl" = "xyes"; then 
    183         LIBS="$LIBS $OPENSSL_LIBS" 
    184         CFLAGS="$CFLAGS $OPENSSL_INCLUDES" 
    185         INCLUDES="$INCLUDES $OPENSSL_INCLUDES" 
    186         REQUIRES="$REQUIRES openssl" 
    187         AC_DEFINE([GG_CONFIG_HAVE_OPENSSL], [], [Defined if libgadu was compiled and linked with TLS support.]) 
    188 fi 
    189  
    190176AC_CONFIG_FILES([Makefile src/Makefile include/Makefile]) 
    191177