mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Perl script for creating a platform specific Makefile for building
Perl config library interface.
This commit is contained in:
parent
c00db9da64
commit
b1e973dba2
1 changed files with 11 additions and 0 deletions
11
conftools/perllib/dnsconf/Makefile.PL
Normal file
11
conftools/perllib/dnsconf/Makefile.PL
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
use ExtUtils::MakeMaker;
|
||||
|
||||
$ENV{CC} = "gcc";
|
||||
|
||||
WriteMakefile('NAME' => 'DNSConf',
|
||||
'OPTIMIZE' => '-g',
|
||||
'PERLMAINCC' => 'gcc',
|
||||
'LIBS' => [ '-L../../isc -L../../dns -ldns -lisc -lc_r' ],
|
||||
'INC' => '-I../../isc/include -I../../isc/unix/include -I../../dns/include',
|
||||
'dynamic_lib' => { OTHERLDFLAGS => '-pthread' },
|
||||
'OBJECT' => 'DNSConf_wrap.o');
|
||||
Loading…
Reference in a new issue