summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2012-01-09 15:59:36 +0100
committerHans de Goede <hdegoede@redhat.com>2012-01-10 13:26:58 +0100
commitde2bf74160782810b06f1ebd643f92638f42215b (patch)
treed88e3f4fa549fca9e63b874d44cbdb71b7bf2264
parenta34ea63067b5d7951f23bb2d29b54e8d179b2abf (diff)
buildsys: Lower autoconf requires
So that autogen.sh can run on RHEL-5 Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac3
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 1102c02..ef5bdb7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -37,8 +37,8 @@ initdir = $(sysconfdir)/rc.d/init.d
init_SCRIPTS = $(top_srcdir)/data/spice-vdagentd
install-data-local:
- $(MKDIR_P) $(DESTDIR)$(localstatedir)/log/spice-vdagentd
- $(MKDIR_P) $(DESTDIR)$(localstatedir)/run/spice-vdagentd
+ $(mkdir_p) $(DESTDIR)$(localstatedir)/log/spice-vdagentd
+ $(mkdir_p) $(DESTDIR)$(localstatedir)/run/spice-vdagentd
tmpfilesdir = $(sysconfdir)/tmpfiles.d
diff --git a/configure.ac b/configure.ac
index 87b3859..b18e38d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_PREREQ(2.63)
+AC_PREREQ(2.59)
AC_INIT([spice-vdagent], [0.8.2])
AC_CONFIG_SRCDIR([configure.ac])
@@ -8,6 +8,7 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip subdir-objects])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
AC_PROG_CC
+AM_PROG_CC_C_O
AC_HEADER_STDC
AC_PROG_INSTALL
AC_PROG_LN_S