Lars Eggert wrote:
> Hi,
>
> I just found that freevo depends on pkill and aumix. At least on
> FreeBSD, these don't come with the base system. Could/should they be
> added to the EXTERNAL_PROGRAMS likst in setup_freevo.py, and thus tested
> for?
I just checked the current cvs: pgrep is not used a
couldn't we make a pgrep shell version for other systems?
pgrep basically does:
ps aux | grep $1 | awk '{ print $1 }'
so we could just make a shell script to do that. Python also has it's
own process control stuff in the os module, though I haven't looked
too closely.
Aubin
On Sun, Aug 24,
Lars Eggert wrote:
> I just found that freevo depends on pkill and aumix. At least on
> FreeBSD, these don't come with the base system. Could/should they be
> added to the EXTERNAL_PROGRAMS likst in setup_freevo.py, and thus tested
> for?
I just saw we use aumix for the mixer. It's very old stuff.