Use the system angle brackets for %include
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7871 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
79aedd92d7
commit
e013e7ff5a
52 changed files with 132 additions and 134 deletions
|
|
@ -8,10 +8,10 @@
|
|||
%runtime "swigrun.swg" // Common C API type-checking code
|
||||
%runtime "php4run.swg" // Php4 runtime functions
|
||||
|
||||
%include "php4init.swg" // Php4 initialization routine.
|
||||
%include <php4init.swg> // Php4 initialization routine.
|
||||
|
||||
%include "globalvar.i" // Global variables.
|
||||
%include "const.i"
|
||||
%include <globalvar.i> // Global variables.
|
||||
%include <const.i>
|
||||
|
||||
// use %init %{ "/*code goes here*/ " %}
|
||||
// or %minit %{ "/* code goes here*/ " %} to
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
/* Typemaps for input parameters by value */
|
||||
|
||||
%include "utils.i"
|
||||
%include <utils.i>
|
||||
|
||||
%pass_by_val(bool,CONVERT_BOOL_IN);
|
||||
|
||||
|
|
@ -293,4 +293,4 @@
|
|||
|
||||
|
||||
/* php keywords */
|
||||
%include "php4kw.swg"
|
||||
%include <php4kw.swg>
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@
|
|||
//
|
||||
// Common implementation
|
||||
|
||||
%include std_common.i
|
||||
%include exception.i
|
||||
%include <std_common.i>
|
||||
%include <exception.i>
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// std::pair
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
// However, I think I'll wait until someone asks for it...
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
%include exception.i
|
||||
%include <exception.i>
|
||||
|
||||
%{
|
||||
#include <string>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue