diff options
author | Peter Kokot <peterkokot@gmail.com> | 2018-07-03 02:52:16 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-07-25 00:53:25 +0200 |
commit | 8d3f8ca12a0b00f2a74a27424790222536235502 (patch) | |
tree | f35ddbdb8b5bc9259712d0275cb461ab7de9b7b9 /ext/simplexml | |
parent | dcd6a6ff367a91f8c03303a4dc2e3c8b17d692ed (diff) | |
download | php-git-8d3f8ca12a0b00f2a74a27424790222536235502.tar.gz |
Remove unused Git attributes ident
The $Id$ keywords were used in Subversion where they can be substituted
with filename, last revision number change, last changed date, and last
user who changed it.
In Git this functionality is different and can be done with Git attribute
ident. These need to be defined manually for each file in the
.gitattributes file and are afterwards replaced with 40-character
hexadecimal blob object name which is based only on the particular file
contents.
This patch simplifies handling of $Id$ keywords by removing them since
they are not used anymore.
Diffstat (limited to 'ext/simplexml')
-rw-r--r-- | ext/simplexml/config.m4 | 1 | ||||
-rw-r--r-- | ext/simplexml/config.w32 | 1 | ||||
-rw-r--r-- | ext/simplexml/php_simplexml.h | 2 | ||||
-rw-r--r-- | ext/simplexml/php_simplexml_exports.h | 2 | ||||
-rw-r--r-- | ext/simplexml/sxe.c | 2 | ||||
-rw-r--r-- | ext/simplexml/sxe.h | 2 |
6 files changed, 0 insertions, 10 deletions
diff --git a/ext/simplexml/config.m4 b/ext/simplexml/config.m4 index ec1b2b2cc5..8545ad8090 100644 --- a/ext/simplexml/config.m4 +++ b/ext/simplexml/config.m4 @@ -1,4 +1,3 @@ -dnl $Id$ dnl config.m4 for extension simplexml PHP_ARG_ENABLE(simplexml, whether to enable SimpleXML support, diff --git a/ext/simplexml/config.w32 b/ext/simplexml/config.w32 index 7873decb4e..a95be65738 100644 --- a/ext/simplexml/config.w32 +++ b/ext/simplexml/config.w32 @@ -1,4 +1,3 @@ -// $Id$ // vim:ft=javascript ARG_WITH("simplexml", "Simple XML support", "yes"); diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h index 5e75a8bed3..16a8e1a430 100644 --- a/ext/simplexml/php_simplexml.h +++ b/ext/simplexml/php_simplexml.h @@ -16,8 +16,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifndef PHP_SIMPLEXML_H #define PHP_SIMPLEXML_H diff --git a/ext/simplexml/php_simplexml_exports.h b/ext/simplexml/php_simplexml_exports.h index 461d909220..d1d1c113fd 100644 --- a/ext/simplexml/php_simplexml_exports.h +++ b/ext/simplexml/php_simplexml_exports.h @@ -18,8 +18,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifndef PHP_SIMPLEXML_EXPORTS_H #define PHP_SIMPLEXML_EXPORTS_H diff --git a/ext/simplexml/sxe.c b/ext/simplexml/sxe.c index 11658bdd4d..181369ffa4 100644 --- a/ext/simplexml/sxe.c +++ b/ext/simplexml/sxe.c @@ -16,8 +16,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifdef HAVE_CONFIG_H # include "config.h" #endif diff --git a/ext/simplexml/sxe.h b/ext/simplexml/sxe.h index ea645e9710..a46c1ccfeb 100644 --- a/ext/simplexml/sxe.h +++ b/ext/simplexml/sxe.h @@ -16,8 +16,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifndef SXE_H #define SXE_H |