mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 03:11:56 -05:00
11 lines
381 B
Perl
11 lines
381 B
Perl
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');
|