summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-09-08 09:11:43 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-09-08 09:11:43 +0200
commit469594cd898d0386f226f6703ae34d0332a2cfe6 (patch)
tree754dc998347305baba51cc505dbd96010157dc7a
parentb38f6240891f78af59e2c5d25361ab67a73e000f (diff)
bump version to 1.0.0
prepare for stable release.
-rw-r--r--Rules.mak6
-rw-r--r--test/nptl/tst-unload.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/Rules.mak b/Rules.mak
index cb657008c..71eaae185 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -127,9 +127,9 @@ export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR
# Now config hard core
-MAJOR_VERSION := 0
-MINOR_VERSION := 9
-SUBLEVEL := 34
+MAJOR_VERSION := 1
+MINOR_VERSION := 0
+SUBLEVEL := 0
EXTRAVERSION :=-git
VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
ABI_VERSION := $(MAJOR_VERSION)
diff --git a/test/nptl/tst-unload.c b/test/nptl/tst-unload.c
index c7de2cb91..74a714ecb 100644
--- a/test/nptl/tst-unload.c
+++ b/test/nptl/tst-unload.c
@@ -23,17 +23,17 @@
static int
do_test (void)
{
- void *p = dlopen ("libpthread.so.0", RTLD_LAZY);
+ void *p = dlopen ("libpthread.so.1", RTLD_LAZY);
if (p == NULL)
{
- puts ("failed to load libpthread.so.0");
+ puts ("failed to load libpthread.so.1");
return 1;
}
if (dlclose (p) != 0)
{
- puts ("dlclose (libpthread.so.0) failed");
+ puts ("dlclose (libpthread.so.1) failed");
return 1;
}