*** empty log message ***

This commit is contained in:
Andrey Kiselev 2004-09-25 18:46:19 +00:00
parent 7111f6fbfa
commit 5f3854f6c5
3 changed files with 11 additions and 5 deletions

View File

@ -1,4 +1,7 @@
2004-09-24 Andrey Kiselev <dron@remotesensing.org>
2004-09-25 Andrey Kiselev <dron@remotesensing.org>
* tools/tiff2bw.c: Write ImageWidth/Height tags to output file, as
noted by Gennady Khokhorin.
* libtiff/tif_dirread.c: Always check the return values, returned
by the _TIFFmalloc() (Dmitry V. Levin).

View File

@ -29,7 +29,8 @@ LIBPORT = -L$(top_builddir)/port -lport
# shared with other makefiles
include files.lst
EXTRA_DIST = Makefile.vc tif_config.h.vc tiffconf.h.vc files.lst $(EXTRA_SRCS)
EXTRA_DIST = Makefile.vc tif_config.h.vc tiffconf.h.vc files.lst libtiff.def \
$(EXTRA_SRCS)
libtiffincludedir = $(includedir)
libtiffinclude_HEADERS = $(HDRS)

View File

@ -314,7 +314,9 @@ EXTRA_SRCS = \
# Read list of source files and headers from the external file,
# shared with other makefiles
EXTRA_DIST = Makefile.vc tif_config.h.vc tiffconf.h.vc files.lst $(EXTRA_SRCS)
EXTRA_DIST = Makefile.vc tif_config.h.vc tiffconf.h.vc files.lst libtiff.def \
$(EXTRA_SRCS)
libtiffincludedir = $(includedir)
libtiffinclude_HEADERS = $(HDRS)
noinst_HEADERS = $(EXTRA_HDRS)
@ -340,9 +342,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/fi
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign libtiff/Makefile'; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libtiff/Makefile'; \
cd $(top_srcdir) && \
$(AUTOMAKE) --foreign libtiff/Makefile
$(AUTOMAKE) --gnu libtiff/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \