summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@src.gnome.org>2006-02-07 05:24:08 +0000
committerTristan Van Berkom <tvb@src.gnome.org>2006-02-07 05:24:08 +0000
commitd6ea83cbdfb9e052f16219aff90c7ad9d7efc89d (patch)
tree5f318ba795aeccaea6edec1f1289657fcc95d250 /autogen.sh
parenta95bdab5883d50680eeac350a4c4ad4c2a7b39e0 (diff)
downloadglade-d6ea83cbdfb9e052f16219aff90c7ad9d7efc89d.tar.gz
require automake 1.9
* autogen.sh: require automake 1.9 * Makefile.am, doc/Makefile.am, doc/.cvsignore, configure.in: Added environment for gtk-doc generation. * doc/glade-docs.sgml, doc/glade-sections.txt, doc/glade.types, doc/version.xml.in, doc/tmpl/*: Added initial documentation metadata. * src/*.h: Line break LIBGLADEUI_API everywhere so that documentation generation works (wierd trade, I know). * po/POTFILES.in: Added glade-custom.c Modified Files: ChangeLog Makefile.am autogen.sh configure.in po/POTFILES.in src/glade-app.h src/glade-catalog.h src/glade-clipboard-view.h src/glade-clipboard.h src/glade-command.c src/glade-command.h src/glade-editor-property.c src/glade-editor-property.h src/glade-editor.c src/glade-editor.h src/glade-fixed-manager.h src/glade-gtk.c src/glade-palette.h src/glade-parameter.h src/glade-placeholder.h src/glade-popup.c src/glade-project-view.c src/glade-project-view.h src/glade-project-window.c src/glade-project.c src/glade-project.h src/glade-property-class.c src/glade-property-class.h src/glade-property.c src/glade-property.h src/glade-signal-editor.h src/glade-signal.c src/glade-utils.c src/glade-utils.h src/glade-widget-class.h src/glade-widget.c src/glade-widget.h src/glade-xml-utils.h Added Files: doc/.cvsignore doc/Makefile.am doc/glade-docs.sgml doc/glade-sections.txt doc/glade.types doc/version.xml.in doc/tmpl/glade-app.sgml doc/tmpl/glade-catalog.sgml doc/tmpl/glade-clipboard-view.sgml doc/tmpl/glade-clipboard.sgml doc/tmpl/glade-command.sgml doc/tmpl/glade-editor-property.sgml doc/tmpl/glade-editor.sgml doc/tmpl/glade-fixed-manager.sgml doc/tmpl/glade-palette.sgml doc/tmpl/glade-parameter.sgml doc/tmpl/glade-parser.sgml doc/tmpl/glade-placeholder.sgml doc/tmpl/glade-project-view.sgml doc/tmpl/glade-project.sgml doc/tmpl/glade-property-class.sgml doc/tmpl/glade-property.sgml doc/tmpl/glade-signal-editor.sgml doc/tmpl/glade-signal.sgml doc/tmpl/glade-utils.sgml doc/tmpl/glade-widget-class.sgml doc/tmpl/glade-widget.sgml
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh16
1 files changed, 9 insertions, 7 deletions
diff --git a/autogen.sh b/autogen.sh
index 966820f0..c07fd7e2 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,6 +6,7 @@ test -z "$srcdir" && srcdir=.
PKG_NAME="glade"
+
(test -f $srcdir/configure.in \
&& test -f $srcdir/autogen.sh) || {
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
@@ -39,13 +40,14 @@ if test -z "$gnome_autogen" ; then
exit 1
fi
-automake_version=
-case `uname` in
-CYGWIN*)
+automake_version=1.9
+
+#case `uname` in
+#CYGWIN*)
# automake 1.4 of cygwin does not define EGREP in libtool.m4, and
# fails to do the file magic test when -rpath is given
- automake_version=1.7
- ;;
-esac
+# automake_version=1.7
+# ;;
+#esac
-REQUIRED_AUTOMAKE_VERSION="$automake_version" GNOME_DATADIR="$gnome_datadir" USE_GNOME2_MACROS=1 . $gnome_autogen
+REQUIRED_AUTOMAKE_VERSION="$automake_version" GNOME_DATADIR="$gnome_datadir" USE_GNOME2_MACROS=1 . $gnome_autogen