diff options
author | Gregory McLean <gregm@src.gnome.org> | 1999-02-28 02:24:54 +0000 |
---|---|---|
committer | Gregory McLean <gregm@src.gnome.org> | 1999-02-28 02:24:54 +0000 |
commit | 42ba478893d356836242ae0139cbe1430cd57add (patch) | |
tree | a473996e70d093d3e8e9e9463770c642d7804384 /control-center.spec.in | |
parent | 13226b06a7ffbdd2c677a228f51b9d291b94f5bc (diff) | |
download | gnome-control-center-42ba478893d356836242ae0139cbe1430cd57add.tar.gz |
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
Diffstat (limited to 'control-center.spec.in')
-rw-r--r-- | control-center.spec.in | 19 |
1 files 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 <gregm@comstar.net> +- 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 <drmike@redhat.com> - 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 |