~ubuntu-branches/ubuntu/maverick/apt/maverick-security

« back to all changes in this revision

Viewing changes to buildlib/tools.m4

  • Committer: Bazaar Package Importer
  • Author(s): Matt Zimmerman
  • Date: 2005-03-07 20:08:33 UTC
  • Revision ID: james.westby@ubuntu.com-20050307200833-0lxdgg2cb4oculdv
Tags: 0.6.35
* Merge apt--mvo--0 (incorporates 0.6.34ubuntu1):
  - Implement MaxSize and MaxAge in apt.cron.daily, to prevent the cache
    from growing too large (Ubuntu #6761)
  - some comments about the pkgAcqMetaSig::Custom600Headers() added
  - use gpg --with-colons
  - commented the ftp no_proxy unseting in methods/ftp.cc
  - added support for "Acquire::gpgv::options" in methods/gpgv.cc
* Merge bubulle@debian.org--2005/apt--main--0
  - Make capitalization more consistent
  - Un-fuzzy translations resulting from capitalization changes
  - Italian translation update

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 
92
92
AC_DEFUN(rc_GLIBC_VER,
93
93
        [AC_MSG_CHECKING([glibc version])
 
94
        AC_CACHE_VAL(ac_cv_glibc_ver,
94
95
        dummy=if$$
95
96
        cat <<_GLIBC_>$dummy.c
96
97
#include <features.h>
102
103
        if test "$?" = 0; then
103
104
                GLIBC_VER=`./$dummy`
104
105
                AC_MSG_RESULT([$GLIBC_VER])
105
 
                GLIBC_VER="-$GLIBC_VER"
 
106
                ac_cv_glibc_ver=$GLIBC_VER
106
107
        else
107
108
                AC_MSG_WARN([cannot determine GNU C library minor version number])
108
109
        fi
109
110
        rm -f $dummy $dummy.c
 
111
        )
 
112
        GLIBC_VER="-$ac_cv_glibc_ver"
110
113
        AC_SUBST(GLIBC_VER)
111
114
])
112
115