*** empty log message ***

This commit is contained in:
Andrey Kiselev 2004-06-04 11:27:08 +00:00
parent 1a195d5f9c
commit 1432ba20b1
2 changed files with 8 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile.vc,v 1.4 2004-05-19 10:49:16 dron Exp $ # $Id: Makefile.vc,v 1.5 2004-06-04 11:27:08 dron Exp $
# #
# Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org> # Copyright (C) 2004, Andrey Kiselev <dron@remotesensing.org>
# #
@ -71,10 +71,13 @@ OBJ = \
all: libtiff.lib libtiff.dll all: libtiff.lib libtiff.dll
libtiff.lib: $(OBJ) config.h:
copy config.h.vc config.h
libtiff.lib: config.h $(OBJ)
lib /nologo /out:libtiff.lib $(OBJ) lib /nologo /out:libtiff.lib $(OBJ)
libtiff.dll: $(OBJ) libtiff.dll: config.h $(OBJ)
link /nologo /dll /def:libtiff.def /out:libtiff.dll \ link /nologo /dll /def:libtiff.def /out:libtiff.dll \
/implib:libtiff_i.lib $(OBJ) $(LIBS) /implib:libtiff_i.lib $(OBJ) $(LIBS)

View File

@ -1,4 +1,4 @@
/* $Id: tiffiop.h,v 1.16 2004-06-04 10:25:58 dron Exp $ */ /* $Id: tiffiop.h,v 1.17 2004-06-04 11:27:08 dron Exp $ */
/* /*
* Copyright (c) 1988-1997 Sam Leffler * Copyright (c) 1988-1997 Sam Leffler
@ -30,11 +30,7 @@
* ``Library-private'' definitions. * ``Library-private'' definitions.
*/ */
#if defined(_MSC_VER) #include "config.h"
# include "config.h.vc"
#else
# include "config.h"
#endif
#if HAVE_FCNTL_H #if HAVE_FCNTL_H
# include <fcntl.h> # include <fcntl.h>