summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2003-05-06 16:53:18 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2003-05-06 16:53:18 +0000
commit30ff14a2fcecc495542a97bedda4a05eb8b35cc8 (patch)
treeb8f770321c35463b5868c4cdce008bf91a485477 /scripts
parentf4e89c56ab3b0d497d5425049d592ce1e312031e (diff)
downloadphp-git-30ff14a2fcecc495542a97bedda4a05eb8b35cc8.tar.gz
add 'extern "C"' where needed for C++
(TODO: shouldn't this be done in the appropriate php headers and Zend macros themselves?)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ext_skel_ng/extension_parser.php46
1 files changed, 31 insertions, 15 deletions
diff --git a/scripts/ext_skel_ng/extension_parser.php b/scripts/ext_skel_ng/extension_parser.php
index ef8c5de775..1d22cd3097 100644
--- a/scripts/ext_skel_ng/extension_parser.php
+++ b/scripts/ext_skel_ng/extension_parser.php
@@ -405,27 +405,35 @@
// {{{ extension entry
function generate_extension_entry() {
- return '
-/* {{{ '.$this->name.'_module_entry
+ $name = $this->name;
+ $upname = strtoupper($this->name);
+
+ $code = "
+/* {{{ {$name}_module_entry
*/
-zend_module_entry '.$this->name.'_module_entry = {
+zend_module_entry {$name}_module_entry = {
STANDARD_MODULE_HEADER,
- "'.$this->name.'",
- '.$this->name.'_functions,
- PHP_MINIT('.$this->name.'), /* Replace with NULL if there is nothing to do at php startup */
- PHP_MSHUTDOWN('.$this->name.'), /* Replace with NULL if there is nothing to do at php shutdown */
- PHP_RINIT('.$this->name.'), /* Replace with NULL if there is nothing to do at request start */
- PHP_RSHUTDOWN('.$this->name.'), /* Replace with NULL if there is nothing to do at request end */
- PHP_MINFO('.$this->name.'),
- "'.$this->release['version'].'",
+ \"$name\",
+ {$name}_functions,
+ PHP_MINIT($name), /* Replace with NULL if there is nothing to do at php startup */
+ PHP_MSHUTDOWN($name), /* Replace with NULL if there is nothing to do at php shutdown */
+ PHP_RINIT($name), /* Replace with NULL if there is nothing to do at request start */
+ PHP_RSHUTDOWN($name), /* Replace with NULL if there is nothing to do at request end */
+ PHP_MINFO($name),
+ \"".$this->release['version']."\",
STANDARD_MODULE_PROPERTIES
};
/* }}} */
-#ifdef COMPILE_DL_'.strtoupper($this->name).'
-ZEND_GET_MODULE('.$this->name.')
-#endif
-';
+";
+
+ $code .= "#ifdef COMPILE_DL_$upname\n";
+ if ($this->language == "cpp") $code .= "extern \"C\" {\n";
+ $code .= "ZEND_GET_MODULE($name)\n";
+ if ($this->language == "cpp") $code .= "}\n";
+ $code .= "#endif\n\n";
+
+ return $code;
}
// }}}
@@ -540,6 +548,10 @@ ZEND_GET_MODULE('.$this->name.')
}
}
+ if ($this->language == "cpp") {
+ fputs($fp, "extern \"C\" {\n");
+ }
+
fputs($fp, '
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -552,6 +564,10 @@ ZEND_GET_MODULE('.$this->name.')
');
+ if ($this->language == "cpp") {
+ fputs($fp, "}\n");
+ }
+
if (isset($this->headers)) {
foreach ($this->headers as $header) {
if (@$header["prepend"] !== "yes") {