Tony wrote:
> IOW: does the Athena GUI (which I attempted to build) require support > of the NeXTaw GUI (which has been removed? Or is it "only" due to a > misplaced #ifdef? > I haven't (yet) tried to do a full rebuild by means of "make reconfig". > > [...] > objects/gui_x11.o: undefined reference to symbol > '_XEditResCheckMessages' I don't get this error when building with Motif. Check src/autoconfig.h, for me it has this line: /* #undef HAVE_X11_XMU_EDITRES_H */ If you don't have it commented out, then these lines in gui_x11.c should be used: #ifdef HAVE_X11_XMU_EDITRES_H # include <X11/Xmu/Editres.h> #endif And in that file _XEditResCheckMessages is declared. Maybe "make reconfig" helps? -- hundred-and-one symptoms of being an internet addict: 237. You tattoo your email address on your forehead. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/20220312105957.B75561C79E5%40moolenaar.net.
