version 1.1.1.1, 2012/02/21 23:05:51
|
version 1.1.1.3, 2013/07/22 08:25:55
|
Line 6
|
Line 6
|
and semantics are as close as possible to those of the Perl 5 language. |
and semantics are as close as possible to those of the Perl 5 language. |
|
|
Written by Philip Hazel |
Written by Philip Hazel |
Copyright (c) 1997-2008 University of Cambridge | Copyright (c) 1997-2012 University of Cambridge |
|
|
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
Line 108 fprintf(f,
|
Line 108 fprintf(f,
|
"library and dead code stripping is activated. This leads to link errors.\n" |
"library and dead code stripping is activated. This leads to link errors.\n" |
"Pulling in the header ensures that the array gets flagged as \"someone\n" |
"Pulling in the header ensures that the array gets flagged as \"someone\n" |
"outside this compilation unit might reference this\" and so it will always\n" |
"outside this compilation unit might reference this\" and so it will always\n" |
"be supplied to the linker. */\n\n" | "be supplied to the linker. */\n\n"); |
| |
| /* Force config.h in z/OS */ |
| |
| #if defined NATIVE_ZOS |
| fprintf(f, |
| "/* For z/OS, config.h is forced */\n" |
| "#ifndef HAVE_CONFIG_H\n" |
| "#define HAVE_CONFIG_H 1\n" |
| "#endif\n\n"); |
| #endif |
| |
| fprintf(f, |
"#ifdef HAVE_CONFIG_H\n" |
"#ifdef HAVE_CONFIG_H\n" |
"#include \"config.h\"\n" |
"#include \"config.h\"\n" |
"#endif\n\n" |
"#endif\n\n" |
"#include \"pcre_internal.h\"\n\n"); |
"#include \"pcre_internal.h\"\n\n"); |
|
|
fprintf(f, |
fprintf(f, |
"const unsigned char _pcre_default_tables[] = {\n\n" | "const pcre_uint8 PRIV(default_tables)[] = {\n\n" |
"/* This table is a lower casing table. */\n\n"); |
"/* This table is a lower casing table. */\n\n"); |
|
|
fprintf(f, " "); |
fprintf(f, " "); |