Revision 25083,
540 bytes
checked in by andersk, 14 years ago
(diff) |
In nss_nonlocal:
* New upstream release.
- Fix errno saving and restoring.
- Document nss-nonlocal-users and nss-local-users groups in README.
- Allow local whitelisting of nonlocal user and group memberships,
using the magic local ‘nss-nonlocal-users’ user and group.
* Create magic ‘nss-nonlocal-users’ user.
* Remove obsolete exclusion of glibc-private dependency.
* Use automake 1.10 and autoconf 2.61.
* Add multiarch support for distros from the future.
* Disable dh_buildinfo, which currently fails at multiarch.
Full history: git://andersk.mit.edu/nss_nonlocal.git debian/2.0-0debathena1
|
Line | |
---|
1 | AC_INIT([nss_nonlocal], [2.0], [andersk@mit.edu]) |
---|
2 | AC_CANONICAL_TARGET |
---|
3 | AM_INIT_AUTOMAKE([-Wall -Werror foreign]) |
---|
4 | m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) |
---|
5 | |
---|
6 | AC_PREFIX_DEFAULT([/]) |
---|
7 | AC_DISABLE_STATIC |
---|
8 | AC_PROG_CC |
---|
9 | AC_PROG_INSTALL |
---|
10 | AC_PROG_LIBTOOL |
---|
11 | |
---|
12 | AC_HEADER_STDBOOL |
---|
13 | |
---|
14 | case "$target_cpu" in |
---|
15 | i386 | i486 | i586 | i686 | i786) |
---|
16 | AC_DEFINE([USE_REGPARMS], [], |
---|
17 | [Define if the regparm attribute shall be used for local functions (gcc on ix86 only).]) |
---|
18 | ;; |
---|
19 | esac |
---|
20 | |
---|
21 | AC_CONFIG_HEADERS([config.h]) |
---|
22 | AC_CONFIG_FILES([Makefile]) |
---|
23 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.