Alfredo Braunstein wrote: > after configuring with > > ../configure --enable-maintainer-mode --with-version-suffix \ > --with-frontend="qt xforms gtk" --disable-debug > > and compiling successfully, the thing breaks on the final linking > step of the gtk frontend with > > frontends/gtk/.libs/libgtk.a(xforms.o)(.text+0x6f516): In function > `build_forks(void*)': > : undefined reference to `C_FormBaseInputCB' > frontends/gtk/.libs/libgtk.a(xforms.o)(.text+0x6f683): In function > `build_forks(void*)':
C_FormBaseInputCB is a callback function of the now-dead FormBase class. So, what's calling it? Ahhhh. build_forks is the routine used to build the forks dialog. But the forks dialog is also dead... > Any idea of what I'm doing wrong? Alfredo, FormForks.[Ch] and forms/form_forks.fd no longer exist in the xforms frontend. I suspect that you have old forms/form_forks.{o,lo} lying around in your build directory and that gtk is incorporating them into gtk/xforms.{o,lo}. Nuke 'em and all should be Ok. > Alfredo -- Angus