diff --git a/conftools/perllib/dnsconf/Makefile.PL b/conftools/perllib/dnsconf/Makefile.PL new file mode 100644 index 0000000000..54792c91db --- /dev/null +++ b/conftools/perllib/dnsconf/Makefile.PL @@ -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');