summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Kamppeter <till.kamppeter@gmail.com>2007-05-08 17:30:26 +0000
committerTill Kamppeter <till.kamppeter@gmail.com>2007-05-08 17:30:26 +0000
commit262a2754c5352465e66fecb05cbba54475e8e5e0 (patch)
treee82a299e3c165f3ebcb2a6c27d7fbe24ef9107bd
parent865f95d53b67987bd27a5a2ee4e379ecbbe95ccb (diff)
downloadghostpdl-262a2754c5352465e66fecb05cbba54475e8e5e0.tar.gz
src/version.mak --> src/version.mak.in (part of build system patch)
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@7915 a1074d23-0009-0410-80fe-cf8c14f379e6
-rw-r--r--gs/src/version.mak0
-rw-r--r--gs/src/version.mak.in26
2 files changed, 26 insertions, 0 deletions
diff --git a/gs/src/version.mak b/gs/src/version.mak
deleted file mode 100644
index e69de29bb..000000000
--- a/gs/src/version.mak
+++ /dev/null
diff --git a/gs/src/version.mak.in b/gs/src/version.mak.in
new file mode 100644
index 000000000..d6a9f7aa4
--- /dev/null
+++ b/gs/src/version.mak.in
@@ -0,0 +1,26 @@
+# Copyright (C) 2001-2006 artofcode LLC.
+# All Rights Reserved.
+#
+# This software is provided AS-IS with no warranty, either express or
+# implied.
+#
+# This software is distributed under license and may not be copied, modified
+# or distributed except as expressly authorized under the terms of that
+# license. Refer to licensing information at http://www.artifex.com/
+# 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.
+#
+# $Id: version.mak 7790 2007-03-15 00:44:21Z giles $
+# Makefile fragment containing the current revision identification.
+
+# Major and minor version numbers.
+# MINOR0 is different from MINOR only if MINOR is a single digit.
+GS_VERSION_MAJOR=@GS_VERSION_MAJOR@
+GS_VERSION_MINOR=@GS_VERSION_MINOR@
+GS_VERSION_MINOR0=@GS_VERSION_MINOR0@
+# Revision date: year x 10000 + month x 100 + day.
+GS_REVISIONDATE=@GS_REVISIONDATE@
+# Derived values
+GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
+GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR0)
+GS_REVISION=$(GS_VERSION)