Displaying 20 results from an estimated 59721 matches for "dependencies".
2012 Apr 25
4
latest 4.1.2 RPMs for RHEL 5.8?
Hey folks,
With all the troubles I''ve been having with the version of xen that comes
with RHEL 5.8 I was wondering whether there is somewhere out there where I
can grab more recent versions in RPM format.
I pulled down the sources from xen.org but would prefer to avoid having to
build it myself if possible. RPMs are much cleaner.
Is there some place out there to get something newer
2009 May 02
7
yum installation problem
...################################################## 4047/4047
primary.xml.gz 100% |=========================| 137 kB 00:01
sqlite cache needs updating, reading in metadata
update : ################################################## 451/451
Parsing package install arguments
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Package wine.i386 0:1.0.1-1.el5 set to be updated
--> Running transaction check
--> Processing Dependency: wine-jack = 1.0.1-1.el5 for package: wine
--> Processing Dependency: wine-esd = 1.0.1-1.el5 for package:...
2018 Apr 09
2
[PATCH] Fix out-of-tree builds of OCaml components
...r_repository_SOURCES = $(REPOSITORY_SOURCES_C)
virt_builder_repository_CPPFLAGS = \
- -I. \
+ -I$(builddir) -I$(srcdir) \
-I$(top_builddir) \
-I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib \
-I$(shell $(OCAMLC) -where) \
@@ -446,7 +447,7 @@ CLEANFILES += \
console-*.out
# OCaml dependencies.
-.depend: *.mli *.ml osinfo_config.mli osinfo_config.ml
+.depend: $(srcdir)/*.mli $(srcdir)/*.ml osinfo_config.mli osinfo_config.ml
$(top_builddir)/ocaml-dep.sh $^
-include .depend
diff --git a/common/mlgettext/Makefile.am b/common/mlgettext/Makefile.am
index 4cca6b4db0..cdcea33ec5 100644
---...
2011 Jan 14
4
Yum packages error.
Dear group,
Last night I was playing around with my home desktop trying to get the sound to work and somehow I broke some dependencies, now yum update would not run. Can someone help me troubleshoot this. This is the output I am getting from yum update. Thank you in advance.
[root at venus ~]# yum update
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: mirror.rackspace.com
* base: mirror.troubl...
2012 Sep 06
1
Asterisk Test Suite error
Hi,
i am trying to install the Asterisk test suite on my ubuntu system , i have
followed all the installlation steps as mentioned in the link (
http://blogs.asterisk.org/2010/04/29/installing-the-asterisk-test-suite/) ,
but when i am trying to run the script some of the test cases are PASSED
and most of them are FAILED and SKIPPPED. So please help me out to do the
testing correctly.
The
2017 Sep 18
4
Update from 7.3 to 7.4 failing because of architecture change from PPC64 to PPC
...ating from 7.3 to 7.4 on my ppc64 (IBM Power7
p770) installation.
yum update stops with
Error: Multilib version problems found.
[..]
Protected multilib versions: systemd-libs-219-42.el7.ppc !=
systemd-libs-219-42.el7_4.1.ppc64
When I scroll back through the transaction check I see various package
dependencies for *.ppc instead of *.ppc64.
First appearance in the check is glibc.ppc and then everything goes nuts:
[..]
--> Running transaction check
---> Package boost-date-time.ppc64 0:1.53.0-27.el7 will be installed
---> Package elfutils-default-yama-scope.noarch 0:0.168-8.el7 will be installed
--...
2012 Jun 20
3
[LLVMdev] Is Loop Dependence Analysis Printing Correct Stats?
Hi;
I was playing with the -lda pass of LLVM on the following program-
#include <stdio.h>
void main()
{
int a[10];
int i;
for(i = 0; i < 4; i ++)
{
a[i] = a[i-1]+1;
}
}
I run the following commands -
clang a.c -emit-llvm -S
opt -analyze -stats -lda a.s
The output is -
Printing analysis 'Loop Dependence Analysis':
Loop at depth 1, header block: %for.cond
Load/store
2007 Feb 06
3
CentOS samba upgrade
...ting up Install Process
Setting up repositories
Reading repository metadata in from local files
Parsing package install arguments
Examining samba-common-3.0.24-1.i386.rpm: samba-common - 3.0.24-1.i386
Marking samba-common-3.0.24-1.i386.rpm as an update to samba-common -
3.0.10-1.4E.9.i386
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Package samba-common.i386 0:3.0.24-1 set to be updated
--> Running transaction check
--> Processing Dependency: libc.so.6(GLIBC_2.4) for package: samba-common
--> Processing Dependency: libkrb5.so.3(krb5_3_MIT)...
2020 Apr 26
6
[PATCH] Use POSIX standardized options for head(1) and tail(1)
---
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.in b/Makefile.in
index 304d96cd..47e04c02 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -353,7 +353,7 @@ depend-rebuild:
rm -f config.h
touch config.h
makedepend -w1000 -Y. -f .depend *.c 2>/dev/null
- (head -2 .depend; tail +3 .depend | sort) >.depend.tmp
+ (head -n 2 .depend; tail -n +3
2018 Apr 11
1
[PATCH] Fix out-of-tree builds of OCaml components
...r_repository_SOURCES = $(REPOSITORY_SOURCES_C)
virt_builder_repository_CPPFLAGS = \
- -I. \
+ -I$(builddir) -I$(srcdir) \
-I$(top_builddir) \
-I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib \
-I$(shell $(OCAMLC) -where) \
@@ -446,7 +447,7 @@ CLEANFILES += \
console-*.out
# OCaml dependencies.
-.depend: *.mli *.ml osinfo_config.mli osinfo_config.ml
+.depend: $(srcdir)/*.mli $(srcdir)/*.ml osinfo_config.mli osinfo_config.ml
$(top_builddir)/ocaml-dep.sh $^
-include .depend
diff --git a/common/mlgettext/Makefile.am b/common/mlgettext/Makefile.am
index 4cca6b4db..cdcea33ec 100644
--- a...
2013 Mar 15
1
issue while installing puppet
...ppetlabs.com/pe/latest/install_system_requirements.html and
http://docs.puppetlabs.com/guides/installation.html
Also went through Puppet community and could not find the solution for the
issue we are facing.
*Below is the detail summary of issue we are facing*
we have already enabled dependencies repo from puppetlabs by running
following command but still facing issues
rpm -ivh
http://yum.puppetlabs.com/el/6/products/x86_64/puppetlabs-release-6-6.noarch.rpm
*Below is the repo list*
*
*
*
*
* *
[root@xxxxxxxx xxxxxxxx]# yum install -y puppet puppet-server
Loaded plugins:...
2017 Sep 18
2
Update from 7.3 to 7.4 failing because of architecture change from PPC64 to PPC
...gt; yum update stops with
>> Error: Multilib version problems found.
>> [..]
>> Protected multilib versions: systemd-libs-219-42.el7.ppc !=
>> systemd-libs-219-42.el7_4.1.ppc64
>>
>> When I scroll back through the transaction check I see various package
>> dependencies for *.ppc instead of *.ppc64.
>> First appearance in the check is glibc.ppc and then everything goes nuts:
>> [..]
>> --> Running transaction check
>> ---> Package boost-date-time.ppc64 0:1.53.0-27.el7 will be installed
>> ---> Package elfutils-default-yama-sc...
2010 Oct 17
1
yum install - not working for installing R on Linux
...| 23 MB 00:54
Examining /var/tmp/yum-root-3gwXzS/R-core-2.10.0-2.el4.i386.rpm:
R-core-2.10.0-2.el4.i386
Marking /var/tmp/yum-root-3gwXzS/R-core-2.10.0-2.el4.i386.rpm to be
installed
Resolving Dependencies
--> Running transaction check
---> Package R-core.i386 0:2.10.0-2.el4 set to be updated
--> Processing Dependency: firefox for package: R-core-2.10.0-2.el4.i386
--> Processing Dependency: ggv for package: R-core-2.10.0-2.el4.i386
--> Processing Dependency: libg2c.so.0 for package: R-...
2004 Jul 21
0
[LLVMdev] GC questions.
On Wed, 21 Jul 2004, Chris Lattner wrote:
>
> Yes, this makes a tremendous amount of sense. Do you think you could
> prepare some patches to make this happen? If you have any questions, feel
> free to ask :)
Ok, a patch[1] is attached. I didn't care to coerce the offset, since I
assume that it is an uint, but maybe I should? Hopefully I've understood
the llvm source
2013 May 15
1
Missing Dependency: tex(latex) is needed by package R-devel - Help Required
...while install R i am getting the dependency errors ..
can you please help on this .
[root at Rgraph ~]# yum install R
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
Parsing package install arguments
Resolving Dependencies
--> Running transaction check
---> Package R.x86_64 0:2.15.2-1.el5 set to be updated
--> Processing Dependency: libRmath-devel = 2.15.2-1.el5 for package: R
--> Processing Dependency: R-devel = 2.15.2-1.el5 for package: R
--> Running transaction check
---> Package libRmath-devel.x...
2006 Mar 31
5
installing MySQL on 4.3 OR ''am I braindead or what?''
...| 1.1 kB 00:00
addons 100% |=========================| 951 B 00:00
Setting up repositories
Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Passing package list to Install Process
Parsing package install arguments
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Package libdbi-dbd-mysql.i386 0:0.6.5-10.RHEL4.1 set to be updated
---> Package MyODBC.i386 0:2.50.39-21.RHEL4.1 set to be updated
---> Package rsync.i386 0:2.6.7-2.el4.rf set to be updated
---> Package MySQL-py...
2006 Jan 22
0
Latest kde/tetex updates fail on my attempts. Is it me or ...?
...needed by package kdelibs
Error: Missing Dependency: perl(Exporter) is needed by package perl-
Devel-Carp
Error: Missing Dependency: qt-devel >= 1:3.3.3 is needed by package
kdelibs-devel
Setting up Update Process
Setting up repositories
Reading repository metadata in from local files
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Package kdelibs.i386 6:3.3.1-3.14 set to be updated
--> Running transaction check
--> Processing Dependency: perl(File::Basename) for package: kdelibs
--> Processing Dependency: perl >= 0:5.000 for package: k...
2004 Jul 21
2
[LLVMdev] GC questions.
On Wed, 21 Jul 2004, Tobias Nurmiranta wrote:
>
> Hi, I'm thinking out loud, please give me some feedback.
>
> Regarding llvm.gcread and llvm.gcwrite, wouldn't it be nicer if they are
> implemented as:
>
> llvm.gcread(sbyte** object, uint offset)
> llvm.gcwrite(sbyte* data, sbyte** object, uint offset)
>
> Where you also have the offset into the object. In
1998 Nov 16
5
Solaris make for 0.63 failing
I shouldn't try to do this on Monday morning. Can anyone suggest why the make
for R 0.63 is failing for me under Solaris (SunOS 5.6).
Paul Gilbert
...
creating src/scripts/html2dos
creating tests/Makefile
creating tests/Examples/Makefile
creating src/include/Platform.h
R is now configured for sparc-sun-solaris2.6
Source directory: .
Installation directory: /usr/local
C
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a
/lot/ of errors like this (strangely I hit none of these in check-llvm,
only in check-clang):
Any ideas?
==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes
at address 0x631000014800
==10525==AddressSanitizer CHECK failed: