Skip to Content.
Sympa Menu

baslinux - Re: [BL] Re: Using libc5 programs in BL2 (netpbm)

baslinux AT lists.ibiblio.org

Subject: Baslinux mailing list

List archive

Chronological Thread  
  • From: sindi keesan <keesan AT sdf.lonestar.org>
  • To: baslinux AT lists.ibiblio.org
  • Subject: Re: [BL] Re: Using libc5 programs in BL2 (netpbm)
  • Date: Tue, 26 Apr 2005 19:19:28 +0000 (UTC)

I have just uploaded my netpbm package for BL2 and BL3. See http://keesan.freeshell.org/bl/blfiles.htm for a list of everything, or /bl/netpbm.readme for installation instructions and suggested use. The scripts are not yet fully tested.



On Tue, 26 Apr 2005, David Moberg wrote:

----- Original Message -----
From: "sindi keesan" <keesan AT sdf.lonestar.org>

I got it working with $1 $2

#!/bin/sh
LD_LIBRARY_PATH="/usr/libc5" $1 $2


named script libc5

libc5 pngtopnm file.png > file.ppm

This worked perfectly.
How to do it in batch mode?

for i in *.png; do libc5 pngtopnm *.png > ????

for i in *.png; do libc5 pngtopnm $i > $i.pnm

(*.png > *.png.pnm)
(remove the redirection > to have all the pnms
concatenated to stdout)

I don't understand this. Are you suggesting a way to display the output on screen directly?

I notice that your complete compilation does not include the svgalib viewer, or did I miss it somehow? Would it have required more libraries?


With $0 $1 I got:

/..../libc5: fork: Resource temporarily unavailable

$0 $1 would create an infinite loop, which is the symptom
seen here. Looks like you ran out of resources, so the
loop died?


I thought Steven was saying it should be $0 $1 not $1 $2

after about 10 sec wait.

--
_______________________________________________
NEW! Lycos Dating Search. The only place to search multiple dating sites at
once.
http://datingsearch.lycos.com

_______________________________________________
BasLinux mailing list
BasLinux AT lists.ibiblio.org
http://lists.ibiblio.org/mailman/listinfo/baslinux



keesan AT sdf.lonestar.org
SDF Public Access UNIX System - http://sdf.lonestar.org




Archive powered by MHonArc 2.6.24.

Top of Page