Skip Menu |

This queue is for tickets about the Apache2-ModSSL CPAN distribution.

Report information
The Basics
Id: 85764
Status: new
Priority: 0/
Queue: Apache2-ModSSL

People
Owner: Nobody in particular
Requestors: jquelin [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Makefile.PL should also query INCLUDEDIR from apxs
Makefile.PL queries EXTRA_INCLUDES from apxs, but it should also query INCLUDEDIR attached patch fixes the problem.
Subject: Apache2-ModSSL-0.10-add_apxs_includedir.patch
--- Makefile.PL.orig 2013-05-31 14:09:56.468100782 +0200 +++ Makefile.PL 2013-05-31 14:11:13.104848616 +0200 @@ -53,9 +53,11 @@ if( length $apxs ) { warn "# Using apxs at $apxs\n"; + my ($inc) =qx/$apxs -q INCLUDEDIR/; my ($extra)=qx/$apxs -q EXTRA_INCLUDES/; + chomp $inc; chomp $extra; - push @ARGV, "INC=$extra" + push @ARGV, "INC=-I$inc $extra" } else { die "Could not figure out which apxs to use. Try the -apxs option.\n"; }