Skip to content

Commit a76a579

Browse files
committed
Updated autoconf to work on CentOS5
1 parent c7de1d8 commit a76a579

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

autogen.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
2-
libtoolize -vcf || exit 1
3-
aclocal --verbose || exit 1
4-
autoheader -v || exit 1
5-
automake -acv || exit 1
6-
autoreconf -iv || exit 1
2+
libtoolize -c -f || exit 1
3+
aclocal --force --verbose || exit 1
4+
autoheader -fv || exit 1
5+
automake -acfv || exit 1
6+
autoreconf -ifv || exit 1
77
# ./configure

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ AC_INIT([libzbxpgsql], [0.1.3], [ryan@cavaliercoder.com])
22
AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability foreign])
33
m4_pattern_allow([AM_PROG_AR])
44
AM_PROG_AR
5+
AC_PROG_LIBTOOL # seem to need this on CentOS 5 (libtool v1.5)
56
LT_INIT
67
AC_PROG_CC
78
AC_CONFIG_MACRO_DIR([m4])

0 commit comments

Comments
 (0)