summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2014-03-14 10:00:05 +0000
committerChris Liddell <chris.liddell@artifex.com>2014-03-14 10:00:05 +0000
commitb65f4e9d7cdd32981680a5486e1c1c320ac4046e (patch)
tree836ed040bf7b71bff6639d554395f6cdbdec4c68
parent7784cce96478d8bcec314e2dc8ecb3d3a849c37b (diff)
downloadghostpdl-b65f4e9d7cdd32981680a5486e1c1c320ac4046e.tar.gz
Update version number, release and copyright dates.
-rw-r--r--gs/Makefile.in2
-rw-r--r--gs/Resource/Init/gs_init.ps2
-rw-r--r--gs/base/gscdef.c4
-rw-r--r--gs/base/version.mak6
-rw-r--r--gs/doc/API.htm2
-rw-r--r--gs/doc/C-style.htm2
-rw-r--r--gs/doc/Commprod.htm2
-rw-r--r--gs/doc/DLL.htm2
-rw-r--r--gs/doc/Deprecated.htm2
-rw-r--r--gs/doc/Details8.htm2
-rw-r--r--gs/doc/Details9.htm2
-rw-r--r--gs/doc/Develop.htm2
-rw-r--r--gs/doc/Devices.htm2
-rw-r--r--gs/doc/Drivers.htm2
-rw-r--r--gs/doc/Fonts.htm2
-rw-r--r--gs/doc/Helpers.htm2
-rw-r--r--gs/doc/History1.htm2
-rw-r--r--gs/doc/History2.htm2
-rw-r--r--gs/doc/History3.htm2
-rw-r--r--gs/doc/History4.htm2
-rw-r--r--gs/doc/History5.htm2
-rw-r--r--gs/doc/History6.htm2
-rw-r--r--gs/doc/History7.htm2
-rw-r--r--gs/doc/History8.htm2
-rw-r--r--gs/doc/History9.htm2
-rw-r--r--gs/doc/Install.htm2
-rw-r--r--gs/doc/Issues.htm2
-rw-r--r--gs/doc/Language.htm2
-rw-r--r--gs/doc/Lib.htm2
-rw-r--r--gs/doc/Make.htm2
-rw-r--r--gs/doc/News.htm6
-rw-r--r--gs/doc/Projects.htm2
-rw-r--r--gs/doc/Ps-style.htm2
-rw-r--r--gs/doc/Ps2epsi.htm2
-rw-r--r--gs/doc/Ps2pdf.htm2
-rw-r--r--gs/doc/Ps2ps2.htm2
-rw-r--r--gs/doc/Psfiles.htm2
-rw-r--r--gs/doc/Readme.htm2
-rw-r--r--gs/doc/Release.htm2
-rw-r--r--gs/doc/SavedPages.htm2
-rw-r--r--gs/doc/Source.htm2
-rw-r--r--gs/doc/Unix-lpr.htm2
-rw-r--r--gs/doc/Use.htm2
-rw-r--r--gs/doc/WhatIsGS.htm2
-rw-r--r--gs/doc/Xfonts.htm2
-rw-r--r--gs/doc/gs-vms.hlp2
-rw-r--r--gs/doc/thirdparty.htm2
-rw-r--r--gs/man/dvipdf.14
-rw-r--r--gs/man/font2c.14
-rw-r--r--gs/man/gs.14
-rw-r--r--gs/man/gslp.14
-rw-r--r--gs/man/gsnd.14
-rw-r--r--gs/man/pdf2dsc.14
-rw-r--r--gs/man/pdf2ps.14
-rw-r--r--gs/man/pf2afm.14
-rw-r--r--gs/man/pfbtopfa.14
-rw-r--r--gs/man/printafm.14
-rw-r--r--gs/man/ps2ascii.14
-rw-r--r--gs/man/ps2epsi.14
-rw-r--r--gs/man/ps2pdf.14
-rw-r--r--gs/man/ps2pdfwr.14
-rw-r--r--gs/man/ps2ps.14
-rw-r--r--gs/man/wftopfa.14
-rw-r--r--gs/psi/msvc.mak2
-rw-r--r--gs/psi/winint.mak2
65 files changed, 86 insertions, 86 deletions
diff --git a/gs/Makefile.in b/gs/Makefile.in
index b4e9d9366..c1e7f50b4 100644
--- a/gs/Makefile.in
+++ b/gs/Makefile.in
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2012 Artifex Software, Inc.
+# Copyright (C) 2001-2014 Artifex Software, Inc.
# All Rights Reserved.
#
# This software is provided AS-IS with no warranty, either express or
diff --git a/gs/Resource/Init/gs_init.ps b/gs/Resource/Init/gs_init.ps
index fdc96822c..6cf7f4995 100644
--- a/gs/Resource/Init/gs_init.ps
+++ b/gs/Resource/Init/gs_init.ps
@@ -29,7 +29,7 @@
% Interpreter library version number
% NOTE: the interpreter code requires that the first non-comment token
% in this file be an integer, and that it match the compiled-in version!
-911
+912
% Check the interpreter revision.
dup revision ne
diff --git a/gs/base/gscdef.c b/gs/base/gscdef.c
index cd95df689..e6a1397f2 100644
--- a/gs/base/gscdef.c
+++ b/gs/base/gscdef.c
@@ -33,7 +33,7 @@ const long gs_buildtime = GS_BUILDTIME;
#ifndef GS_COPYRIGHT
# define GS_COPYRIGHT\
- "Copyright (C) 2013 Artifex Software, Inc. All rights reserved."
+ "Copyright (C) 2014 Artifex Software, Inc. All rights reserved."
#endif
const char *const gs_copyright = GS_COPYRIGHT;
@@ -45,7 +45,7 @@ const char *const gs_productfamily = GS_PRODUCTFAMILY;
#ifndef GS_PRODUCT
# define GS_PRODUCT\
- GS_PRODUCTFAMILY " GIT PRERELEASE"
+ GS_PRODUCTFAMILY " RELEASE CANDIDATE 1"
#endif
const char *const gs_product = GS_PRODUCT;
diff --git a/gs/base/version.mak b/gs/base/version.mak
index bcb036eaa..0f0d2a5e2 100644
--- a/gs/base/version.mak
+++ b/gs/base/version.mak
@@ -15,10 +15,10 @@
# Major and minor version numbers.
# MINOR0 is different from MINOR only if MINOR is a single digit.
GS_VERSION_MAJOR=9
-GS_VERSION_MINOR=11
-GS_VERSION_MINOR0=11
+GS_VERSION_MINOR=12
+GS_VERSION_MINOR0=12
# Revision date: year x 10000 + month x 100 + day.
-GS_REVISIONDATE=20130830
+GS_REVISIONDATE=20140314
# Derived values
GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR0)
diff --git a/gs/doc/API.htm b/gs/doc/API.htm
index ee51b0e78..a955d46d1 100644
--- a/gs/doc/API.htm
+++ b/gs/doc/API.htm
@@ -841,7 +841,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/C-style.htm b/gs/doc/C-style.htm
index 6fc6d9ff8..235fb3b5b 100644
--- a/gs/doc/C-style.htm
+++ b/gs/doc/C-style.htm
@@ -1570,7 +1570,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Commprod.htm b/gs/doc/Commprod.htm
index 6af409b37..de0d3a57f 100644
--- a/gs/doc/Commprod.htm
+++ b/gs/doc/Commprod.htm
@@ -251,7 +251,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/DLL.htm b/gs/doc/DLL.htm
index 6c1d8ec60..08fa7c217 100644
--- a/gs/doc/DLL.htm
+++ b/gs/doc/DLL.htm
@@ -702,7 +702,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Deprecated.htm b/gs/doc/Deprecated.htm
index bf510b115..e70caf5e9 100644
--- a/gs/doc/Deprecated.htm
+++ b/gs/doc/Deprecated.htm
@@ -5592,7 +5592,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Details8.htm b/gs/doc/Details8.htm
index 35ac75234..f94d914ba 100644
--- a/gs/doc/Details8.htm
+++ b/gs/doc/Details8.htm
@@ -104188,7 +104188,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Details9.htm b/gs/doc/Details9.htm
index 1632b25b9..acf60db69 100644
--- a/gs/doc/Details9.htm
+++ b/gs/doc/Details9.htm
@@ -13042,7 +13042,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Develop.htm b/gs/doc/Develop.htm
index 4f7e02b4e..1398bdca9 100644
--- a/gs/doc/Develop.htm
+++ b/gs/doc/Develop.htm
@@ -4823,7 +4823,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Devices.htm b/gs/doc/Devices.htm
index 364d70ebc..8e20ebccb 100644
--- a/gs/doc/Devices.htm
+++ b/gs/doc/Devices.htm
@@ -1789,7 +1789,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Drivers.htm b/gs/doc/Drivers.htm
index cf70f6981..fbdd2c9ef 100644
--- a/gs/doc/Drivers.htm
+++ b/gs/doc/Drivers.htm
@@ -3550,7 +3550,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Fonts.htm b/gs/doc/Fonts.htm
index e392c8d07..595957a21 100644
--- a/gs/doc/Fonts.htm
+++ b/gs/doc/Fonts.htm
@@ -774,7 +774,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Helpers.htm b/gs/doc/Helpers.htm
index 9428f8c18..a3109da92 100644
--- a/gs/doc/Helpers.htm
+++ b/gs/doc/Helpers.htm
@@ -300,7 +300,7 @@ contact Artifex Software, Inc., 101 Lucas Valley Road #110,
San Rafael, CA 94903, U.S.A., +1(415)492-9861.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History1.htm b/gs/doc/History1.htm
index 86394759b..ff0bcac1b 100644
--- a/gs/doc/History1.htm
+++ b/gs/doc/History1.htm
@@ -430,7 +430,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History2.htm b/gs/doc/History2.htm
index 8983ca8fc..aca2c8f91 100644
--- a/gs/doc/History2.htm
+++ b/gs/doc/History2.htm
@@ -5224,7 +5224,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History3.htm b/gs/doc/History3.htm
index 4343b969b..73ae63cbf 100644
--- a/gs/doc/History3.htm
+++ b/gs/doc/History3.htm
@@ -8589,7 +8589,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History4.htm b/gs/doc/History4.htm
index d351b4b00..ad5ca3956 100644
--- a/gs/doc/History4.htm
+++ b/gs/doc/History4.htm
@@ -3973,7 +3973,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History5.htm b/gs/doc/History5.htm
index 03efaedfb..ff49d5cd2 100644
--- a/gs/doc/History5.htm
+++ b/gs/doc/History5.htm
@@ -13447,7 +13447,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History6.htm b/gs/doc/History6.htm
index dd9584b2b..a3bae5863 100644
--- a/gs/doc/History6.htm
+++ b/gs/doc/History6.htm
@@ -7324,7 +7324,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History7.htm b/gs/doc/History7.htm
index aa8fd4571..0695ecd0b 100644
--- a/gs/doc/History7.htm
+++ b/gs/doc/History7.htm
@@ -15713,7 +15713,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History8.htm b/gs/doc/History8.htm
index 483cb2461..88f902384 100644
--- a/gs/doc/History8.htm
+++ b/gs/doc/History8.htm
@@ -62047,7 +62047,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/History9.htm b/gs/doc/History9.htm
index 8cd6e3e6d..c278598a4 100644
--- a/gs/doc/History9.htm
+++ b/gs/doc/History9.htm
@@ -93215,7 +93215,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Install.htm b/gs/doc/Install.htm
index 80d3a5129..12de867d2 100644
--- a/gs/doc/Install.htm
+++ b/gs/doc/Install.htm
@@ -564,7 +564,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Issues.htm b/gs/doc/Issues.htm
index d76250b8a..978fca5c9 100644
--- a/gs/doc/Issues.htm
+++ b/gs/doc/Issues.htm
@@ -439,7 +439,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Language.htm b/gs/doc/Language.htm
index 430b6e6de..720e0600a 100644
--- a/gs/doc/Language.htm
+++ b/gs/doc/Language.htm
@@ -2401,7 +2401,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Lib.htm b/gs/doc/Lib.htm
index b9a3967c2..a641553d3 100644
--- a/gs/doc/Lib.htm
+++ b/gs/doc/Lib.htm
@@ -861,7 +861,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Make.htm b/gs/doc/Make.htm
index 97a985ab2..f4d29fdde 100644
--- a/gs/doc/Make.htm
+++ b/gs/doc/Make.htm
@@ -2962,7 +2962,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/News.htm b/gs/doc/News.htm
index 549efcb77..de1ce1987 100644
--- a/gs/doc/News.htm
+++ b/gs/doc/News.htm
@@ -56,7 +56,7 @@ overview</a>.
<!-- [2.0 begin contents] ================================================== -->
-<h2><a name="Version9.10"></a>Version 9.10 (2013-08-30)</h2>
+<h2><a name="Version9.12"></a>Version 9.12 (2014-03-14)</h2>
<p>This is the eighth full release in the stable 9.x series, and is
primarily a maintenance release.
@@ -115,7 +115,7 @@ of changes.
<hr>
<p>
-<small>Copyright &copy; 2005-2013 Artifex Software, Inc.
+<small>Copyright &copy; 2005-2014 Artifex Software, Inc.
All rights reserved.</small>
<p>
@@ -129,7 +129,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Projects.htm b/gs/doc/Projects.htm
index d4204a2b5..28755e676 100644
--- a/gs/doc/Projects.htm
+++ b/gs/doc/Projects.htm
@@ -634,7 +634,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Ps-style.htm b/gs/doc/Ps-style.htm
index bc456d1d6..5f76c48ac 100644
--- a/gs/doc/Ps-style.htm
+++ b/gs/doc/Ps-style.htm
@@ -505,7 +505,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Ps2epsi.htm b/gs/doc/Ps2epsi.htm
index 2d48bfd27..0c90c6475 100644
--- a/gs/doc/Ps2epsi.htm
+++ b/gs/doc/Ps2epsi.htm
@@ -176,7 +176,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Ps2pdf.htm b/gs/doc/Ps2pdf.htm
index fc77f6040..ebc6f8b1f 100644
--- a/gs/doc/Ps2pdf.htm
+++ b/gs/doc/Ps2pdf.htm
@@ -1129,7 +1129,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Ps2ps2.htm b/gs/doc/Ps2ps2.htm
index 9a0a86586..53066ed9a 100644
--- a/gs/doc/Ps2ps2.htm
+++ b/gs/doc/Ps2ps2.htm
@@ -282,7 +282,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Psfiles.htm b/gs/doc/Psfiles.htm
index 5404ed7a0..58121e00e 100644
--- a/gs/doc/Psfiles.htm
+++ b/gs/doc/Psfiles.htm
@@ -1003,7 +1003,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Readme.htm b/gs/doc/Readme.htm
index 021e66aed..2eb20fa59 100644
--- a/gs/doc/Readme.htm
+++ b/gs/doc/Readme.htm
@@ -602,7 +602,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Release.htm b/gs/doc/Release.htm
index 96352c260..9398c31b6 100644
--- a/gs/doc/Release.htm
+++ b/gs/doc/Release.htm
@@ -844,7 +844,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/SavedPages.htm b/gs/doc/SavedPages.htm
index 2eb5d53d9..82ac0cc08 100644
--- a/gs/doc/SavedPages.htm
+++ b/gs/doc/SavedPages.htm
@@ -276,7 +276,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861.
<p>
-<small>Ghostscript version 9.09, 21 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Source.htm b/gs/doc/Source.htm
index 288409388..97db79a6a 100644
--- a/gs/doc/Source.htm
+++ b/gs/doc/Source.htm
@@ -376,7 +376,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Unix-lpr.htm b/gs/doc/Unix-lpr.htm
index d2e9da1c7..1b9b5d105 100644
--- a/gs/doc/Unix-lpr.htm
+++ b/gs/doc/Unix-lpr.htm
@@ -260,7 +260,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Use.htm b/gs/doc/Use.htm
index ae69ca6ec..95284223b 100644
--- a/gs/doc/Use.htm
+++ b/gs/doc/Use.htm
@@ -4314,7 +4314,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/WhatIsGS.htm b/gs/doc/WhatIsGS.htm
index e47114cad..5f68f3dd7 100644
--- a/gs/doc/WhatIsGS.htm
+++ b/gs/doc/WhatIsGS.htm
@@ -196,7 +196,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/Xfonts.htm b/gs/doc/Xfonts.htm
index c6ba97ac5..5857cebd6 100644
--- a/gs/doc/Xfonts.htm
+++ b/gs/doc/Xfonts.htm
@@ -271,7 +271,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/doc/gs-vms.hlp b/gs/doc/gs-vms.hlp
index 10dbf4412..888d3240e 100644
--- a/gs/doc/gs-vms.hlp
+++ b/gs/doc/gs-vms.hlp
@@ -1,6 +1,6 @@
1 gs
gs - GPL Ghostscript interpreter/previewer
-! Ghostscript version 9.10, 30 August 2013
+! Ghostscript version 9.12, 14 March 2014
Usage:
$ gs [options] [file ...]
diff --git a/gs/doc/thirdparty.htm b/gs/doc/thirdparty.htm
index fc95a75df..d9c943e15 100644
--- a/gs/doc/thirdparty.htm
+++ b/gs/doc/thirdparty.htm
@@ -495,7 +495,7 @@ or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
<p>
-<small>Ghostscript version 9.10, 30 August 2013
+<small>Ghostscript version 9.12, 14 March 2014
<!-- [3.0 end visible trailer] ============================================= -->
diff --git a/gs/man/dvipdf.1 b/gs/man/dvipdf.1
index 1302d22bf..f39b4abf5 100644
--- a/gs/man/dvipdf.1
+++ b/gs/man/dvipdf.1
@@ -1,4 +1,4 @@
-.TH DVIPDF 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH DVIPDF 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
dvipdf \- Convert TeX DVI file to PDF using ghostscript and dvips
.SH SYNOPSIS
@@ -21,7 +21,7 @@ and any options from the command-line.
.SH SEE ALSO
gs(1), dvips(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.09.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/font2c.1 b/gs/man/font2c.1
index a9130afca..1f496203d 100644
--- a/gs/man/font2c.1
+++ b/gs/man/font2c.1
@@ -1,4 +1,4 @@
-.TH FONT2C 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH FONT2C 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
font2c \- Write PostScript Type 0 or Type 1 font as C code
.SH SYNOPSIS
@@ -17,7 +17,7 @@ that can be linked with the interpreter.
.SH SEE ALSO
gs(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/gs.1 b/gs/man/gs.1
index 77bb63273..dd81706ff 100644
--- a/gs/man/gs.1
+++ b/gs/man/gs.1
@@ -1,4 +1,4 @@
-.TH GS 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH GS 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
gs \- Ghostscript (PostScript and PDF language interpreter and previewer)
.SH SYNOPSIS
@@ -448,7 +448,7 @@ The various Ghostscript document files (above), especially \fBUse.htm\fR.
See http://bugs.ghostscript.com/ and the Usenet news group
comp.lang.postscript.
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the primary maintainers
of Ghostscript.
diff --git a/gs/man/gslp.1 b/gs/man/gslp.1
index bc852872e..1b857cdac 100644
--- a/gs/man/gslp.1
+++ b/gs/man/gslp.1
@@ -1,4 +1,4 @@
-.TH GSLP 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH GSLP 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
gslp \- Format and print text using ghostscript
.br
@@ -92,7 +92,7 @@ Also, the string %# in a heading or footing is replaced with the page #.
.SH SEE ALSO
gs(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/gsnd.1 b/gs/man/gsnd.1
index a21369492..58c32b806 100644
--- a/gs/man/gsnd.1
+++ b/gs/man/gsnd.1
@@ -1,4 +1,4 @@
-.TH GSND 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH GSND 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
gsnd \- Run ghostscript (PostScript and PDF engine) without display
.SH SYNOPSIS
@@ -12,7 +12,7 @@ flag, followed by any other arguments from the command-line.
.SH SEE ALSO
gs(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/pdf2dsc.1 b/gs/man/pdf2dsc.1
index e4973b2c1..4facca336 100644
--- a/gs/man/pdf2dsc.1
+++ b/gs/man/pdf2dsc.1
@@ -1,4 +1,4 @@
-.TH PDF2DSC 1 "30 August 2013" 9.10 "Ghostscript Tools" \" -*- nroff -*-
+.TH PDF2DSC 1 "14 March 2014" 9.12 "Ghostscript Tools" \" -*- nroff -*-
.SH NAME
pdf2dsc \- generate a PostScript page list of a PDF document
.SH SYNOPSIS
@@ -28,6 +28,6 @@ Ghostscript since release 3.53.
.SH SEE ALSO
gs(1), ghostview(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Yves Arrouye <yves.arrouye@usa.net> and Russell Lang gsview at ghostgum.com.au
diff --git a/gs/man/pdf2ps.1 b/gs/man/pdf2ps.1
index 711577831..56c68b2a0 100644
--- a/gs/man/pdf2ps.1
+++ b/gs/man/pdf2ps.1
@@ -1,4 +1,4 @@
-.TH PDF2PS 1 "30 August 2013" 9.10 "Ghostscript Tools" \" -*- nroff -*-
+.TH PDF2PS 1 "14 March 2014" 9.12 "Ghostscript Tools" \" -*- nroff -*-
.SH NAME
pdf2ps \- Ghostscript PDF to PostScript translator
.SH SYNOPSIS
@@ -14,7 +14,7 @@ LanguageLevel 3 in the output.
Run "\fBgs -h\fR" to find the location of Ghostscript documentation on your
system, from which you can get more details.
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/pf2afm.1 b/gs/man/pf2afm.1
index bae9f9901..6e834bfe8 100644
--- a/gs/man/pf2afm.1
+++ b/gs/man/pf2afm.1
@@ -1,4 +1,4 @@
-.TH PF2AFM 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH PF2AFM 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
pf2afm \- Make an AFM file from Postscript (PFB/PFA/PFM) font files using ghostscript
.SH SYNOPSIS
@@ -15,7 +15,7 @@ gs(1)
.br
pf2afm.ps in the Ghostscript lib directory.
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/pfbtopfa.1 b/gs/man/pfbtopfa.1
index e4d204fd3..21d9d46f7 100644
--- a/gs/man/pfbtopfa.1
+++ b/gs/man/pfbtopfa.1
@@ -1,4 +1,4 @@
-.TH PFBTOPFA 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH PFBTOPFA 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
pfbtopfa \- Convert Postscript .pfb fonts to .pfa format using ghostscript
.SH SYNOPSIS
@@ -10,7 +10,7 @@ to convert a .pfb file into a .pfa file.
.SH SEE ALSO
gs(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/printafm.1 b/gs/man/printafm.1
index c173b5302..8ea6da445 100644
--- a/gs/man/printafm.1
+++ b/gs/man/printafm.1
@@ -1,4 +1,4 @@
-.TH PRINTAFM 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH PRINTAFM 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
printafm \- Print the metrics from a Postscript font in AFM format using ghostscript
.SH SYNOPSIS
@@ -11,7 +11,7 @@ Output goes to stdout.
.SH SEE ALSO
gs(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/ps2ascii.1 b/gs/man/ps2ascii.1
index d434fb5fa..2e2bf4d40 100644
--- a/gs/man/ps2ascii.1
+++ b/gs/man/ps2ascii.1
@@ -1,4 +1,4 @@
-.TH PS2ASCII 1 "30 August 2013" 9.10 "Ghostscript Tools" \" -*- nroff -*-
+.TH PS2ASCII 1 "14 March 2014" 9.12 "Ghostscript Tools" \" -*- nroff -*-
.SH NAME
ps2ascii \- Ghostscript translator from PostScript or PDF to ASCII
.SH SYNOPSIS
@@ -22,7 +22,7 @@ system, from which you can get more details.
.SH SEE ALSO
pstotext(1), http://www.research.digital.com/SRC/virtualpaper/pstotext.html
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/ps2epsi.1 b/gs/man/ps2epsi.1
index 1b115c9cf..e5ebc982c 100644
--- a/gs/man/ps2epsi.1
+++ b/gs/man/ps2epsi.1
@@ -1,4 +1,4 @@
-.TH PS2EPSI 1 "30 August 2013" 9.10 "Ghostscript Tools" \" -*- nroff -*-
+.TH PS2EPSI 1 "14 March 2014" 9.12 "Ghostscript Tools" \" -*- nroff -*-
.SH NAME
ps2epsi \- generate conforming Encapsulated PostScript
.SH SYNOPSIS
@@ -59,7 +59,7 @@ ps2epsi.ps>the Ghostscript program which does the work
.SH SEE ALSO
gs (1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
However, the content may be obsolete, or inconsistent with ps2epsi.txt.
.SH AUTHOR
George Cameron
diff --git a/gs/man/ps2pdf.1 b/gs/man/ps2pdf.1
index 49c66fd53..ea10741f8 100644
--- a/gs/man/ps2pdf.1
+++ b/gs/man/ps2pdf.1
@@ -1,4 +1,4 @@
-.TH PS2PDF 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH PS2PDF 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
ps2pdf \- Convert PostScript to PDF using ghostscript
.br
@@ -89,7 +89,7 @@ Ps2pdf.htm in the Ghostscript documentation
See http://bugs.ghostscript.com/ and the Usenet news group
comp.lang.postscript.
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/ps2pdfwr.1 b/gs/man/ps2pdfwr.1
index c20e23281..d145e8391 100644
--- a/gs/man/ps2pdfwr.1
+++ b/gs/man/ps2pdfwr.1
@@ -1,4 +1,4 @@
-.TH PS2PDFWR 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH PS2PDFWR 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
ps2pdfwr \- Convert PostScript to PDF without specifying CompatibilityLevel, using ghostscript
.SH SYNOPSIS
@@ -23,7 +23,7 @@ scripts all invoke this one with the addition of the respective compatibility le
.SH SEE ALSO
gs(1), ps2pdf(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/ps2ps.1 b/gs/man/ps2ps.1
index 5829f28cd..5120ab495 100644
--- a/gs/man/ps2ps.1
+++ b/gs/man/ps2ps.1
@@ -1,4 +1,4 @@
-.TH PS2PS 1 "30 August 2013" 9.10 "Ghostscript Tools" \" -*- nroff -*-
+.TH PS2PS 1 "14 March 2014" 9.12 "Ghostscript Tools" \" -*- nroff -*-
.SH NAME
ps2ps, eps2eps \- Ghostscript PostScript "distiller"
.SH SYNOPSIS
@@ -26,7 +26,7 @@ lower level output than is desirable. Use with caution.
.SH SEE ALSO
ps2pdf(1), ps2ascii(1), ps2epsi(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/man/wftopfa.1 b/gs/man/wftopfa.1
index 8147d9cbe..80ac564aa 100644
--- a/gs/man/wftopfa.1
+++ b/gs/man/wftopfa.1
@@ -1,4 +1,4 @@
-.TH WFTOPFA 1 "30 August 2013" 9.10 Ghostscript \" -*- nroff -*-
+.TH WFTOPFA 1 "14 March 2014" 9.12 Ghostscript \" -*- nroff -*-
.SH NAME
wftopfa \- Convert a Wadalab base font to Postscript .PFA (or .PFB)
format using ghostscript
@@ -12,7 +12,7 @@ format.
.SH SEE ALSO
gs(1)
.SH VERSION
-This document was last revised for Ghostscript version 9.10.
+This document was last revised for Ghostscript version 9.12.
.SH AUTHOR
Artifex Software, Inc. are the
primary maintainers of Ghostscript.
diff --git a/gs/psi/msvc.mak b/gs/psi/msvc.mak
index ef97603f8..485fc8596 100644
--- a/gs/psi/msvc.mak
+++ b/gs/psi/msvc.mak
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2012 Artifex Software, Inc.
+# Copyright (C) 2001-2014 Artifex Software, Inc.
# All Rights Reserved.
#
# This software is provided AS-IS with no warranty, either express or
diff --git a/gs/psi/winint.mak b/gs/psi/winint.mak
index c77a13968..bca3ca9b3 100644
--- a/gs/psi/winint.mak
+++ b/gs/psi/winint.mak
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2013 Artifex Software, Inc.
+# Copyright (C) 2001-2014 Artifex Software, Inc.
# All Rights Reserved.
#
# This software is provided AS-IS with no warranty, either express or