From b1e973dba2e3451ab8498c69ecbea396c81edf9e Mon Sep 17 00:00:00 2001 From: James Brister Date: Fri, 16 Jun 2000 20:47:22 +0000 Subject: [PATCH] Perl script for creating a platform specific Makefile for building Perl config library interface. --- conftools/perllib/dnsconf/Makefile.PL | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 conftools/perllib/dnsconf/Makefile.PL 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');