mirror of https://github.com/GNOME/gimp.git
also look for automake-1.10.
2007-05-21 Sven Neumann <sven@gimp.org> * autogen.sh: also look for automake-1.10. svn path=/trunk/; revision=22553
This commit is contained in:
parent
9b369d8f6b
commit
4e2a8c5a9b
|
@ -1,3 +1,7 @@
|
|||
2007-05-21 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* autogen.sh: also look for automake-1.10.
|
||||
|
||||
2007-05-21 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimp.c (gimp_message): documentation.
|
||||
|
|
|
@ -160,6 +160,9 @@ echo -n "checking for automake >= $AUTOMAKE_REQUIRED_VERSION ... "
|
|||
if ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1; then
|
||||
AUTOMAKE=$AUTOMAKE
|
||||
ACLOCAL=$ACLOCAL
|
||||
elif (automake-1.10 --version) < /dev/null > /dev/null 2>&1; then
|
||||
AUTOMAKE=automake-1.10
|
||||
ACLOCAL=aclocal-1.10
|
||||
elif (automake-1.9 --version) < /dev/null > /dev/null 2>&1; then
|
||||
AUTOMAKE=automake-1.9
|
||||
ACLOCAL=aclocal-1.9
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
2007-05-21 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/Makefile.am: do nothing unless configured with
|
||||
--enable-gtk-doc-app.
|
||||
--enable-gtk-doc-app. Removed dist-hook override.
|
||||
|
||||
2007-05-14 Sven Neumann <sven@gimp.org>
|
||||
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
if ENABLE_GTK_DOC_APP
|
||||
|
||||
# The name of the module.
|
||||
DOC_MODULE = app
|
||||
|
||||
|
@ -110,15 +108,20 @@ GTKDOC_LIBS = \
|
|||
$(INTLLIBS)
|
||||
|
||||
|
||||
if ENABLE_GTK_DOC_APP
|
||||
|
||||
include $(top_srcdir)/gtk-doc.make
|
||||
|
||||
else
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(DOC_MODULE)-docs.sgml \
|
||||
$(DOC_MODULE)-overrides.txt \
|
||||
$(DOC_MODULE)-sections.txt
|
||||
|
||||
endif
|
||||
|
||||
# Other files to distribute
|
||||
EXTRA_DIST += \
|
||||
$(DOC_MODULE).types \
|
||||
version.in
|
||||
|
||||
endif
|
||||
|
||||
# Override dist-hook as we don't want to distribute generated files
|
||||
dist-hook:
|
||||
@true
|
||||
|
|
Loading…
Reference in New Issue