* DISCLAIMER: Add words about "free to use".
* README: Modify "Win32 runtime" to "Microsoft C Runtime". * Makefile.in (SRCDIST_FILES): Add DISCLAIMER and README. (inst_docdir): New variable. (INSTDOCS): Ditto. (FLAGS_TO_PASS): Include inst_docdir. (install-dirs): Add inst_docdir. (install): Add loop for INSTDOCS.
This commit is contained in:
parent
fe97afbbb3
commit
00a85098c4
|
@ -1,3 +1,14 @@
|
|||
2004-04-22 Earnie Boyd <earnie@users.sf.net>
|
||||
|
||||
* DISCLAIMER: Add words about "free to use".
|
||||
* README: Modify "Win32 runtime" to "Microsoft C Runtime".
|
||||
* Makefile.in (SRCDIST_FILES): Add DISCLAIMER and README.
|
||||
(inst_docdir): New variable.
|
||||
(INSTDOCS): Ditto.
|
||||
(FLAGS_TO_PASS): Include inst_docdir.
|
||||
(install-dirs): Add inst_docdir.
|
||||
(install): Add loop for INSTDOCS.
|
||||
|
||||
2004-04-22 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* mingwex/math/lround.c: Rewrite.
|
||||
|
|
|
@ -7,4 +7,6 @@
|
|||
* will be useful but WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESSED OR
|
||||
* IMPLIED ARE HEREBY DISCLAIMED. This includes but is not limited to
|
||||
* warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* You are free to use this package and its code without limitation.
|
||||
*/
|
||||
|
|
|
@ -51,10 +51,12 @@ ifneq (,$(findstring cygwin,$(target_alias)))
|
|||
inst_bindir:=$(tooldir)/bin
|
||||
inst_includedir:=$(tooldir)/include/mingw
|
||||
inst_libdir:=$(tooldir)/lib/mingw
|
||||
inst_docdir:=$(tooldir)/doc/mingw-runtime
|
||||
else
|
||||
inst_bindir:=$(bindir)
|
||||
inst_includedir:=$(includedir)
|
||||
inst_libdir:=$(libdir)
|
||||
inst_docdir:=$(prefix)/doc/mingw-runtime
|
||||
endif
|
||||
|
||||
# The Mingw headers are installed under a subdirectory of
|
||||
|
@ -142,6 +144,7 @@ FLAGS_TO_PASS:=\
|
|||
inst_bindir="$(inst_bindir)" \
|
||||
inst_includedir="$(inst_includedir)" \
|
||||
inst_libdir="$(inst_libdir)" \
|
||||
inst_docdir="$(inst_docdir)" \
|
||||
prefix="$(prefix)" \
|
||||
target_alias="$(target_alias)" \
|
||||
TAR="$(TAR)" \
|
||||
|
@ -169,6 +172,9 @@ LIBS = libcrtdll.a \
|
|||
|
||||
DLLS = $(THREAD_DLL_NAME)
|
||||
|
||||
INSTDOCS = DISCLAIMER \
|
||||
README
|
||||
|
||||
SRCDIST_FILES = CRT_noglob.c CRTfmode.c CRTglob.c CRTinit.c ChangeLog \
|
||||
Makefile.in README TODO config.guess config.sub configure configure.in \
|
||||
crt1.c crtdll.def crtmt.c crtst.c dllcrt1.c dllmain.c \
|
||||
|
@ -178,7 +184,8 @@ mthr.c mthr_init.c mthr_stub.c readme.txt \
|
|||
isascii.c iscsym.c iscsymf.c toascii.c \
|
||||
strcasecmp.c strncasecmp.c wcscmpi.c \
|
||||
CRT_fp8.c CRT_fp10.c test_headers.c txtmode.c binmode.c pseudo-reloc.c \
|
||||
pseudo-reloc-list.c
|
||||
pseudo-reloc-list.c \
|
||||
DISCLAIMER README
|
||||
|
||||
|
||||
all_dlls_host = @all_dlls_host@
|
||||
|
@ -389,6 +396,7 @@ install-dirs:
|
|||
$(mkinstalldirs) $(inst_bindir)
|
||||
$(mkinstalldirs) $(inst_includedir)
|
||||
$(mkinstalldirs) $(inst_libdir)
|
||||
$(mkinstalldirs) $(inst_docdir)
|
||||
|
||||
install: all install-dirs $(install_dlls_host)
|
||||
for i in $(LIBS); do \
|
||||
|
@ -397,6 +405,9 @@ install: all install-dirs $(install_dlls_host)
|
|||
for i in $(CRT0S); do \
|
||||
$(INSTALL_DATA) $$i $(inst_libdir)/$$i ; \
|
||||
done
|
||||
for i in $(INSTDOCS); do \
|
||||
$(INSTALL_DATA) $(srcdir)/$$i $(inst_docdir)/$$i ; \
|
||||
done
|
||||
for sub in . sys ; do \
|
||||
dstdir=$(inst_includedir)/$$sub ; \
|
||||
$(mkinstalldirs) $$dstdir ; \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Free Win32 runtime and import library definitions
|
||||
Free Microsoft C Runtime and import library definitions
|
||||
|
||||
Maintained by MinGW Developers
|
||||
Send bug reports and questions to MinGW-users@lists.sourceforge.net
|
||||
|
|
Loading…
Reference in New Issue