summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2004-11-10 16:50:39 +0000
committerwiz <wiz@pkgsrc.org>2004-11-10 16:50:39 +0000
commit10d31bd267978718886a52f394fb76861af84d2e (patch)
tree3123219d8c3a53d8905750a115e2a1b02f071d8a /pkgtools
parent3cee10c1a148dc0fa47ce4f062c9701cb06f9744 (diff)
downloadpkgsrc-10d31bd267978718886a52f394fb76861af84d2e.tar.gz
Recognize "pre" as pre-release version. Bump version to 20041110.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkg_install/files/lib/str.c5
-rw-r--r--pkgtools/pkg_install/files/lib/version.h4
2 files changed, 5 insertions, 4 deletions
diff --git a/pkgtools/pkg_install/files/lib/str.c b/pkgtools/pkg_install/files/lib/str.c
index d12a36e905f..cb3c06c9d9b 100644
--- a/pkgtools/pkg_install/files/lib/str.c
+++ b/pkgtools/pkg_install/files/lib/str.c
@@ -1,4 +1,4 @@
-/* $NetBSD: str.c,v 1.8 2004/11/02 00:44:00 erh Exp $ */
+/* $NetBSD: str.c,v 1.9 2004/11/10 16:50:39 wiz Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -11,7 +11,7 @@
#if 0
static const char *rcsid = "Id: str.c,v 1.5 1997/10/08 07:48:21 charnier Exp";
#else
-__RCSID("$NetBSD: str.c,v 1.8 2004/11/02 00:44:00 erh Exp $");
+__RCSID("$NetBSD: str.c,v 1.9 2004/11/10 16:50:39 wiz Exp $");
#endif
#endif
@@ -163,6 +163,7 @@ static const test_t tests[] = {
static const test_t modifiers[] = {
{ "alpha", 5, Alpha },
{ "beta", 4, Beta },
+ { "pre", 3, RC },
{ "rc", 2, RC },
{ "pl", 2, Dot },
{ "_", 1, Dot },
diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h
index 0f47404ea1a..793044aad37 100644
--- a/pkgtools/pkg_install/files/lib/version.h
+++ b/pkgtools/pkg_install/files/lib/version.h
@@ -1,4 +1,4 @@
-/* $NetBSD: version.h,v 1.35 2004/11/02 00:10:15 erh Exp $ */
+/* $NetBSD: version.h,v 1.36 2004/11/10 16:50:39 wiz Exp $ */
/*
* Copyright (c) 2001 Thomas Klausner. All rights reserved.
@@ -33,6 +33,6 @@
#ifndef _INST_LIB_VERSION_H_
#define _INST_LIB_VERSION_H_
-#define PKGTOOLS_VERSION "20041101"
+#define PKGTOOLS_VERSION "20041110"
#endif /* _INST_LIB_VERSION_H_ */