Bill,
(I would have replied to your last message, but I inadvertently deleted
it.)
I updated my copy of XEmacs/GTK from CVS and attempted to build. The
configure script failed to find the gtk-config script. This patch seems
to fix the problem:
Index: configure.in
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/configure.in,v
retrieving revision 1.111.2.139.2.5
diff -u -r1.111.2.139.2.5 configure.in
--- configure.in 2001/02/12 14:20:16 1.111.2.139.2.5
+++ configure.in 2001/02/12 22:59:47
@@ -2573,7 +2573,7 @@
case "${possible_version}" in
1.0.*) AC_MSG_WARN([GTK 1.2 is required, please upgrade your
version of GTK.]); with_gtk=no;;
1.3.*) AC_MSG_WARN([GTK 1.3 is not supported right now]);
with_gtk=no;;
- * )
+ 1.2.*)
with_gtk=yes
break
;;
After this change it detected gtk-config and I continued with the build.
Now that I have an XEmacs/GTK how do I play with the new features?
Everytime I try to do something that needs a file dialog, xemacs says
"Symbol's function definition is void: gtk-make-dialog-box-internal".
Craig