Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/elfix:master commit in: /
Date: Sun, 28 Feb 2016 16:28:34
Message-Id: 1456677489.d2950b10b400faf73b3a865316dabc4577799fa5.blueness@gentoo
1 commit: d2950b10b400faf73b3a865316dabc4577799fa5
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 16:38:09 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 16:38:09 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/elfix.git/commit/?id=d2950b10
7
8 configure.ac: use autoconf 2.65 and convert travis.yml script to a list
9
10 .travis.yml | 13 ++++++++++---
11 configure.ac | 5 ++---
12 2 files changed, 12 insertions(+), 6 deletions(-)
13
14 diff --git a/.travis.yml b/.travis.yml
15 index db93fa1..9fb81f5 100644
16 --- a/.travis.yml
17 +++ b/.travis.yml
18 @@ -5,9 +5,16 @@ compiler:
19 before_install:
20 - sudo apt-get update -qq
21 - sudo apt-get install autotools-dev automake autoconf libtool
22 -script: ./autogen.sh && ./configure && make V=1 distcheck && \
23 - cd misc/fix-gnustack && ./autogen.sh && ./configure && make V=1 distcheck && \
24 - cd ../install-xattr && make V=1
25 +script:
26 + - ./autogen.sh
27 + - ./configure
28 + - make V=1 distcheck
29 + - cd misc/fix-gnustack
30 + - ./autogen.sh
31 + - ./configure
32 + - make V=1 distcheck
33 + - cd ../install-xattr
34 + - make V=1
35 notifications:
36 irc:
37 channels:
38
39 diff --git a/configure.ac b/configure.ac
40 index 777c226..245d2db 100644
41 --- a/configure.ac
42 +++ b/configure.ac
43 @@ -16,16 +16,15 @@
44 # along with this program. If not, see <http://www.gnu.org/licenses/>.
45 #
46
47 -AC_PREREQ([2.69])
48 +AC_PREREQ([2.65])
49 AC_INIT([elfix], [0.9], [http://bugs.gentoo.org/])
50 AC_CONFIG_SRCDIR([src/paxctl-ng.c])
51 AC_CONFIG_HEADERS([config.h])
52 -AM_INIT_AUTOMAKE([1.12 foreign])
53 +AM_INIT_AUTOMAKE([1.11 foreign])
54 AM_SILENT_RULES([no])
55
56 LT_PREREQ([2.4])
57 LT_INIT([dlopen])
58 -AC_CONFIG_MACRO_DIR([m4])
59
60 # Checks for programs.
61 AC_PROG_AWK