After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 347076 - GLIBMM_*_VERSION Macros blocks autoreconf from working
GLIBMM_*_VERSION Macros blocks autoreconf from working
Status: RESOLVED FIXED
Product: glibmm
Classification: Bindings
Component: build
2.10.x
Other Linux
: Normal normal
: ---
Assigned To: gtkmm-forge
gtkmm-forge
Depends on:
Blocks: 347074
 
 
Reported: 2006-07-10 04:59 UTC by Kevin McBride
Modified: 2006-07-17 16:24 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix for the GLIBMM_*_VERSION Macros (816 bytes, patch)
2006-07-10 05:00 UTC, Kevin McBride
none Details | Review

Description Kevin McBride 2006-07-10 04:59:52 UTC
When I run autoreconf version 2.59 on glibmm, the three GLIBMM_*_VERSION macros found in configure.in were not definable because they were "underquoted".  My patch will fix this problem so that autoreconf can build the configure script and friends.
Comment 1 Kevin McBride 2006-07-10 05:00:26 UTC
Created attachment 68697 [details] [review]
Fix for the GLIBMM_*_VERSION Macros
Comment 2 Murray Cumming 2006-07-12 14:54:23 UTC
Thanks. Anyone should feel free to commit this, with a ChangeLog entry, to HEAD and 2.10.
Comment 3 Murray Cumming 2006-07-16 19:34:51 UTC
Thanks. Applied to the HEAD and 2.10 branches. Please patch the ChangeLog in future.
Comment 4 Murray Cumming 2006-07-17 16:24:18 UTC
This put the macros in glibmmconfig.h in the header (e.g. $GLIBMM_MAJOR_VERSION) instead of the values. Changing it back to AC_DEFINE_UNQUOTED() instead of AC_DEFINE() seemed to fix it.