mej pushed a commit to branch master.
commit 8fabff39c7cb779069c4684a170702b369ba9163
Author: Michael Jennings <[email protected]>
Date: Fri Mar 22 11:06:32 2013 -0700
Remove RCS keyword strings; Git doesn't support them.
---
Makefile.am | 2 --
autogen.sh | 1 -
include/libast.h | 2 --
include/libast/obj.h | 2 --
include/libast/objpair.h | 2 --
include/libast/sysdefs.h.in | 2 --
include/libast_internal.h | 2 --
src/array.c | 2 --
src/avl_tree.c | 2 --
src/builtin_hashes.c | 2 --
src/conf.c | 2 --
src/debug.c | 4 ----
src/dlinked_list.c | 2 --
src/file.c | 4 ----
src/linked_list.c | 2 --
src/mbuff.c | 2 --
src/module.c | 2 --
src/msgs.c | 4 ----
src/obj.c | 4 ----
src/objpair.c | 4 ----
src/options.c | 4 ----
src/pthreads.c | 2 --
src/regexp.c | 2 --
src/snprintf.c | 2 --
src/socket.c | 2 --
src/str.c | 2 --
src/strings.c | 2 --
src/tok.c | 2 --
src/url.c | 2 --
src/ustr.c | 2 --
test/Makefile.am | 2 --
test/perf.c | 2 --
test/test.c | 2 --
33 files changed, 77 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 162cd50..f0bed9b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,3 @@
-# $Id$
-
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I .
SUBDIRS = include src test
diff --git a/autogen.sh b/autogen.sh
index 50f8b78..5fff094 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,6 +1,5 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
-# $Id$
broken() {
echo
diff --git a/include/libast.h b/include/libast.h
index b311d0a..246af92 100644
--- a/include/libast.h
+++ b/include/libast.h
@@ -30,8 +30,6 @@
* including all required system headers and LibAST Object headers.
*
* @author Michael Jennings <[email protected]>
- * @version $Revision$
- * @date $Date$
*/
#ifndef _LIBAST_H_
diff --git a/include/libast/obj.h b/include/libast/obj.h
index 0d7d016..0cc4d20 100644
--- a/include/libast/obj.h
+++ b/include/libast/obj.h
@@ -33,8 +33,6 @@
* manipulating basic generic objects.
*
* @author Michael Jennings <[email protected]>
- * $Revision$
- * $Date$
*/
/*@{*/
diff --git a/include/libast/objpair.h b/include/libast/objpair.h
index ac18789..ff8b219 100644
--- a/include/libast/objpair.h
+++ b/include/libast/objpair.h
@@ -32,8 +32,6 @@
* This file contains the declarations for the paired object type.
*
* @author Michael Jennings <[email protected]>
- * $Revision$
- * $Date$
*/
/*@{*/
diff --git a/include/libast/sysdefs.h.in b/include/libast/sysdefs.h.in
index cf2d600..9e04e5f 100644
--- a/include/libast/sysdefs.h.in
+++ b/include/libast/sysdefs.h.in
@@ -29,8 +29,6 @@
* LibAST headers need are defined one way or the other.
*
* @author Michael Jennings <[email protected]>
- * @version $Revision$
- * @date $Date$
*/
#ifndef _LIBAST_SYSDEFS_H_
diff --git a/include/libast_internal.h b/include/libast_internal.h
index 2f20d3a..6cc6a10 100644
--- a/include/libast_internal.h
+++ b/include/libast_internal.h
@@ -29,8 +29,6 @@
* are restricted to internal LibAST use only.
*
* @author Michael Jennings <[email protected]>
- * @version $Revision$
- * @date $Date$
*/
#ifndef _LIBAST_INTERNAL_H_
diff --git a/src/array.c b/src/array.c
index f32a7b0..a82c041 100644
--- a/src/array.c
+++ b/src/array.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/avl_tree.c b/src/avl_tree.c
index 25673f2..ede45ed 100644
--- a/src/avl_tree.c
+++ b/src/avl_tree.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/builtin_hashes.c b/src/builtin_hashes.c
index 7fda314..fe6a4ef 100644
--- a/src/builtin_hashes.c
+++ b/src/builtin_hashes.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/conf.c b/src/conf.c
index b684517..9d9c0ca 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -31,8 +31,6 @@
* @author Michael Jennings <[email protected]>
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/debug.c b/src/debug.c
index fe49c34..20a4736 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -28,12 +28,8 @@
* This file contains all non-cpp-based debugging functionality.
*
* @author Michael Jennings <[email protected]>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/dlinked_list.c b/src/dlinked_list.c
index 113b5d5..31a2593 100644
--- a/src/dlinked_list.c
+++ b/src/dlinked_list.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/file.c b/src/file.c
index d44ec8c..76dc195 100644
--- a/src/file.c
+++ b/src/file.c
@@ -28,12 +28,8 @@
* This file contains file-related functions.
*
* @author Michael Jennings <[email protected]>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/linked_list.c b/src/linked_list.c
index 57563ad..d750313 100644
--- a/src/linked_list.c
+++ b/src/linked_list.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/mbuff.c b/src/mbuff.c
index 6d2bd1a..ceaa5fe 100644
--- a/src/mbuff.c
+++ b/src/mbuff.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/module.c b/src/module.c
index 7957880..f3cf0ce 100644
--- a/src/module.c
+++ b/src/module.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/msgs.c b/src/msgs.c
index ded07fc..bdd6c05 100644
--- a/src/msgs.c
+++ b/src/msgs.c
@@ -29,12 +29,8 @@
* error messages to the end user.
*
* @author Michael Jennings <[email protected]>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/obj.c b/src/obj.c
index fcefc3c..08afc74 100644
--- a/src/obj.c
+++ b/src/obj.c
@@ -28,12 +28,8 @@
* This file contains the basic object class.
*
* @author Michael Jennings <[email protected]>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/objpair.c b/src/objpair.c
index 9bae412..550f3cd 100644
--- a/src/objpair.c
+++ b/src/objpair.c
@@ -28,12 +28,8 @@
* This file contains the objpair class.
*
* @author Michael Jennings <[email protected]>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/options.c b/src/options.c
index be5faa6..006f0c9 100644
--- a/src/options.c
+++ b/src/options.c
@@ -29,12 +29,8 @@
* option parser.
*
* @author Michael Jennings <[email protected]>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/pthreads.c b/src/pthreads.c
index 5948e16..96b2082 100644
--- a/src/pthreads.c
+++ b/src/pthreads.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/regexp.c b/src/regexp.c
index 5ca43cd..7289697 100644
--- a/src/regexp.c
+++ b/src/regexp.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/snprintf.c b/src/snprintf.c
index 6ca1a7b..96023c1 100644
--- a/src/snprintf.c
+++ b/src/snprintf.c
@@ -9,8 +9,6 @@
# undef HAVE_STDARG_H
#endif
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
/*
* Shamelessly snarfed from Enlightenment...
* which shamelessly snarfed from sane...
diff --git a/src/socket.c b/src/socket.c
index 4385a97..283c385 100644
--- a/src/socket.c
+++ b/src/socket.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/str.c b/src/str.c
index 94f78c2..5037400 100644
--- a/src/str.c
+++ b/src/str.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/strings.c b/src/strings.c
index cfb66bc..85ec0ec 100644
--- a/src/strings.c
+++ b/src/strings.c
@@ -30,8 +30,6 @@
* @author Michael Jennings <[email protected]>
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/tok.c b/src/tok.c
index a84c760..3f73d4c 100644
--- a/src/tok.c
+++ b/src/tok.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/url.c b/src/url.c
index 5b5c2a0..ab0b061 100644
--- a/src/url.c
+++ b/src/url.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/ustr.c b/src/ustr.c
index 164677a..8eaa4bc 100644
--- a/src/ustr.c
+++ b/src/ustr.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/test/Makefile.am b/test/Makefile.am
index 77a8044..2fcf71d 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1,5 +1,3 @@
-# $Id$
-
EXTRA_PROGRAMS = libast-test libast-perf
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/include/$(PACKAGE)
diff --git a/test/perf.c b/test/perf.c
index c0e9f11..7ff50d6 100644
--- a/test/perf.c
+++ b/test/perf.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id$";
-
#if defined(HAVE_CONFIG_H) && (HAVE_CONFIG_H != 0)
# include <config.h>
#endif
diff --git a/test/test.c b/test/test.c
index 16d2a18..dbf6715 100644
--- a/test/test.c
+++ b/test/test.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id$";
-
#if defined(HAVE_CONFIG_H) && (HAVE_CONFIG_H != 0)
# include <config.h>
#endif
--
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar