summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@nuclecu.unam.mx>1998-03-20 00:46:40 +0000
committerArturo Espinosa <unammx@src.gnome.org>1998-03-20 00:46:40 +0000
commit37cc74ae13a3b8d9fe225d45b872829e6271a53c (patch)
tree2c47777690ba315fcad0bd6889047a4b81cd1551
parent2812276f15c49e9bb94197a207e0ec8022d3709b (diff)
downloadgnome-common-37cc74ae13a3b8d9fe225d45b872829e6271a53c.tar.gz
Add support for gtk_container_add to GnomeApp widget.
1998-03-19 Miguel de Icaza <miguel@nuclecu.unam.mx> * gnome-app.c (gnome_app_add): Add support for gtk_container_add to GnomeApp widget. svn path=/trunk/; revision=152
-rw-r--r--macros/gnome-x-checks.m42
-rw-r--r--support/argp.texi4
2 files changed, 1 insertions, 5 deletions
diff --git a/macros/gnome-x-checks.m4 b/macros/gnome-x-checks.m4
index 9a2d6de..429b46c 100644
--- a/macros/gnome-x-checks.m4
+++ b/macros/gnome-x-checks.m4
@@ -15,7 +15,7 @@ dnl gnome_cv_passdown_{x_libs,X_LIBS,X_CFLAGS}
dnl
AC_DEFUN([GNOME_X_CHECKS],
[
- AM_PATH_GTK(,,AC_MSG_ERROR(GTK not installed, or gtk-config not in path))
+ AM_PATH_GTK(0.99.5,,AC_MSG_ERROR(GTK not installed, or gtk-config not in path))
dnl Hope that GTK_CFLAGS have only -I and -D. Otherwise, we could
dnl test -z "$x_includes" || CPPFLAGS="$CPPFLAGS -I$x_includes"
diff --git a/support/argp.texi b/support/argp.texi
index 84b131f..8c41f07 100644
--- a/support/argp.texi
+++ b/support/argp.texi
@@ -1033,7 +1033,6 @@ It won't do much except give an error messages and exit when there are any
arguments, and print a (rather pointless) message for @samp{--help}.
@smallexample
-@include argp-ex1.c.texi
@end smallexample
@node Argp Example 2, Argp Example 3, Argp Example 1, Argp Examples
@@ -1057,7 +1056,6 @@ will almost always be constant for a given program, even if it uses
different argument parsers for various tasks).
@smallexample
-@include argp-ex2.c.texi
@end smallexample
@node Argp Example 3, Argp Example 4, Argp Example 2, Argp Examples
@@ -1079,7 +1077,6 @@ also possible to use global variables instead, but using a structure
like this is somewhat more flexible and clean.
@smallexample
-@include argp-ex3.c.texi
@end smallexample
@node Argp Example 4, , Argp Example 3, Argp Examples
@@ -1108,7 +1105,6 @@ All documentation strings are also passed to the @code{gettext}
function, for possible translation into the current locale.
@smallexample
-@include argp-ex4.c.texi
@end smallexample
@node Argp User Customization, , Argp Examples, Argp