Thank you, Michael. Well, next one is a linking problem
. undefined reference to `gtk_widget_set_tooltip_text' It seems that gnubg requires gtk 2.12 or later. but centos provides only 2.10. http://developer.gnome.org/gtk/2.24/GtkTooltip.html I should use Ubuntu, not dying centos... maybe. Nori 2011年9月20日7:49 Michael Petch <[email protected]>: > On 19/09/2011 7:28 AM, 保坂範行 wrote: >> Hi. >> >> I wanted to build latest gnubg, and I found that I can't >> >> What autogen.sh reported: >> >> configure.in:141: error: possibly undefined macro: AS_VERSION_COMPARE >> If this token and others are legitimate, please use m4_pattern_allow. >> See the Autoconf documentation. >> >> >> I'm using >> CentOS 5.6 >> > The problem I guess is that I am using a newer macro that doesn't exist > on the older autoconf that CentOS 5.6 is using. It appears you need > version 2.63 of autoconf, and CentOS 5.6 is using autoconf 2.59. > > Until I find a work around, two options you have are: > A) Build and install autoconf 2.63 (or higher) onto CentOS 5.6 > > or > > B) Edit configure.in (in the directory where you have the GNUBG sources) > and on line 142 (or close to it)you will see a line like: > > AS_VERSION_COMPARE("$(uname -r)", "10.0", needquicktime=yes, [], []) > > Change it to: > > dnl AS_VERSION_COMPARE("$(uname -r)", "10.0", needquicktime=yes, [], []) > > This will comment out the line causing the problem.Since this is only > used on Mac builds commenting it out with "dnl" should allow you to > build on CentOS. > > -- > Michael Petch > CApp::Sysware Consulting Ltd. > OpenPGP FingerPrint=D81C 6A0D 987E 7DA5 3219 6715 466A 2ACE 5CAE 3304 > > _______________________________________________ Bug-gnubg mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-gnubg
