# HG changeset patch # User J. Ali Harlow # Date 1408557472 -3600 # Node ID fab0b8a61dcb91000a75c5229773388ace3fab25 # Parent b9cc58992572ddf9e82a4f3ee093f8311f2f78b7 Update gnulib diff -r b9cc58992572 -r fab0b8a61dcb autogen.sh --- a/autogen.sh Wed Aug 20 18:56:17 2014 +0100 +++ b/autogen.sh Wed Aug 20 18:57:52 2014 +0100 @@ -20,7 +20,7 @@ DIE=1 } -(grep "^AM_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && { +(grep "^LT_INIT\|^A[MC]_PROG_LIBTOOL" $srcdir/configure.ac >/dev/null) && { (libtool --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have libtool installed." @@ -76,7 +76,7 @@ aclocalinclude="-I gl/m4 $ACLOCAL_FLAGS" - if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then + if grep "^LT_INIT\|^A[MC]_PROG_LIBTOOL" configure.ac >/dev/null; then if test -z "$NO_LIBTOOLIZE" ; then echo "Running libtoolize..." libtoolize --force --copy diff -r b9cc58992572 -r fab0b8a61dcb gl/.gitignore --- a/gl/.gitignore Wed Aug 20 18:56:17 2014 +0100 +++ b/gl/.gitignore Wed Aug 20 18:57:52 2014 +0100 @@ -64,3 +64,13 @@ /sys_time.in.h /tempname.c /tempname.h +/fcntl.in.h +/msvc-inval.c +/msvc-inval.h +/msvc-nothrow.c +/msvc-nothrow.h +/pathmax.h +/secure_getenv.c +/sys_types.in.h +/unistd.c +/wctype-h.c diff -r b9cc58992572 -r fab0b8a61dcb gl/m4/.gitignore --- a/gl/m4/.gitignore Wed Aug 20 18:56:17 2014 +0100 +++ b/gl/m4/.gitignore Wed Aug 20 18:57:52 2014 +0100 @@ -60,3 +60,14 @@ /stat.m4 /sys_time_h.m4 /tempname.m4 +/absolute-header.m4 +/extern-inline.m4 +/fcntl_h.m4 +/msvc-inval.m4 +/msvc-nothrow.m4 +/off_t.m4 +/pathmax.m4 +/secure_getenv.m4 +/ssize_t.m4 +/sys_socket_h.m4 +/sys_types_h.m4 diff -r b9cc58992572 -r fab0b8a61dcb gl/m4/gnulib-cache.m4 --- a/gl/m4/gnulib-cache.m4 Wed Aug 20 18:56:17 2014 +0100 +++ b/gl/m4/gnulib-cache.m4 Wed Aug 20 18:57:52 2014 +0100 @@ -1,9 +1,21 @@ -# Copyright (C) 2002-2011 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # -# This file is free software, distributed under the terms of the GNU -# General Public License. As a special exception to the GNU General -# Public License, this file may be distributed as part of a program -# that contains a configuration script generated by Autoconf, under +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This file is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this file. If not, see . +# +# As a special exception to the GNU General Public License, +# this file may be distributed as part of a program that +# contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. @@ -37,4 +49,4 @@ gl_LIBTOOL gl_MACRO_PREFIX([gl]) gl_PO_DOMAIN([]) -gl_WITNESS_C_DOMAIN([]) +gl_WITNESS_C_MACRO([]) diff -r b9cc58992572 -r fab0b8a61dcb librazor/importer.c --- a/librazor/importer.c Wed Aug 20 18:56:17 2014 +0100 +++ b/librazor/importer.c Wed Aug 20 18:57:52 2014 +0100 @@ -20,6 +20,7 @@ #define _GNU_SOURCE +#include "config.h" #include #include "razor-internal.h" #include "razor.h" diff -r b9cc58992572 -r fab0b8a61dcb librazor/iterator.c --- a/librazor/iterator.c Wed Aug 20 18:56:17 2014 +0100 +++ b/librazor/iterator.c Wed Aug 20 18:57:52 2014 +0100 @@ -20,6 +20,7 @@ #define _GNU_SOURCE +#include "config.h" #include #include #include diff -r b9cc58992572 -r fab0b8a61dcb librazor/merger.c --- a/librazor/merger.c Wed Aug 20 18:56:17 2014 +0100 +++ b/librazor/merger.c Wed Aug 20 18:57:52 2014 +0100 @@ -18,6 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include "config.h" #include #include #include "razor-internal.h" diff -r b9cc58992572 -r fab0b8a61dcb librazor/transaction.c --- a/librazor/transaction.c Wed Aug 20 18:56:17 2014 +0100 +++ b/librazor/transaction.c Wed Aug 20 18:57:52 2014 +0100 @@ -20,6 +20,7 @@ #define _GNU_SOURCE +#include "config.h" #include #include #include diff -r b9cc58992572 -r fab0b8a61dcb src/import-rpmdb.c --- a/src/import-rpmdb.c Wed Aug 20 18:56:17 2014 +0100 +++ b/src/import-rpmdb.c Wed Aug 20 18:57:52 2014 +0100 @@ -18,6 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include "config.h" #include #include #include diff -r b9cc58992572 -r fab0b8a61dcb src/import-yum.c --- a/src/import-yum.c Wed Aug 20 18:56:17 2014 +0100 +++ b/src/import-yum.c Wed Aug 20 18:57:52 2014 +0100 @@ -19,6 +19,7 @@ #define _GNU_SOURCE +#include "config.h" #include #include #include