2001-09-12 Earnie Boyd <earnie@SF.net>
* Makefile.in: Increment version. * include/w32api.h: Ditto. * lib/Makefile.in: Add usr/ to install directory special for cygwin.
This commit is contained in:
parent
e078566ced
commit
c88bb51c3c
|
@ -1,3 +1,9 @@
|
||||||
|
2001-09-12 Earnie Boyd <earnie@SF.net>
|
||||||
|
|
||||||
|
* Makefile.in: Increment version.
|
||||||
|
* include/w32api.h: Ditto.
|
||||||
|
* lib/Makefile.in: Add usr/ to install directory special for cygwin.
|
||||||
|
|
||||||
2001-09-11 Danny Smith <dannysmith@users.sourceforge.net>
|
2001-09-11 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
|
* include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
|
||||||
|
|
|
@ -60,7 +60,8 @@ FLAGS_TO_PASS = \
|
||||||
SUBDIRS = lib
|
SUBDIRS = lib
|
||||||
|
|
||||||
PACKAGE = w32api
|
PACKAGE = w32api
|
||||||
VERSION = 1.0
|
VERSION = 1.1
|
||||||
|
CYGRELEASE = 1
|
||||||
|
|
||||||
DIST_FILES = Makefile.in configure.in configure config.guess config.sub \
|
DIST_FILES = Makefile.in configure.in configure config.guess config.sub \
|
||||||
install-sh README ChangeLog TODO CONTRIBUTIONS
|
install-sh README ChangeLog TODO CONTRIBUTIONS
|
||||||
|
@ -86,7 +87,11 @@ install uninstall:
|
||||||
ifdef SNAPDATE
|
ifdef SNAPDATE
|
||||||
distdir = $(PACKAGE)-$(VERSION)-$(SNAPDATE)
|
distdir = $(PACKAGE)-$(VERSION)-$(SNAPDATE)
|
||||||
else
|
else
|
||||||
distdir = $(PACKAGE)-$(VERSION)
|
ifneq (,$(findstring cygwin, $(target_alias)))
|
||||||
|
distdir=$(PACKAGE)-$(VERSION)-$(CYGRELEASE)
|
||||||
|
else
|
||||||
|
distdir=$(PACKAGE)-$(VERSION)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
dist: srcdist bindist
|
dist: srcdist bindist
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#ifndef _W32API_H_
|
#ifndef _W32API_H_
|
||||||
#define _W32API_H_
|
#define _W32API_H_
|
||||||
|
|
||||||
#define __W32API_VERSION 1.0
|
#define __W32API_VERSION 1.1
|
||||||
#define __W32API_MAJOR_VERSION 1
|
#define __W32API_MAJOR_VERSION 1
|
||||||
#define __W32API_MINOR_VERSION 0
|
#define __W32API_MINOR_VERSION 1
|
||||||
|
|
||||||
#endif /* ndef _W32API_H_ */
|
#endif /* ndef _W32API_H_ */
|
||||||
|
|
|
@ -37,8 +37,8 @@ endif
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
infodir = @infodir@
|
infodir = @infodir@
|
||||||
ifneq (,$(findstring cygwin,$(target_alias)))
|
ifneq (,$(findstring cygwin,$(target_alias)))
|
||||||
inst_includedir:=$(tooldir)/include/w32api
|
inst_includedir:=$(tooldir)/usr/include/w32api
|
||||||
inst_libdir:=$(tooldir)/lib/w32api
|
inst_libdir:=$(tooldir)/usr/lib/w32api
|
||||||
else
|
else
|
||||||
inst_includedir:=$(includedir)
|
inst_includedir:=$(includedir)
|
||||||
inst_libdir:=$(libdir)
|
inst_libdir:=$(libdir)
|
||||||
|
|
Loading…
Reference in New Issue