Re: Gnome-themes releases and HighContrast-SVG
Rodney Dawes <[email protected]>
| Newsgroups | gmane.comp.gnome.themes |
|---|---|
| Message-ID | <[email protected]> |
It's quite simple to do. The version check has to be done in configure. Just add a bit of code to compare the minor version (split the version out into four variables, MAJOR, MINOR, MICRO, and FULL). Then compare the MINOR version number to see if it is odd or even. Do something like AM_CONDITIONAL(ENABLE_PLACEHOLDERS, test "x$enable_placeholders" == "xtrue") And then in the Makefile.am: placeholder_FILES = blah blah blah if ENABLE_PLACEHOLDERS files_DATA += $(placeholder_FILES) endif EXTRA_DIST = $(placeholder_FILES) -- dobey On Thu, 2006-10-05 at 09:09 +0200, Luca Ferretti wrote: > Il giorno mer, 04/10/2006 alle 14.20 +0100, Calum Benson ha scritto: > > On 3 Oct 2006, at 15:42, Luca Ferretti wrote: > > > So placeholder should be installed only if the packace is unstable > > > version (x.17.x x.19.x ...). Can we do something like this in > > > Makefile.am? > > > > Sounds plausible, but I'm no build guru so somebody else will have to > > comment on the suitability of that solution... > > Meanwhile I'll search on autotools documentations and Makefile.am files > from other projects. > > Cheers, Luca.