From 57004919aaac3462687378d52616844cfdae2656 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Mon, 26 Nov 2012 14:42:05 +0100 Subject: [PATCH] Removed SSL requirement, added GNU_SOURCE in configure.ac --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5a8dd7c9..63630ca1 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,8 @@ AC_PROG_CXX AC_PROG_CC # Checks for libraries. -AC_CHECK_LIB(ssl, RC4) +AC_DEFINE(_GNU_SOURCE) +#AC_CHECK_LIB(ssl, RC4) # Checks for header files. AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h stdint.h stdlib.h string.h sys/socket.h sys/time.h unistd.h])