X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=win32%2Fperllib.c;h=3acfca120433675edbfaf3a2e6423e91d3d07202;hb=25ca88e0cbd385e70d7ea2ee4f8a34a9ff7bcc17;hp=f38dfa1fd6c87dfd10938bdf14b6deed2b0eb4ed;hpb=3db8f154c4c6e098a5a0bdf7932e8f86fbd2c451;p=p5sagit%2Fp5-mst-13.2.git diff --git a/win32/perllib.c b/win32/perllib.c index f38dfa1..3acfca1 100644 --- a/win32/perllib.c +++ b/win32/perllib.c @@ -16,10 +16,16 @@ /* Register any extra external extensions */ char *staticlinkmodules[] = { "DynaLoader", + /* other similar records will be included from "perllibst.h" */ +#define STATIC1 +#include "perllibst.h" NULL, }; EXTERN_C void boot_DynaLoader (pTHX_ CV* cv); +/* other similar records will be included from "perllibst.h" */ +#define STATIC2 +#include "perllibst.h" static void xs_init(pTHX) @@ -27,6 +33,9 @@ xs_init(pTHX) char *file = __FILE__; dXSUB_SYS; newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file); + /* other similar records will be included from "perllibst.h" */ +#define STATIC3 +#include "perllibst.h" } #ifdef PERL_IMPLICIT_SYS