anaconda and buildinstall

2002-02-26 Thread \"Anth Courtney\"
Hey guys, I'm trying to build a small distribution of RH 7.2 here on a local box without much success. In my directory /inetcd, I have a Redhat/RPMS and Redhat/base directory which contain all my rpms and the hdlist results from running genhdlist respectively. However when I run buildinstall, I

Re: FIND SIZE OF MEMORY ALLOCATE???

2002-02-26 Thread Mikael Aronsson
Hi ! I think he wanted to know how much memory was allocated in the malloc request, like the _msize( ptr) function on Visual Studio, as far as I know there is no way to do that with gcc. Mikael - Original Message - From: "Ivan Jager" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tue

Re: rawhide dependencies again

2002-02-26 Thread John Summerfield
> hi, > it seems almost impossible to catch a snap of rawhide when it is consistent. > a very stupid but useful check would be useful for those who put these files > to the mirror site, just run the following two lines on stock rh 7.2 (this > means all rpm instqalled from rh 7.2 except those whic

Re: rawhide dependencies again

2002-02-26 Thread Levente Farkas
Bernhard Rosenkraenzer wrote: > > On Tue, 26 Feb 2002, Levente Farkas wrote: > > > rpm -Fvh kernel-2*.i686.rpm glibc-2*.i686.rpm \ > > `ls kernel-*.rpm glibc-*.rpm|egrep -v "kernel-2|glibc-2"` > > rpm -Fvh *.rpm > > > > since it at least in the last few weeks, there is not any snapshot where > >

Re: rawhide dependencies again

2002-02-26 Thread Bernhard Rosenkraenzer
On Tue, 26 Feb 2002, Levente Farkas wrote: > rpm -Fvh kernel-2*.i686.rpm glibc-2*.i686.rpm \ > `ls kernel-*.rpm glibc-*.rpm|egrep -v "kernel-2|glibc-2"` > rpm -Fvh *.rpm > > since it at least in the last few weeks, there is not any snapshot where > this script run because of some dependenies. T

rawhide dependencies again

2002-02-26 Thread Levente Farkas
hi, it seems almost impossible to catch a snap of rawhide when it is consistent. a very stupid but useful check would be useful for those who put these files to the mirror site, just run the following two lines on stock rh 7.2 (this means all rpm instqalled from rh 7.2 except those which are excl

Re: FIND SIZE OF MEMORY ALLOCATE???

2002-02-26 Thread Mikael Aronsson
Hi ! I think he wanted to know how much memory was allocated in the malloc request, like the _msize( ptr) function on Visual Studio, as far as I know there is no way to do that with gcc. Mikael - Original Message - From: "Ivan Jager" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tue

Re: FIND SIZE OF MEMORY ALLOCATE???

2002-02-26 Thread Ivan Jager
Vimol wrote: > > How to find out the size of memory allocated to a pointer??? > > Example: > > int > MyFunc(char *str) > { > int sizemem; > > // Here how to find out the size of str memory ?? > > sizemem = _/// One function to find out the size of str memory .