* Fri Feb 24 2006 Petr Rockai <prockai@redhat.com> - 4.0.2-12
- detect libutil(s).a even if it is only present in lib64 (#182407)
This commit is contained in:
parent
b8d34eb5f3
commit
3f9e88fb43
13
screen-4.0.2-lib64.patch
Normal file
13
screen-4.0.2-lib64.patch
Normal file
@ -0,0 +1,13 @@
|
||||
--- screen-4.0.2/configure.in.lib64 2006-02-24 10:51:07.000000000 +0100
|
||||
+++ screen-4.0.2/configure.in 2006-02-24 10:51:06.000000000 +0100
|
||||
@@ -871,8 +871,8 @@
|
||||
dnl **** loadav ****
|
||||
dnl
|
||||
AC_CHECKING(for libutil(s))
|
||||
-test -f /usr/lib/libutils.a && LIBS="$LIBS -lutils"
|
||||
-test -f /usr/lib/libutil.a && LIBS="$LIBS -lutil"
|
||||
+test -f /usr/lib/libutils.a && LIBS="$LIBS -lutils" || test -f /usr/lib64/libutil.a && LIBS="$LIBS -lutil"
|
||||
+test -f /usr/lib/libutil.a && LIBS="$LIBS -lutil" || test -f /usr/lib64/libutils.a && LIBS="$LIBS -lutils"
|
||||
|
||||
AC_CHECKING(getloadavg)
|
||||
AC_TRY_LINK(,[getloadavg((double *)0, 0);],
|
||||
@ -1,7 +1,7 @@
|
||||
Summary: A screen manager that supports multiple logins on one terminal.
|
||||
Name: screen
|
||||
Version: 4.0.2
|
||||
Release: 11.2
|
||||
Release: 12
|
||||
License: GPL2
|
||||
Group: Applications/System
|
||||
URL: http://www.gnu.org/software/screen
|
||||
@ -51,6 +51,7 @@ Patch8: screen-4.0.2-logname.patch
|
||||
|
||||
# reassign lockscreen to ^aX so its harder to hit by accident
|
||||
Patch9: screen-4.0.2-lock-shortcut.patch
|
||||
Patch10: screen-4.0.2-lib64.patch
|
||||
|
||||
%description
|
||||
The screen utility allows you to have multiple logins on just one
|
||||
@ -82,6 +83,7 @@ support multiple logins on one terminal.
|
||||
#
|
||||
%patch7 -p0 -b .args
|
||||
%patch9 -p1 -b .lock-shortcut
|
||||
%patch10 -p1 -b .lib64
|
||||
|
||||
|
||||
%build
|
||||
@ -175,6 +177,9 @@ fi
|
||||
%config /etc/pam.d/screen
|
||||
|
||||
%changelog
|
||||
* Fri Feb 24 2006 Petr Rockai <prockai@redhat.com> - 4.0.2-12
|
||||
- detect libutil(s).a even if it is only present in lib64 (#182407)
|
||||
|
||||
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.0.2-11.2
|
||||
- bump again for double-long bug on ppc(64)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user