Hello community, here is the log from the commit of package lhasa for openSUSE:Factory checked in at 2013-03-15 10:39:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lhasa (Old) and /work/SRC/openSUSE:Factory/.lhasa.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lhasa", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/lhasa/lhasa.changes 2013-03-08 09:14:07.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.lhasa.new/lhasa.changes 2013-03-15 10:39:30.000000000 +0100 @@ -1,0 +2,5 @@ +Thu Mar 7 13:13:00 UTC 2013 - [email protected] + +- Add 0001-build-support-for-automake-1.13.patch + +------------------------------------------------------------------- New: ---- 0001-build-support-for-automake-1.13.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lhasa.spec ++++++ --- /var/tmp/diff_new_pack.Fa5HI4/_old 2013-03-15 10:39:31.000000000 +0100 +++ /var/tmp/diff_new_pack.Fa5HI4/_new 2013-03-15 10:39:31.000000000 +0100 @@ -24,12 +24,16 @@ License: ISC Group: Productivity/Archiving/Compression Url: http://fragglet.github.com/lhasa/ -#Freecode-URL: http://freecode.com/projects/lhasa +#Freecode-URL: http://freecode.com/projects/lhasa #Git-Clone: git://github.com/fragglet/lhasa #DL-URL: https://github.com/downloads/fragglet/lhasa/lhasa-0.0.7.tar.gz Source: %name-%version.tar.xz +Patch1: 0001-build-support-for-automake-1.13.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool BuildRequires: pkgconfig BuildRequires: xz @@ -59,8 +63,10 @@ %prep %setup -q +%patch -P 1 -p1 %build +autoreconf -fi %configure --disable-static make %{?_smp_mflags}; ++++++ 0001-build-support-for-automake-1.13.patch ++++++ >From b639f8e30ff6d7190766c66129559fe3348ac58c Mon Sep 17 00:00:00 2001 From: Jan Engelhardt <[email protected]> Date: Fri, 1 Mar 2013 00:05:37 +0100 Subject: [PATCH] build: support for automake-1.13 AM_CONFIG_HEADER is long obsolete; replace by the more timely AC_CONFIG_HEADERS. Also nuke that ancient AM_INIT_AUTOMAKE syntax. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 30ae86b..eaf920e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_INIT(Lhasa, 0.0.7, [email protected], lhasa) AC_CONFIG_AUX_DIR(autotools) -AM_INIT_AUTOMAKE($PACKAGE_TARNAME, $PACKAGE_VERSION, no-define) +AM_INIT_AUTOMAKE([no-define]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_PROG_CC_C_O @@ -71,7 +71,7 @@ AC_SUBST(MAIN_CFLAGS) AC_SUBST(TEST_CFLAGS) AC_SUBST(ac_aux_dir) -AM_CONFIG_HEADER(config.h:config.hin) +AC_CONFIG_HEADERS([config.h:config.hin]) AC_OUTPUT([ liblhasa.pc -- 1.7.10.4 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
