#16392: vtun 3.0.2 patch fix ---------------------------------+------------------------------------------ Reporter: emertens@gmail.com | Owner: ryandesign@macports.org Type: defect | Status: closed Priority: Normal | Milestone: Port Bugs Component: ports | Version: 1.6.0 Resolution: fixed | Keywords: Port: vtun | ---------------------------------+------------------------------------------ Changes (by jmr@macports.org): * keywords: ticketformatting => * port: => vtun Old description:
The patch included in vtun 3.0.2 needs to be updated to the following (the change is the md5.h line). This is required to build.
--- lfd_legacy_encrypt.c 2008-07-09 16:06:01.000000000 -0400 +++ lfd_legacy_encrypt.c 2008-07-09 16:07:06.000000000 -0400 @@ -55,7 +55,7 @@ #include <openssl/blowfish.h> #else /* YAY - We're MAC OS */ -#include <sys/md5.h> -#include <crypto/blowfish.h> +#include <openssl/md5.h> +#include <openssl/blowfish.h> #endif /* __APPLE_CC__ */
#define ENC_BUF_SIZE VTUN_FRAME_SIZE + 16
New description: The patch included in vtun 3.0.2 needs to be updated to the following (the change is the md5.h line). This is required to build. {{{ --- lfd_legacy_encrypt.c 2008-07-09 16:06:01.000000000 -0400 +++ lfd_legacy_encrypt.c 2008-07-09 16:07:06.000000000 -0400 @@ -55,7 +55,7 @@ #include <openssl/blowfish.h> #else /* YAY - We're MAC OS */ -#include <sys/md5.h> -#include <crypto/blowfish.h> +#include <openssl/md5.h> +#include <openssl/blowfish.h> #endif /* __APPLE_CC__ */ #define ENC_BUF_SIZE VTUN_FRAME_SIZE + 16 }}} -- -- Ticket URL: <http://trac.macports.org/ticket/16392#comment:7> MacPorts <http://www.macports.org/> Ports system for Mac OS