From 42ba478893d356836242ae0139cbe1430cd57add Mon Sep 17 00:00:00 2001 From: Gregory McLean Date: Sun, 28 Feb 1999 02:24:54 +0000 Subject: [PATCH] libtool on the alpha gets confused by all the diffrent types (10 at last count). But in this case an Alpha is an Alpha :) Educate the spec file about this. Also update the requirements to match the latest released, stable versions of what it requires. This will make bug hunting much easier. -- Greg --- control-center.spec.in | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/control-center.spec.in b/control-center.spec.in index 363ddc783..c4f4ac6c1 100644 --- a/control-center.spec.in +++ b/control-center.spec.in @@ -18,9 +18,9 @@ URL: http://www.gnome.org Docdir: %{prefix}/doc -Requires: xscreensaver >= 2.34 -Requires: gnome-libs >= 0.99.8 -Requires: ORBit >= 0.3.97 +Requires: xscreensaver >= 3.00 +Requires: gnome-libs >= 1.0.0 +Requires: ORBit >= 0.4.0 %description Control-center is a configuration tool for easily @@ -46,6 +46,10 @@ Control-center-devel helps you create the 'capplets' which are used in the control center. %changelog +* Sat Feb 27 1999 Gregory McLean +- version 1.0.0 +- updated the requirements to match the current released versions of packages. +- Added an alpha specfic rule as libtool don't understand _all_ alpha models. * Mon Feb 15 1999 Michael Fulbright - version 0.99.8.1 @@ -82,8 +86,13 @@ which are used in the control center. %setup %build - -CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix +# libtool can't deal with all the alpha variations but and alpha is an alpha +# in this context. +%ifarch alpha + CFLAGS="$RPM_OPT_FLAGS" ./configure --host=alpha-redhat-linux --prefix=%prefix +%else + CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix +%endif make %install