lmi
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [lmi] wx xrcdemo and --disable-gif


From: Greg Chicares
Subject: Re: [lmi] wx xrcdemo and --disable-gif
Date: Sun, 13 Aug 2017 16:54:56 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

On 2017-08-12 15:47, Greg Chicares wrote:
> It's been a long time since I built the wx samples, but I tried it today
> and it failed as shown below. Could it be that samples/xrc doesn't
> respect the '--disable-gif' configure option that I've specified?

BTW, the samples seem to build one at a time even with parallel 'make',
which is a significant pessimization these days. 'Makefile' contains:

samples:
        (cd samples && $(MAKE) all)

so it just defers to 'samples/Makefile', which contains:

SAMPLES_SUBDIRS=access animate artprov calendar [...]
all:
        @for d in $(SAMPLES_SUBDIRS); do (cd $$d && $(MAKE)); done

Presumably that shell loop is generated from some 'xyzzy.in', but
I can't find any plausible candidate, or I'd propose a patch for it.
But as for the presumably-generated 'samples/Makefile', wouldn't
the following change (just changing ';' to '&') work?

 all:
-       @for d in $(SAMPLES_SUBDIRS); do (cd $$d && $(MAKE)); done
+       @for d in $(SAMPLES_SUBDIRS); do (cd $$d && $(MAKE))& done



reply via email to

[Prev in Thread] Current Thread [Next in Thread]