summaryrefslogtreecommitdiff
path: root/ext/zip
diff options
context:
space:
mode:
authorOndřej Surý <ondrej@sury.org>2012-04-06 14:37:49 +0200
committerOndřej Surý <ondrej@sury.org>2012-04-06 14:37:49 +0200
commit7b10b0041aa63c6f8990ceb3ccc190bdd9eea2b9 (patch)
tree01edb9389d7b7f6b277a57e2bce1d05f9748d609 /ext/zip
parent096b2f823b2273e3ee707b3805feb78d1e4be61d (diff)
downloadphp-7b10b0041aa63c6f8990ceb3ccc190bdd9eea2b9.tar.gz
Imported Upstream version 5.4.1~rc1upstream/5.4.1_rc1
Diffstat (limited to 'ext/zip')
-rw-r--r--ext/zip/config.m42
-rw-r--r--ext/zip/config.w322
-rw-r--r--ext/zip/examples/im.php2
-rw-r--r--ext/zip/examples/odt.php2
-rw-r--r--ext/zip/php_zip.c4
-rw-r--r--ext/zip/php_zip.h2
-rw-r--r--ext/zip/tests/bug11216.phpt2
-rw-r--r--ext/zip/tests/bug14962.phpt2
-rw-r--r--ext/zip/tests/bug47667.phpt2
-rw-r--r--ext/zip/tests/bug7214.phpt2
-rw-r--r--ext/zip/tests/bug7658.phpt2
-rw-r--r--ext/zip/tests/bug8009.phpt2
-rw-r--r--ext/zip/tests/bug8700.phpt2
-rw-r--r--ext/zip/tests/oo_addemptydir.phpt2
-rw-r--r--ext/zip/tests/oo_addfile.phpt2
-rw-r--r--ext/zip/tests/oo_close.phpt2
-rw-r--r--ext/zip/tests/oo_delete.phpt2
-rw-r--r--ext/zip/tests/oo_ext_zip.phpt2
-rw-r--r--ext/zip/tests/oo_extract.phpt2
-rw-r--r--ext/zip/tests/oo_getcomment.phpt2
-rw-r--r--ext/zip/tests/oo_getnameindex.phpt2
-rw-r--r--ext/zip/tests/oo_namelocate.phpt2
-rw-r--r--ext/zip/tests/oo_open.phpt2
-rw-r--r--ext/zip/tests/oo_properties.phpt2
-rw-r--r--ext/zip/tests/oo_rename.phpt2
-rw-r--r--ext/zip/tests/oo_setcomment.phpt2
-rw-r--r--ext/zip/tests/oo_stream.phpt2
-rw-r--r--ext/zip/tests/utils.inc2
-rw-r--r--ext/zip/tests/zip_close.phpt2
-rw-r--r--ext/zip/tests/zip_entry_compressedsize.phpt2
-rw-r--r--ext/zip/tests/zip_entry_compressionmethod.phpt2
-rw-r--r--ext/zip/tests/zip_entry_filesize.phpt2
-rw-r--r--ext/zip/tests/zip_entry_name.phpt2
-rw-r--r--ext/zip/tests/zip_entry_open.phpt2
-rw-r--r--ext/zip/tests/zip_entry_read.phpt2
-rw-r--r--ext/zip/tests/zip_open.phpt2
-rw-r--r--ext/zip/tests/zip_read.phpt2
-rw-r--r--ext/zip/zip_stream.c2
38 files changed, 39 insertions, 39 deletions
diff --git a/ext/zip/config.m4 b/ext/zip/config.m4
index 7b2cf03f0..d5c24ce9c 100644
--- a/ext/zip/config.m4
+++ b/ext/zip/config.m4
@@ -1,5 +1,5 @@
dnl
-dnl $Id: config.m4 264447 2008-08-08 09:47:15Z pajoye $
+dnl $Id$
dnl
PHP_ARG_ENABLE(zip, for zip archive read/writesupport,
diff --git a/ext/zip/config.w32 b/ext/zip/config.w32
index a06ee9385..e60a983b3 100644
--- a/ext/zip/config.w32
+++ b/ext/zip/config.w32
@@ -1,4 +1,4 @@
-// $Id: config.w32 264425 2008-08-07 23:24:11Z pajoye $
+// $Id$
// vim:ft=javascript
ARG_ENABLE("zip", "ZIP support", "yes");
diff --git a/ext/zip/examples/im.php b/ext/zip/examples/im.php
index efd025fd5..372143405 100644
--- a/ext/zip/examples/im.php
+++ b/ext/zip/examples/im.php
@@ -1,5 +1,5 @@
<?php
-/* $Id: im.php 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
$im = imagecreatefromgif('zip://' . dirname(__FILE__) . '/test_im.zip#pear_item.gif');
imagepng($im, 'a.png');
diff --git a/ext/zip/examples/odt.php b/ext/zip/examples/odt.php
index ac175eb91..c829f1234 100644
--- a/ext/zip/examples/odt.php
+++ b/ext/zip/examples/odt.php
@@ -1,5 +1,5 @@
<?php
-/* $Id: odt.php 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
$reader = new XMLReader();
$reader->open('zip://' . dirname(__FILE__) . '/test.odt#meta.xml');
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c
index b8696aa95..55386558b 100644
--- a/ext/zip/php_zip.c
+++ b/ext/zip/php_zip.c
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_zip.c 321634 2012-01-01 13:15:04Z felipe $ */
+/* $Id$ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -2861,7 +2861,7 @@ static PHP_MINFO_FUNCTION(zip)
php_info_print_table_start();
php_info_print_table_row(2, "Zip", "enabled");
- php_info_print_table_row(2, "Extension Version","$Id: php_zip.c 321634 2012-01-01 13:15:04Z felipe $");
+ php_info_print_table_row(2, "Extension Version","$Id$");
php_info_print_table_row(2, "Zip version", PHP_ZIP_VERSION_STRING);
php_info_print_table_row(2, "Libzip version", "0.9.0");
diff --git a/ext/zip/php_zip.h b/ext/zip/php_zip.h
index f3634e77b..a321d90b0 100644
--- a/ext/zip/php_zip.h
+++ b/ext/zip/php_zip.h
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_zip.h 321634 2012-01-01 13:15:04Z felipe $ */
+/* $Id$ */
#ifndef PHP_ZIP_H
#define PHP_ZIP_H
diff --git a/ext/zip/tests/bug11216.phpt b/ext/zip/tests/bug11216.phpt
index 576e321b1..7601e6af8 100644
--- a/ext/zip/tests/bug11216.phpt
+++ b/ext/zip/tests/bug11216.phpt
@@ -2,7 +2,7 @@
Bug #11216 (::addEmptyDir() crashes when the directory already exists)
--SKIPIF--
<?php
-/* $Id: bug11216.phpt 273126 2009-01-08 22:03:32Z tony2001 $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/bug14962.phpt b/ext/zip/tests/bug14962.phpt
index 5193c0469..0006fd4b6 100644
--- a/ext/zip/tests/bug14962.phpt
+++ b/ext/zip/tests/bug14962.phpt
@@ -2,7 +2,7 @@
Bug #14962 (::extractTo second argument is not really optional)
--SKIPIF--
<?php
-/* $Id: bug14962.phpt 268855 2008-11-12 11:41:21Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/bug47667.phpt b/ext/zip/tests/bug47667.phpt
index e1084c45b..9c17de6f9 100644
--- a/ext/zip/tests/bug47667.phpt
+++ b/ext/zip/tests/bug47667.phpt
@@ -2,7 +2,7 @@
Bug #47667 (ZipArchive::OVERWRITE seems to have no effect)
--SKIPIF--
<?php
-/* $Id: bug47667.phpt 294321 2010-02-01 19:30:32Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/bug7214.phpt b/ext/zip/tests/bug7214.phpt
index 061e7e4cd..f791b7940 100644
--- a/ext/zip/tests/bug7214.phpt
+++ b/ext/zip/tests/bug7214.phpt
@@ -2,7 +2,7 @@
Bug #7214 (zip_entry_read() binary safe)
--SKIPIF--
<?php
-/* $Id: bug7214.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/bug7658.phpt b/ext/zip/tests/bug7658.phpt
index 267d8ff62..56fd00fba 100644
--- a/ext/zip/tests/bug7658.phpt
+++ b/ext/zip/tests/bug7658.phpt
@@ -2,7 +2,7 @@
Bug #7658 (modify archive with general bit flag 3 set)
--SKIPIF--
<?php
-/* $Id: bug7658.phpt 265669 2008-08-30 16:24:33Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/bug8009.phpt b/ext/zip/tests/bug8009.phpt
index 8fcfbd9d3..5dd363d2d 100644
--- a/ext/zip/tests/bug8009.phpt
+++ b/ext/zip/tests/bug8009.phpt
@@ -2,7 +2,7 @@
Bug #8009 (cannot add again same entry to an archive)
--SKIPIF--
<?php
-/* $Id: bug8009.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/bug8700.phpt b/ext/zip/tests/bug8700.phpt
index c00e76355..c394cf0be 100644
--- a/ext/zip/tests/bug8700.phpt
+++ b/ext/zip/tests/bug8700.phpt
@@ -2,7 +2,7 @@
Bug #8700 (getFromIndex(0) fails)
--SKIPIF--
<?php
-/* $Id: bug8700.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_addemptydir.phpt b/ext/zip/tests/oo_addemptydir.phpt
index 0a051894b..cb57b5b21 100644
--- a/ext/zip/tests/oo_addemptydir.phpt
+++ b/ext/zip/tests/oo_addemptydir.phpt
@@ -2,7 +2,7 @@
ziparchive::addEmptyDir
--SKIPIF--
<?php
-/* $Id: oo_addemptydir.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_addfile.phpt b/ext/zip/tests/oo_addfile.phpt
index 83bfda5ab..ab7978099 100644
--- a/ext/zip/tests/oo_addfile.phpt
+++ b/ext/zip/tests/oo_addfile.phpt
@@ -2,7 +2,7 @@
ziparchive::addFile() function
--SKIPIF--
<?php
-/* $Id: oo_addfile.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_close.phpt b/ext/zip/tests/oo_close.phpt
index 4301447a7..ea67dcddf 100644
--- a/ext/zip/tests/oo_close.phpt
+++ b/ext/zip/tests/oo_close.phpt
@@ -2,7 +2,7 @@
zip::close() function
--SKIPIF--
<?php
-/* $Id: oo_close.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_delete.phpt b/ext/zip/tests/oo_delete.phpt
index 68085054a..9eac82173 100644
--- a/ext/zip/tests/oo_delete.phpt
+++ b/ext/zip/tests/oo_delete.phpt
@@ -2,7 +2,7 @@
Delete entries
--SKIPIF--
<?php
-/* $Id: oo_delete.phpt 265694 2008-08-30 23:55:04Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_ext_zip.phpt b/ext/zip/tests/oo_ext_zip.phpt
index c76e96f43..739a671e0 100644
--- a/ext/zip/tests/oo_ext_zip.phpt
+++ b/ext/zip/tests/oo_ext_zip.phpt
@@ -2,7 +2,7 @@
Extending Zip class and array property
--SKIPIF--
<?php
-/* $Id: oo_ext_zip.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_extract.phpt b/ext/zip/tests/oo_extract.phpt
index 05d932420..7ca39eeab 100644
--- a/ext/zip/tests/oo_extract.phpt
+++ b/ext/zip/tests/oo_extract.phpt
@@ -2,7 +2,7 @@
extractTo
--SKIPIF--
<?php
-/* $Id: oo_extract.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_getcomment.phpt b/ext/zip/tests/oo_getcomment.phpt
index 7044be160..d05385c7d 100644
--- a/ext/zip/tests/oo_getcomment.phpt
+++ b/ext/zip/tests/oo_getcomment.phpt
@@ -2,7 +2,7 @@
getComment
--SKIPIF--
<?php
-/* $Id: oo_getcomment.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_getnameindex.phpt b/ext/zip/tests/oo_getnameindex.phpt
index 7b70f38c6..cd4c9dbe3 100644
--- a/ext/zip/tests/oo_getnameindex.phpt
+++ b/ext/zip/tests/oo_getnameindex.phpt
@@ -2,7 +2,7 @@
getNameIndex
--SKIPIF--
<?php
-/* $Id: oo_getnameindex.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_namelocate.phpt b/ext/zip/tests/oo_namelocate.phpt
index 579a00952..bbe7ec55d 100644
--- a/ext/zip/tests/oo_namelocate.phpt
+++ b/ext/zip/tests/oo_namelocate.phpt
@@ -2,7 +2,7 @@
Locate entries by name
--SKIPIF--
<?php
-/* $Id: oo_namelocate.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_open.phpt b/ext/zip/tests/oo_open.phpt
index e8acad0a0..0760db34c 100644
--- a/ext/zip/tests/oo_open.phpt
+++ b/ext/zip/tests/oo_open.phpt
@@ -2,7 +2,7 @@
zip::open() function
--SKIPIF--
<?php
-/* $Id: oo_open.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_properties.phpt b/ext/zip/tests/oo_properties.phpt
index b47154c2d..886317b57 100644
--- a/ext/zip/tests/oo_properties.phpt
+++ b/ext/zip/tests/oo_properties.phpt
@@ -2,7 +2,7 @@
ziparchive::properties isset()/empty() checks
--SKIPIF--
<?php
-/* $Id: oo_properties.phpt 273126 2009-01-08 22:03:32Z tony2001 $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_rename.phpt b/ext/zip/tests/oo_rename.phpt
index aa0a88658..98489ae25 100644
--- a/ext/zip/tests/oo_rename.phpt
+++ b/ext/zip/tests/oo_rename.phpt
@@ -2,7 +2,7 @@
Rename entries
--SKIPIF--
<?php
-/* $Id: oo_rename.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_setcomment.phpt b/ext/zip/tests/oo_setcomment.phpt
index 9fb742d9a..89d6e8ef6 100644
--- a/ext/zip/tests/oo_setcomment.phpt
+++ b/ext/zip/tests/oo_setcomment.phpt
@@ -2,7 +2,7 @@
setComment
--SKIPIF--
<?php
-/* $Id: oo_setcomment.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/oo_stream.phpt b/ext/zip/tests/oo_stream.phpt
index cddd5e8e7..126e78f6f 100644
--- a/ext/zip/tests/oo_stream.phpt
+++ b/ext/zip/tests/oo_stream.phpt
@@ -2,7 +2,7 @@
getStream
--SKIPIF--
<?php
-/* $Id: oo_stream.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/utils.inc b/ext/zip/tests/utils.inc
index 3b4cb6b9c..02e37f6d5 100644
--- a/ext/zip/tests/utils.inc
+++ b/ext/zip/tests/utils.inc
@@ -1,5 +1,5 @@
<?php
-/* $Id: utils.inc 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
function dump_entries_name($z) {
for($i=0; $i<$z->numFiles; $i++) {
$sb = $z->statIndex($i);
diff --git a/ext/zip/tests/zip_close.phpt b/ext/zip/tests/zip_close.phpt
index e59bf3ed7..7f9d09ae3 100644
--- a/ext/zip/tests/zip_close.phpt
+++ b/ext/zip/tests/zip_close.phpt
@@ -2,7 +2,7 @@
zip_close() function
--SKIPIF--
<?php
-/* $Id: zip_close.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/zip_entry_compressedsize.phpt b/ext/zip/tests/zip_entry_compressedsize.phpt
index 29f305cc6..fefa6e597 100644
--- a/ext/zip/tests/zip_entry_compressedsize.phpt
+++ b/ext/zip/tests/zip_entry_compressedsize.phpt
@@ -2,7 +2,7 @@
zip_entry_compressedsize() function
--SKIPIF--
<?php
-/* $Id: zip_entry_compressedsize.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/zip_entry_compressionmethod.phpt b/ext/zip/tests/zip_entry_compressionmethod.phpt
index 1705d32c0..cabdbb797 100644
--- a/ext/zip/tests/zip_entry_compressionmethod.phpt
+++ b/ext/zip/tests/zip_entry_compressionmethod.phpt
@@ -2,7 +2,7 @@
zip_entry_compressionmethod() function
--SKIPIF--
<?php
-/* $Id: zip_entry_compressionmethod.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/zip_entry_filesize.phpt b/ext/zip/tests/zip_entry_filesize.phpt
index a10a0b22c..b8d8820b6 100644
--- a/ext/zip/tests/zip_entry_filesize.phpt
+++ b/ext/zip/tests/zip_entry_filesize.phpt
@@ -2,7 +2,7 @@
zip_entry_filesize() function
--SKIPIF--
<?php
-/* $Id: zip_entry_filesize.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/zip_entry_name.phpt b/ext/zip/tests/zip_entry_name.phpt
index 42bb07cf6..1916e25da 100644
--- a/ext/zip/tests/zip_entry_name.phpt
+++ b/ext/zip/tests/zip_entry_name.phpt
@@ -2,7 +2,7 @@
zip_entry_name() function
--SKIPIF--
<?php
-/* $Id: zip_entry_name.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/zip_entry_open.phpt b/ext/zip/tests/zip_entry_open.phpt
index c3dabe858..c32fe5740 100644
--- a/ext/zip/tests/zip_entry_open.phpt
+++ b/ext/zip/tests/zip_entry_open.phpt
@@ -2,7 +2,7 @@
zip_entry_open() function
--SKIPIF--
<?php
-/* $Id: zip_entry_open.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/zip_entry_read.phpt b/ext/zip/tests/zip_entry_read.phpt
index f2b502297..d876f03fb 100644
--- a/ext/zip/tests/zip_entry_read.phpt
+++ b/ext/zip/tests/zip_entry_read.phpt
@@ -2,7 +2,7 @@
zip_entry_read() function
--SKIPIF--
<?php
-/* $Id: zip_entry_read.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/zip_open.phpt b/ext/zip/tests/zip_open.phpt
index e63c40e30..91474bc6f 100644
--- a/ext/zip/tests/zip_open.phpt
+++ b/ext/zip/tests/zip_open.phpt
@@ -2,7 +2,7 @@
zip_open() function
--SKIPIF--
<?php
-/* $Id: zip_open.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/tests/zip_read.phpt b/ext/zip/tests/zip_read.phpt
index 654e22fa4..5cadb2d1e 100644
--- a/ext/zip/tests/zip_read.phpt
+++ b/ext/zip/tests/zip_read.phpt
@@ -2,7 +2,7 @@
zip_read() function
--SKIPIF--
<?php
-/* $Id: zip_read.phpt 260091 2008-05-21 09:27:41Z pajoye $ */
+/* $Id$ */
if(!extension_loaded('zip')) die('skip');
?>
--FILE--
diff --git a/ext/zip/zip_stream.c b/ext/zip/zip_stream.c
index 82710ecc7..400edd6e6 100644
--- a/ext/zip/zip_stream.c
+++ b/ext/zip/zip_stream.c
@@ -1,4 +1,4 @@
-/* $Id: zip_stream.c 307916 2011-02-01 14:43:52Z cataphract $ */
+/* $Id$ */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif