From 443cf00359955073f2772af17d86a40e18f9b4eb Mon Sep 17 00:00:00 2001 From: Clement Laforet Date: Wed, 18 Aug 2004 19:11:12 +0000 Subject: [PATCH] - Fix buil with apache13 + ipv6 Set APACHE_PORT or define WITH_APACHE_IPV6 PR: ports/68158 Submitted by: SoD Obtained from: NetBSD --- www/mod_perl/Makefile | 4 ++ .../files/{patch-aa => patch-Makefile.PL} | 0 .../patch-src:modules:perl:Connection.xs | 39 +++++++++++++++++++ 3 files changed, 43 insertions(+) rename www/mod_perl/files/{patch-aa => patch-Makefile.PL} (100%) create mode 100644 www/mod_perl/files/patch-src:modules:perl:Connection.xs diff --git a/www/mod_perl/Makefile b/www/mod_perl/Makefile index e88fb95ad830..0d196c266410 100644 --- a/www/mod_perl/Makefile +++ b/www/mod_perl/Makefile @@ -40,6 +40,10 @@ MAN3= Apache.3 Apache::Constants.3 Apache::ExtUtils.3 \ mod_perl_cvs.3 mod_perl_method_handlers.3 mod_perl_traps.3 \ mod_perl_tuning.3 +.if defined(WITH_APACHE_IPV6) && ${APACHE_PORT:Mipv6} +CFLAGS+= -DAPACHE6 +.endif + .include post-install: diff --git a/www/mod_perl/files/patch-aa b/www/mod_perl/files/patch-Makefile.PL similarity index 100% rename from www/mod_perl/files/patch-aa rename to www/mod_perl/files/patch-Makefile.PL diff --git a/www/mod_perl/files/patch-src:modules:perl:Connection.xs b/www/mod_perl/files/patch-src:modules:perl:Connection.xs new file mode 100644 index 000000000000..22eea28838da --- /dev/null +++ b/www/mod_perl/files/patch-src:modules:perl:Connection.xs @@ -0,0 +1,39 @@ +--- src/modules/perl/Connection.xs.orig Fri Nov 23 06:19:44 2001 ++++ src/modules/perl/Connection.xs Fri Nov 23 10:29:44 2001 +@@ -78,7 +78,11 @@ + RETVAL = newSVpv((char *)&conn->remote_addr, + sizeof conn->remote_addr); + if(sv_addr) { ++#ifdef APACHE6 ++ struct sockaddr_storage addr; ++#else + struct sockaddr_in addr; ++#endif + STRLEN sockaddrlen; + char * new_addr = SvPV(sv_addr,sockaddrlen); + if (sockaddrlen != sizeof(addr)) { +@@ -106,7 +110,26 @@ + #else + conn->remote_ip = pstrdup(conn->pool, (char *)SvPV(ST(1),na)); + #endif ++#ifdef APACHE6 ++ { ++ struct addrinfo hints, *res0; ++ int error; ++ ++ memset(&hints, 0, sizeof(hints)); ++ hints.ai_family = PF_UNSPEC; ++ hints.ai_flags = AI_NUMERICHOST; ++ error = getaddrinfo(conn->remote_ip, NULL, &hints, &res0); ++ if (!error) { ++ memcpy(&conn->remote_addr, res0->ai_addr, res0->ai_addrlen); ++ freeaddrinfo(res0); ++ } else { ++ croak("Bad ip address in remote_ip getaddrinfo failed %s", ++ gai_strerror(error)); ++ } ++ } ++#else + conn->remote_addr.sin_addr.s_addr = inet_addr(conn->remote_ip); ++#endif + }