Re: cups (gtk+, udev, ...)

2010-03-09 Thread Mike McCarty
Ken Moffat wrote: > On 9 March 2010 16:29, Andrew Benton wrote: > >> That's good that we're making progress. If no /etc/cups/client.conf exists >> the default is >> ServerName localhost, which backs up what Bruce said, that it looks like a >> network name >> resolution problem. > > In case I

Re: question about case command in lfs6.6 chap5.4

2010-03-09 Thread Chris Staub
On 03/09/2010 07:08 AM, stosss wrote: > Linux From Scratch - Version 6.6 > Chapter 5. Constructing a Temporary System > > 5.4. Binutils-2.20 - Pass 1 > > 5.4.1. Installation of Cross Binutils > > case $(uname -m) in >x86_64) mkdir -v /tools/lib&& ln -sv lib /tools/lib64 ;; > esac > > Is the co

Re: cups (gtk+, udev, ...)

2010-03-09 Thread Andrew Benton
On 09/03/10 14:50, Ken Moffat wrote: > On 9 March 2010 14:00, Andrew Benton wrote: >> Does it help if you >> echo "ServerName 127.0.0.1"> /etc/cups/client.conf >> >> Andy > > Wow! Yes (to be exact, there is still a delay before the > printer dialog window is rendered, but worst case so far > w

Re: ImportError: No module named _md5

2010-03-09 Thread Ken Moffat
On 9 March 2010 02:21, brown wrap wrote: > > My understanding is md5 is part of the hashlib. I'm not trying to do anything > other than install xulrunner. That error is from attempting to install > xulrunner. > If you aren't trying to build Python on one machine and then run it on another, I

Re: cups (gtk+, udev, ...)

2010-03-09 Thread Andrew Benton
On 09/03/10 02:02, Ken Moffat wrote: > The thing is, that was from waiting for the printer dialog, > the actual print was ok once the dialog appeared. Google > seems to be just coming up with errors where people had > no printing at all (although, that is what I at first thought > was the problem)

Re: cups (gtk+, udev, ...)

2010-03-09 Thread Andrew Benton
On 09/03/10 02:05, Bruce Dubbs wrote: > Ken, it may be totally wrong in this case, but my experience is that > when things take a very long time and then work, it usually is some kind > of network name resolution problem. > This Red Hat bug https://bugzilla.redhat.com/show_bug.cgi?id=499687 seems

question about case command in lfs6.6 chap5.4

2010-03-09 Thread stosss
Linux From Scratch - Version 6.6 Chapter 5. Constructing a Temporary System 5.4. Binutils-2.20 - Pass 1 5.4.1. Installation of Cross Binutils case $(uname -m) in x86_64) mkdir -v /tools/lib && ln -sv lib /tools/lib64 ;; esac Is the command above correct? There is only one ( but there are two

Re: webkitgtk: Compile Failure (Which I think is releated to ICU)

2010-03-09 Thread William Immendorf
On Mon, Mar 8, 2010 at 8:49 PM, William Immendorf wrote: >  CXX    WebCore/platform/text/libWebCore_la-TextBoundariesICU.lo > WebCore/platform/text/TextBoundariesICU.cpp: In function ‘int > WebCore::findNextWordFromIndex(const UChar*, int, int, bool)’: > WebCore/platform/text/TextBoundariesICU.cpp

Re: question about case command in lfs6.6 chap5.4

2010-03-09 Thread Andrew Benton
On 09/03/10 12:08, stosss wrote: > Linux From Scratch - Version 6.6 > Chapter 5. Constructing a Temporary System > > 5.4. Binutils-2.20 - Pass 1 > > 5.4.1. Installation of Cross Binutils > > case $(uname -m) in >x86_64) mkdir -v /tools/lib&& ln -sv lib /tools/lib64 ;; > esac > > Is the command