mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
07c597671f
The 3.2.x series contains many enhanced features, most notably built in SSL capabilities. Changes for the port itself: 1. Add new MASTER_SITES. 2. Search for an apache binary, not a document directory. 3. The new version uses libtool, so add USE_LIBTOOL per portlint. 4. The new configure script is much more thorough, so use a more complete set of options, and sort them in "./configure --help" order. 5. CXXFLAGS hackery no longer needed in FreeBSD 5.x, but 6. A patch to include headers for select() is needed in RELENG_4. 7. Install PORTDOCS, especially the very thorough html help files. 8. Add SIZE to distinfo. 9. Make deletion of directories with user-configurable stuff conditional.
14 lines
324 B
C++
14 lines
324 B
C++
--- htnet/SSLConnection.cc.orig Mon Jul 21 01:16:11 2003
|
|
+++ htnet/SSLConnection.cc Fri Mar 19 00:57:38 2004
|
|
@@ -29,6 +29,10 @@
|
|
#include <iostream.h>
|
|
#endif /* HAVE_STD */
|
|
|
|
+#include <sys/types.h>
|
|
+#include <sys/time.h>
|
|
+#include <unistd.h>
|
|
+
|
|
// Global needed only once in HtDig
|
|
//
|
|
SSL_CTX *SSLConnection::ctx = NULL;
|