diff options
author | William S Fulton <wsf@fultondesigns.co.uk> | 2010-02-28 00:09:20 +0000 |
---|---|---|
committer | William S Fulton <wsf@fultondesigns.co.uk> | 2010-02-28 00:09:20 +0000 |
commit | 931628f8b245ecbed4a3f020715bff123cacd1b1 (patch) | |
tree | e38fd38e32ed875225a2aa747e74c8d8eaee90cf | |
parent | cb64f65bae17ed4eeaa257556f15e18f4742a993 (diff) | |
download | swig-931628f8b245ecbed4a3f020715bff123cacd1b1.tar.gz |
Remove the svn/cvs Id string in the headers
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11877 626c5289-ae23-0410-ae9c-e8d60b6d4f22
-rw-r--r-- | Doc/Devel/engineering.html | 17 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | Source/CParse/cparse.h | 2 | ||||
-rw-r--r-- | Source/Modules/swigmod.h | 2 | ||||
-rw-r--r-- | Source/Preprocessor/preprocessor.h | 2 | ||||
-rw-r--r-- | Source/Swig/swig.h | 2 | ||||
-rw-r--r-- | Source/Swig/swigfile.h | 2 | ||||
-rw-r--r-- | Source/Swig/swigopt.h | 2 | ||||
-rw-r--r-- | Source/Swig/swigparm.h | 2 | ||||
-rw-r--r-- | Source/Swig/swigscan.h | 2 | ||||
-rw-r--r-- | Source/Swig/swigtree.h | 2 | ||||
-rw-r--r-- | Source/Swig/swigwrap.h | 2 |
12 files changed, 11 insertions, 28 deletions
diff --git a/Doc/Devel/engineering.html b/Doc/Devel/engineering.html index 5ccfb7858..7dfef2ad3 100644 --- a/Doc/Devel/engineering.html +++ b/Doc/Devel/engineering.html @@ -119,22 +119,25 @@ are case-insensitive on Windows so this convention will prevent you from inadver creating two files that differ in case-only. <p> -Each file should include a short abstract, author information, copyright information, and +Each file should include a short abstract, license information and a SVN revision tag like this: <blockquote> <pre> /* ----------------------------------------------------------------------------- - * See the LICENSE file for information on copyright, usage and redistribution - * of SWIG, and the README file for authors - http://www.swig.org/release.html. + * This file is part of SWIG, which is licensed as a whole under version 3 + * (or any later version) of the GNU General Public License. Some additional + * terms also apply to certain portions of SWIG. The full details of the SWIG + * license and copyrights can be found in the LICENSE and COPYRIGHT files + * included with the SWIG source code as distributed by the SWIG developers + * and at http://www.swig.org/legal.html. * - * cwrap.c + * xxx.c * - * This file defines a variety of wrapping rules for C/C++ handling including - * the naming of local variables, calling conventions, and so forth. + * This file defines ... * ----------------------------------------------------------------------------- */ -char cvsroot_cwrap_c[] = "$Id$"; +static char cvs[] = "$Id$ xxx.c"; #include "swig.h" diff --git a/Makefile.in b/Makefile.in index bdfec746e..6effe59b9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,5 +1,5 @@ ####################################################################### -# $Id$ +# SWIG top level Makefile ####################################################################### .PHONY: ccache source swig diff --git a/Source/CParse/cparse.h b/Source/CParse/cparse.h index ddc5d05dc..922bbfcdc 100644 --- a/Source/CParse/cparse.h +++ b/Source/CParse/cparse.h @@ -11,8 +11,6 @@ * SWIG parser module. * ----------------------------------------------------------------------------- */ -/* $Id$ */ - #ifndef SWIG_CPARSE_H_ #define SWIG_CPARSE_H_ diff --git a/Source/Modules/swigmod.h b/Source/Modules/swigmod.h index 813c56cb9..a6b5234d4 100644 --- a/Source/Modules/swigmod.h +++ b/Source/Modules/swigmod.h @@ -11,8 +11,6 @@ * Main header file for SWIG modules. * ----------------------------------------------------------------------------- */ -/* $Id$ */ - #ifndef SWIG_SWIGMOD_H_ #define SWIG_SWIGMOD_H_ diff --git a/Source/Preprocessor/preprocessor.h b/Source/Preprocessor/preprocessor.h index 8f98dae15..b08ff31b9 100644 --- a/Source/Preprocessor/preprocessor.h +++ b/Source/Preprocessor/preprocessor.h @@ -11,8 +11,6 @@ * SWIG preprocessor module. * ----------------------------------------------------------------------------- */ -/* $Id$ */ - #ifndef SWIG_PREPROCESSOR_H_ #define SWIG_PREPROCESSOR_H_ diff --git a/Source/Swig/swig.h b/Source/Swig/swig.h index 6aff97955..ec5ecb271 100644 --- a/Source/Swig/swig.h +++ b/Source/Swig/swig.h @@ -11,8 +11,6 @@ * Header file for the SWIG core. * ----------------------------------------------------------------------------- */ -/* $Id$ */ - #ifndef SWIGCORE_H_ #define SWIGCORE_H_ diff --git a/Source/Swig/swigfile.h b/Source/Swig/swigfile.h index 632e821e2..cdf23cddc 100644 --- a/Source/Swig/swigfile.h +++ b/Source/Swig/swigfile.h @@ -11,8 +11,6 @@ * File handling functions in the SWIG core * ----------------------------------------------------------------------------- */ -/* $Id: swig.h 9603 2006-12-05 21:47:01Z beazley $ */ - extern List *Swig_add_directory(const_String_or_char_ptr dirname); extern void Swig_push_directory(const_String_or_char_ptr dirname); extern void Swig_pop_directory(void); diff --git a/Source/Swig/swigopt.h b/Source/Swig/swigopt.h index 586f8bbc4..543bfb819 100644 --- a/Source/Swig/swigopt.h +++ b/Source/Swig/swigopt.h @@ -11,8 +11,6 @@ * Header file for the SWIG command line processing functions * ----------------------------------------------------------------------------- */ -/* $Id: swig.h 9622 2006-12-19 03:49:17Z beazley $ */ - extern void Swig_init_args(int argc, char **argv); extern void Swig_mark_arg(int n); extern int Swig_check_marked(int n); diff --git a/Source/Swig/swigparm.h b/Source/Swig/swigparm.h index 060225f6b..70a39390e 100644 --- a/Source/Swig/swigparm.h +++ b/Source/Swig/swigparm.h @@ -12,8 +12,6 @@ * parameter lists. * ----------------------------------------------------------------------------- */ -/* $Id: swig.h 9629 2006-12-30 18:27:47Z beazley $ */ - /* Individual parameters */ extern Parm *NewParm(SwigType *type, const_String_or_char_ptr name, Node *file_line_node); extern Parm *NewParmWithoutFileLineInfo(SwigType *type, const_String_or_char_ptr name); diff --git a/Source/Swig/swigscan.h b/Source/Swig/swigscan.h index d52124c60..b07812fbe 100644 --- a/Source/Swig/swigscan.h +++ b/Source/Swig/swigscan.h @@ -11,8 +11,6 @@ * C/C++ scanner. * ----------------------------------------------------------------------------- */ -/* $Id: swig.h 9633 2007-01-10 23:43:07Z beazley $ */ - typedef struct Scanner Scanner; extern Scanner *NewScanner(void); diff --git a/Source/Swig/swigtree.h b/Source/Swig/swigtree.h index 6799398c9..5decb79e3 100644 --- a/Source/Swig/swigtree.h +++ b/Source/Swig/swigtree.h @@ -13,8 +13,6 @@ * and function names are meant to be similar. * ----------------------------------------------------------------------------- */ -/* $Id: swig.h 9622 2006-12-19 03:49:17Z beazley $ */ - /* Macros to traverse the DOM tree */ #define nodeType(x) Getattr(x,"nodeType") diff --git a/Source/Swig/swigwrap.h b/Source/Swig/swigwrap.h index b1f596f72..e44cb5344 100644 --- a/Source/Swig/swigwrap.h +++ b/Source/Swig/swigwrap.h @@ -11,8 +11,6 @@ * Functions related to wrapper objects. * ----------------------------------------------------------------------------- */ -/* $Id: swig.h 9635 2007-01-12 01:44:16Z beazley $ */ - typedef struct Wrapper { Hash *localh; String *def; |