view release on metacpan or search on metacpan
Makefile.in view on Meta::CPAN
INSBIN = @INSTALL@
INSTALLDIR = @PRERUN@@INSTALLDIR@
HTDOCS = @PRERUN@@HTDOCS@
HTLOGS = @PRERUN@@HTLOGS@
CONF = @PRERUN@@HTCONF@
DEFEMBED = @DEFEMBED@
EGO = @EGO@
XML = @XML@
DEPDBDEF = @DEPDBDEF@
INSTALLBIN = @PRERUN@/usr/local/bin
MODDIR = @MODDIR@
LIBS = @LIBS@
MODPERL = @MODPERL@
OBJEMBED = @OBJEMBED@
FUNCS = @DEFS@
# Defines
BIN = htpl.cgi
Makefile.in view on Meta::CPAN
UPD = htplu
CON = htplcon
SRVC = htplsrvc
GEN = htpgen
SH = /bin/sh
CONDS = -DTMP_DIR=\"$(TEMP)\" -DPERL_BIN=\"$(PERL_BIN)\" $(DEFEMBED)
COMPILE = -DCOMPILATION=`$(PERL) -e "print time;"`
BUILD = -DBUILD=`$(PERL) -e "print ((stat('HTPL-modules/lib/HTML/HTPL.pm'))[9]);"`
VERSION = -DVERSION=`$(PERL) -e 'require "HTPL-modules/lib/HTML/HTPL.pm"; print $$HTML::HTPL::VERSION;'`
INFO = $(DEPDBDEF) $(BUILD) $(VERSION) $(COMPILE)
CCFLAGS = -O3 $(CONDS) $(INFO) $(FUNCS)
CC = $(CCPROG)
#CS = htpl.c htpl-l.c htpl-sub.c htpl-parse.c perf.c vasprintf.c asprintf.c $(OBJEMBED)
CS = htpl.c htpl-l.c htpl-sub.c htpl-parse.c perf.c $(OBJEMBED)
BINOBJ = $(CS:.c=.ob)
DBGOBJ = $(CS:.c=.od)
PREDEP = $(CS:.c=.d)
HS = htpl.h htpl-sh.h
OBV = Makefile
Makefile.in view on Meta::CPAN
.c.owd:
gcc -DHAVE_SETENV -c -D__DEBUG__ -o $@ $<
WINBINOBJ = \
htpl.owb htpl-l.owb htpl-sub.owb htpl-parse.owb $(owbJEMBEDBIN) perf.owb \
htpl-win.owb
WINDBGOBJ = \
htpl.owd htpl-l.owd htpl-sub.owd htpl-parse.owd $(owbJEMBEDDBG) perf.owd \
htpl-win.owd
win: $(WINBINOBJ) $(WINDBGOBJ)
gcc -DHAVE_SETENV -o htpl.exe $(WINBINOBJ)
gcc -DHAVE_SETENV -D__DEBUG__ -o htpldbg.exe $(WINDBGOBJ)
view all matches for this distribution
view release on metacpan or search on metacpan
vendor/mruby/include/mruby/array.h view on Meta::CPAN
int refcnt;
mrb_int len;
mrb_value *ptr;
} mrb_shared_array;
#define MRB_ARY_EMBED_LEN_MAX ((mrb_int)(sizeof(void*)*3/sizeof(mrb_value)))
struct RArray {
MRB_OBJECT_HEADER;
union {
struct {
mrb_int len;
vendor/mruby/include/mruby/array.h view on Meta::CPAN
mrb_int capa;
mrb_shared_array *shared;
} aux;
mrb_value *ptr;
} heap;
mrb_value embed[MRB_ARY_EMBED_LEN_MAX];
} as;
};
#define mrb_ary_ptr(v) ((struct RArray*)(mrb_ptr(v)))
#define mrb_ary_value(p) mrb_obj_value((void*)(p))
#define RARRAY(v) ((struct RArray*)(mrb_ptr(v)))
#define MRB_ARY_EMBED_MASK 7
#define ARY_EMBED_P(a) ((a)->flags & MRB_ARY_EMBED_MASK)
#define ARY_UNSET_EMBED_FLAG(a) ((a)->flags &= ~(MRB_ARY_EMBED_MASK))
#define ARY_EMBED_LEN(a) ((mrb_int)(((a)->flags & MRB_ARY_EMBED_MASK) - 1))
#define ARY_SET_EMBED_LEN(a,len) ((a)->flags = ((a)->flags&~MRB_ARY_EMBED_MASK) | ((uint32_t)(len) + 1))
#define ARY_EMBED_PTR(a) (&((a)->as.embed[0]))
#define ARY_LEN(a) (ARY_EMBED_P(a)?ARY_EMBED_LEN(a):(a)->as.heap.len)
#define ARY_PTR(a) (ARY_EMBED_P(a)?ARY_EMBED_PTR(a):(a)->as.heap.ptr)
#define RARRAY_LEN(a) ARY_LEN(RARRAY(a))
#define RARRAY_PTR(a) ARY_PTR(RARRAY(a))
#define ARY_SET_LEN(a,n) do {\
if (ARY_EMBED_P(a)) {\
mrb_assert((n) <= MRB_ARY_EMBED_LEN_MAX); \
ARY_SET_EMBED_LEN(a,n);\
}\
else\
(a)->as.heap.len = (n);\
} while (0)
#define ARY_CAPA(a) (ARY_EMBED_P(a)?MRB_ARY_EMBED_LEN_MAX:(a)->as.heap.aux.capa)
#define MRB_ARY_SHARED 256
#define ARY_SHARED_P(a) ((a)->flags & MRB_ARY_SHARED)
#define ARY_SET_SHARED_FLAG(a) ((a)->flags |= MRB_ARY_SHARED)
#define ARY_UNSET_SHARED_FLAG(a) ((a)->flags &= ~MRB_ARY_SHARED)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/Build.pm view on Meta::CPAN
use File::Basename;
use ExtUtils::Embed ();
use File::Copy ();
BEGIN { # check for a sane ExtUtils::Embed
unless ($ENV{MP_USE_MY_EXTUTILS_EMBED}) {
my ($version, $path)=(ExtUtils::Embed->VERSION,
$INC{q{ExtUtils/Embed.pm}});
my $msg=<<"EOF";
I have found ExtUtils::Embed $version at
lib/Apache2/Build.pm view on Meta::CPAN
This is probably not the right one for this perl version. Please make sure
there is only one version of this module installed and that it is the one
that comes with this perl version.
If you insist on using the ExtUtils::Embed as is set the environment
variable MP_USE_MY_EXTUTILS_EMBED=1 and try again.
EOF
if (eval {require Module::CoreList}) {
my $req=$Module::CoreList::version{$]}->{q/ExtUtils::Embed/};
die "Please repair your Module::CoreList" unless $req;
view all matches for this distribution
view release on metacpan or search on metacpan
cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm view on Meta::CPAN
$cflags{shellflags} ||= '';
my(%map) = (
D => '-DDEBUGGING',
E => '-DEMBED',
DE => '-DDEBUGGING -DEMBED',
M => '-DEMBED -DMULTIPLICITY',
DM => '-DDEBUGGING -DEMBED -DMULTIPLICITY',
);
if ($libperl =~ /libperl(\w*)\Q$self->{LIB_EXT}/){
$uc = uc($1);
} else {
view all matches for this distribution
view release on metacpan or search on metacpan
ExtUtils/MM_Unix.pm view on Meta::CPAN
$cflags{shellflags} ||= '';
my(%map) = (
D => '-DDEBUGGING',
E => '-DEMBED',
DE => '-DDEBUGGING -DEMBED',
M => '-DEMBED -DMULTIPLICITY',
DM => '-DDEBUGGING -DEMBED -DMULTIPLICITY',
);
if ($libperl =~ /libperl(\w*)\Q$self->{LIB_EXT}/){
$uc = uc($1);
} else {
view all matches for this distribution
view release on metacpan or search on metacpan
etc/INSTALL.html view on Meta::CPAN
<p>Machines with half-implemented dbm routines will need to #undef I_ODBM
<p>SCO prior to 3.2.4 may be missing <EM>dbmclose()</EM>. An upgrade to 3.2.4
that includes libdbm.nfs (which includes <EM>dbmclose()</EM>) may be available.
<p>If you get duplicates upon linking for malloc et al, say -DHIDEMYMALLOC.
<p>If you get duplicate function definitions (a perl function has the
same name as another function on your system) try -DEMBED.
<p>If you get varags problems with gcc, be sure that gcc is installed
correctly. When using gcc, you should probably have i_stdarg='define'
and i_varags='undef' in config.sh. The problem is usually solved
by running fixincludes correctly.
<p>If you wish to use dynamic loading on SunOS or Solaris, and you
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SAPNW/Makefile.PL view on Meta::CPAN
use ExtUtils::MakeMaker;
# FIND POSSIBLE RFC INSTALLATIONS
my @POSSIBLE_RFC_DIRS = qw(/usr/sap/nwrfcsdk /usr/local /usr);
my $EMBED_MANIFEST= 0;
# the ADDITIONAL_LIBS needs to be modified for each OS flavour - the nwrfcsdk
# has the information regarding where libs and incs resides for each
# system type
lib/SAPNW/Makefile.PL view on Meta::CPAN
use Getopt::Long;
use vars qw($opt_source $opt_addlibs $opt_embed_manifest $opt_help);
&GetOptions("source=s", \$opt_source, "addlibs=s", \$opt_addlibs, "embed-manifest", \$opt_embed_manifest, "help", \$opt_help);
$EMBED_MANIFEST = 1 if $opt_embed_manifest;
if($^O eq 'MSWin32') {
$ADD_FLAGS = " -DWIN32";
# $ADD_FLAGS .= " -D_DEBUG";
$ADD_FLAGS .= " -D_CONSOLE";
lib/SAPNW/Makefile.PL view on Meta::CPAN
# add the manifest for win32
sub MY::dynamic_lib {
my $self = shift;
my $section = $self->MM::dynamic_lib;
if ($^O =~ /MSWin32/i && $EMBED_MANIFEST){
$section .= "\tcd ..\\..\\blib\\arch\\auto\\SAPNW\\Connection\n";
$section .= "\tmt.exe -outputresource:Connection.dll;2 -manifest Connection.dll.manifest\n";
$section .= "\tcd ..\\..\\..\\..\\..\\lib\\SAPNW\n";
}
if ($^O !~ /(MSWin32|hpux|solaris)/i){
view all matches for this distribution
view release on metacpan or search on metacpan
util/config.pl view on Meta::CPAN
my $sattr = shift;
my $data = shift;
my $replace = '';
if($$sattr{EMBED_SYBASE}) {
if($$sattr{EMBED_SYBASE_USE_HOME}) {
$replace = qq(
BEGIN {
if(!\$ENV{'SYBASE'}) {
if(\@_ = getpwnam("sybase")) {
\$ENV{'SYBASE'} = \$_[7];
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
share/lang/ensv/pos2.db view on Meta::CPAN
# features (source): { 'pos' => '^(..).*$/$1' }
# features (target): { 'pos' => '^(([^N].).*\Z|(N).*\@(.).*\Z)/$2$3$4' }
TO VB V@ 0.9 # 'to attend'
DT NN ND 0.9 # DT + NOUN -> DEFINITE NOUN
DT NN NN ND 0.9 #
DT JJ NN DF AF ND 0.9 # EMBEDDED ADJECTIVE
DT JJ NN DF AQ ND 0.9 #
DT JJ NN NN DF AF ND 0.9 #
DT JJ NN NN DF AQ ND 0.9 #
DT JJ JJ NN DF AQ AQ ND 0.9 #
DT JJ JJ NN DF AQ ND 0.9 #
view all matches for this distribution
view release on metacpan or search on metacpan
vutil/ppport.h view on Meta::CPAN
dXSTARG|5.006000|5.003007|poVnu
dXSUB_SYS|5.003007||Viu
edit_distance|5.023008||Vniu
EIGHT_BIT_UTF8_TO_NATIVE|5.023003||Viu
ELEMENT_RANGE_MATCHES_INVLIST|5.023002||Viu
EMBEDMYMALLOC|5.006000||Viu
emulate_cop_io|||xciu
emulate_setlocale|5.027009||Vniu
END|5.003007||Viu
END_EXTERN_C|5.005000|5.003007|pV
endgrent|5.009000||Viu
view all matches for this distribution
view release on metacpan or search on metacpan
Q => [ 'CITE' ],
INS => [ 'CITE' ],
DEL => [ 'CITE' ],
A => [ 'HREF' ] ,
IMG => [ 'SRC' ,'LOWSRC' ,'USEMAP', 'LONGDESC' ] ,
EMBED => [ 'SRC' ],
FRAME => [ 'SRC', 'LONGDESC' ],
IFRAME => [ 'SRC', 'LONGDESC' ],
BODY => [ 'BACKGROUND' ],
AREA => [ 'HREF' ],
LINK => [ 'HREF' ],
view all matches for this distribution