diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-12-08 11:13:11 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-12-08 12:26:06 -0500 |
commit | 78ed756a343c37acb38cc230d03c334845553ab6 (patch) | |
tree | 57a1a5610fb1217e9babf5afc30dc006c5c563ec | |
parent | ad762b61d79e1848ef0751d0b970f4f7660a886e (diff) |
Xft.h.in: remove comments which prevents Xft.h generation #25104
With automake prior to 2.62, commnents placed beside a #undef line
prevent that statement to be substituted by config.status.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com>
Tested-by: Adrian Bunk <bunk@stusta.de>
-rw-r--r-- | include/X11/Xft/Xft.h.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/X11/Xft/Xft.h.in b/include/X11/Xft/Xft.h.in index d66f2ec..490945f 100644 --- a/include/X11/Xft/Xft.h.in +++ b/include/X11/Xft/Xft.h.in @@ -26,10 +26,10 @@ /* * Current Xft version number, set from version in the Xft configure.ac file. */ - -#undef XFT_MAJOR /* Will be substituted by configure */ -#undef XFT_MINOR /* Will be substituted by configure */ -#undef XFT_REVISION /* Will be substituted by configure */ +/* #undef will be substituted by configure */ +#undef XFT_MAJOR +#undef XFT_MINOR +#undef XFT_REVISION #define XFT_VERSION ((XFT_MAJOR * 10000) + (XFT_MINOR * 100) + (XFT_REVISION)) #define XftVersion XFT_VERSION |