Why does some items disapper from the configinfo file sometimes? In the list http://pike.ida.liu.se/generated/pikefarm/7.4/63_71/configinfo.txt the GTK-items are missing.
The technique to collect them is,
[configure.in] | ls -1 pike_*.feature 2>/dev/null | xargs cat | sort >>config.info | ls -1 post_modules/*/pike_*.feature modules/*/pike_*.feature 2>/dev/null | xargs cat | sort >>config.info
Did the post_modules configure all right?
/ Mirar
Previous text:
2003-01-08 01:47: Subject: GL(UT)
Why does some items disapper from the configinfo file sometimes? In the list http://pike.ida.liu.se/generated/pikefarm/7.4/63_71/configinfo.txt the GTK-items are missing.
/ Martin Nilsson (bygger parser
Ah. It was configured with --without-GTK. It would still be nice to have all the features listed, even when explicitly turned off.
/ Martin Nilsson (bygger parser
Previous text:
2003-01-08 08:20: Subject: GL(UT)
The technique to collect them is,
[configure.in] | ls -1 pike_*.feature 2>/dev/null | xargs cat | sort >>config.info | ls -1 post_modules/*/pike_*.feature modules/*/pike_*.feature 2>/dev/null | xargs cat | sort >>config.info
Did the post_modules configure all right?
/ Mirar
Yes. I suppose that whatever turns it off (configure in post_modules?) should do the appropriate PIKE_FEATURE calls. They are defined in aclocal.m4...
PIKE_FEATURE_CLEAR(GTK) ... if (without) ... PIKE_FEATURE_WITHOUT(GTK)
would probably wield a correct result.
/ Mirar
Previous text:
2003-01-08 14:33: Subject: GL(UT)
Ah. It was configured with --without-GTK. It would still be nice to have all the features listed, even when explicitly turned off.
/ Martin Nilsson (bygger parser
pike-devel@lists.lysator.liu.se