Sha256: 6989b30c76b8200103c94057067d6db6e092162aa3b85339ca2156888cf96cf0
Contents?: true
Size: 841 Bytes
Versions: 2
Compression:
Stored size: 841 Bytes
Contents
# Copyright (C) Igor Sysoev # Copyright (C) Nginx, Inc. use 5.006001; use ExtUtils::MakeMaker; WriteMakefile( NAME => 'nginx', VERSION_FROM => 'nginx.pm', # finds $VERSION PREREQ_PM => {}, # e.g., Module::Name => 1.1 ABSTRACT_FROM => 'nginx.pm', # retrieve abstract from module AUTHOR => 'Igor Sysoev', CCFLAGS => "$ENV{NGX_PM_CFLAGS}", OPTIMIZE => '-O', INC => join(" ", map { m#^/# ? "-I $_" : "-I ../../../../../$_" } (split /\s+/, $ENV{NGX_INCS})), depend => { 'nginx.c' => "../../../../../src/http/modules/perl/ngx_http_perl_module.h" }, PM => { 'nginx.pm' => '$(INST_LIBDIR)/nginx.pm' } );
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nginxtra-1.2.8.8 | vendor/nginx/src/http/modules/perl/Makefile.PL |
nginxtra-1.2.7.8 | vendor/nginx/src/http/modules/perl/Makefile.PL |