You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ja...@apache.org on 2002/03/05 22:18:47 UTC

cvs commit: xml-xerces/perl postSource.pl

jasons      02/03/05 13:18:47

  Modified:    perl     postSource.pl
  Log:
  	* postSource.pl (Repository):
  	changed file to __FILE__
  	changed regexp that matched location of where to insert code into
  	   SWIG_init
  
  Revision  Changes    Path
  1.13      +3 -3      xml-xerces/perl/postSource.pl
  
  Index: postSource.pl
  ===================================================================
  RCS file: /home/cvs/xml-xerces/perl/postSource.pl,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- postSource.pl	3 Nov 2001 04:48:52 -0000	1.12
  +++ postSource.pl	5 Mar 2002 21:18:47 -0000	1.13
  @@ -36,7 +36,7 @@
       print TEMP;
       while (<FILE>) {
         print TEMP;
  -      last if /newXS/;
  +      last if /Install commands/;
       }
       print TEMP <<'TEXT';
       // we create the global transcoder for UTF-8 to UTF-16
  @@ -62,8 +62,8 @@
       }
   
   
  -    newXS((char *) "XML::Xercesc::IDOM_Node_operator_equal_to", _wrap_IDOM_Node_operator_equal_to, file);
  -    newXS((char *) "XML::Xercesc::IDOM_Node_operator_not_equal_to", _wrap_IDOM_Node_operator_not_equal_to, file);
  +    newXS((char *) "XML::Xercesc::IDOM_Node_operator_equal_to", _wrap_IDOM_Node_operator_equal_to, __FILE__);
  +    newXS((char *) "XML::Xercesc::IDOM_Node_operator_not_equal_to", _wrap_IDOM_Node_operator_not_equal_to, __FILE__);
   TEXT
       next;
     }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org