From: Ulrich Drepper Date: Thu, 13 Nov 2008 21:41:41 +0000 (+0000) Subject: * include/features.h (__GLIBC_MINOR__): Bump to 9. X-Git-Tag: cvs/fedora-glibc-20081113T2206 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Ftags%2Fcvs%2Ffedora-glibc-20081113T2206;p=platform%2Fupstream%2Fglibc.git * include/features.h (__GLIBC_MINOR__): Bump to 9. --- diff --git a/ChangeLog b/ChangeLog index c029cfb..a336823 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2008-11-13 Ulrich Drepper * version.h: Bump for 2.9 release. + * include/features.h (__GLIBC_MINOR__): Bump to 9. [BZ #7029] * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_ALLOC_SIZE): diff --git a/include/features.h b/include/features.h index 76c2ae3..3a44e38 100644 --- a/include/features.h +++ b/include/features.h @@ -311,7 +311,7 @@ /* Major and minor version number of the GNU C library package. Use these macros to test for features in specific releases. */ #define __GLIBC__ 2 -#define __GLIBC_MINOR__ 8 +#define __GLIBC_MINOR__ 9 #define __GLIBC_PREREQ(maj, min) \ ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))