From de7aed13066a1954c985a97c3e8c73f0d33929bd Mon Sep 17 00:00:00 2001 From: Zachary Pavlov Date: Tue, 17 Jul 2007 05:38:05 +0000 Subject: [PATCH] fixed issue preventing compile without ssl --- panda/src/nativenet/config_nativenet.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panda/src/nativenet/config_nativenet.cxx b/panda/src/nativenet/config_nativenet.cxx index e594af8a6b..0baa8be8de 100644 --- a/panda/src/nativenet/config_nativenet.cxx +++ b/panda/src/nativenet/config_nativenet.cxx @@ -58,7 +58,9 @@ init_libnativenet() { Socket_IP::init_type(); Socket_TCP::init_type(); Socket_TCP_Listen::init_type(); +#ifdef HAVE_OPENSSL Socket_TCP_SSL::init_type(); +#endif Socket_UDP_Incoming::init_type(); Socket_UDP_Outgoing::init_type(); Socket_UDP::init_type();