Index: ossp-pkg/js/src/perlconnect/Makefile.PL RCS File: /v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/Makefile.PL,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/Makefile.PL,v' | diff -u /dev/null - -L'ossp-pkg/js/src/perlconnect/Makefile.PL' 2>/dev/null --- ossp-pkg/js/src/perlconnect/Makefile.PL +++ - 2025-04-06 09:05:41.148760567 +0200 @@ -0,0 +1,67 @@ +use ExtUtils::MakeMaker; + +use strict; +use Getopt::Std; + +my (%foo, $jsdir, $inc, $libpath); + +#m - build under mozilla tree +#d - specifies js build directory (with include/ and lib/ directories) +#c - build under charlie tree +getopts('mcd:', \%foo); + +$jsdir = $foo{d}; + +$foo{'m'} = 1 unless $foo{c} || $foo{d}; #mozilla tree is the default + +if ($foo{c}) { + $inc = "-I$ENV{CHARLIE_HOME}/include"; + $libpath = "-L$ENV{CHARLIE_HOME}/lib"; +} + +if ($jsdir) { + $inc = "-I$jsdir/include"; + $libpath = "-L$jsdir/lib -ljs"; +} + +my $tmpmk = <<'eof'; +DEPTH=.. +include ../config.mk + +all: + @echo '$(OBJDIR)' +eof + +if ($foo{'m'}) { + if ($^O eq "MSWin32") { + $inc = "-I.. -I../Debug"; #I'm not sure + $libpath = "-L../Debug"; + } else { #suppose unix, never Mac, gmake + open FOO, ">tempmakefile"; + print FOO $tmpmk; + close FOO; + my $objdir = `gmake -f tempmakefile`; + unlink "tempmakefile"; + $inc = "-I.. -I../$objdir"; + $libpath = "-L../$objdir"; + } +} + +my %extras = (); +my $define; + +if ($^O eq "MSWin32") { + $define = "-DXP_PC"; + $extras{OBJECT} = '$(BASEEXT)$(OBJ_EXT) jsperl.obj'; +} else { + $define = '-DXP_UNIX'; +} + +WriteMakefile(NAME => 'JS', + DEFINE => $define, + INC => $inc, + LIBS => "$libpath -ljs", + VERSION_FROM => 'JS.pm', + %extras,); + +__END__ Index: ossp-pkg/js/src/perlconnect/Makefile.PL RCS File: /v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/Makefile.PL,v rcsdiff -q -kk '-r1.1' '-r1.1.1.1' -u '/v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/Makefile.PL,v' 2>/dev/null