Fix use of AC_INIT

This commit is contained in:
Ulrich Drepper 2011-09-11 12:14:48 -04:00
parent 32b4c8393f
commit f318beb800
4 changed files with 206 additions and 172 deletions

View File

@ -1,5 +1,8 @@
2011-09-11 Ulrich Drepper <drepper@gmail.com>
[BZ #13090]
* configure.in: Fix use of AC_INIT.
* elf/dl-support.c (_dl_pagesize): Initialize to EXEC_PAGESIZE.
2011-09-10 Ulrich Drepper <drepper@gmail.com>

6
NEWS
View File

@ -1,4 +1,4 @@
GNU C Library NEWS -- history of user-visible changes. 2011-9-8
GNU C Library NEWS -- history of user-visible changes. 2011-9-11
Copyright (C) 1992-2009, 2010, 2011 Free Software Foundation, Inc.
See the end for copying conditions.
@ -10,8 +10,8 @@ Version 2.15
* The following bugs are resolved with this release:
9696, 11589, 12403, 12847, 12868, 12852, 12874, 12885, 12907, 12922,
12935, 13007, 13021, 13068, 13092, 13114, 13118, 13123, 13134, 13138,
13150
12935, 13007, 13021, 13068, 13090, 13092, 13114, 13118, 13123, 13134,
13138, 13150
* New program pldd to list loaded object of a process
Implemented by Ulrich Drepper.

367
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_REVISION([$CVSid$])
AC_PREREQ(2.53)dnl dnl Minimum Autoconf version required.
AC_INIT([GNU C Library], [(see version.h)], [glibc])
AC_INIT([GNU C Library], [(see version.h)], [http://sourceware.org/bugzilla/], [glibc])
AC_CONFIG_SRCDIR([include/features.h])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([scripts])