This is the mail archive of the cygwin-cvs@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

src/winsup/mingw ChangeLog Makefile.in configu ...


CVSROOT:	/cvs/src
Module name:	src
Branch: 	mingwex
Changes by:	dannysmith@sources.redhat.com	2002-03-22 14:43:18

Modified files:
	winsup/mingw   : ChangeLog Makefile.in configure configure.in 
Added files:
	winsup/mingw/mingwex: Makefile.in atoll.c configure configure.in 
	                      dirent.c feclearexcept.c fegetenv.c 
	                      fegetexceptflag.c fegetround.c 
	                      feholdexcept.c feraiseexcept.c fesetenv.c 
	                      fesetexceptflag.c fesetround.c 
	                      fetestexcept.c feupdateenv.c fma.S fmaf.S 
	                      fmax.c fmaxf.c fmin.c fminf.c fp_consts.c 
	                      fpclassify.c fucom.c fwide.c imaxabs.c 
	                      imaxdiv.c isnan.c isnanf.c lltoa.c lltow.c 
	                      log2.c log2f.c math_stubs.c mbsinit.c 
	                      rint.c round.c signbit.c sitest.c strtof.c 
	                      strtoimax.c strtoumax.c testwmem.c trunc.c 
	                      ulltoa.c ulltow.c wcstof.c wcstoimax.c 
	                      wcstoumax.c wmemchr.c wmemcmp.c wmemcpy.c 
	                      wmemmove.c wmemset.c wtoll.c 
Removed files:
	winsup/mingw   : dirent.c 

Log message:
	* configure.in: Add mingwex as SUBDIRS and configdirs.
	* configure: Regenerate.
	* Makefile.in (MINGW_OBJS): Remove dirent.o.
	(SRC_DIST_FILES): Remove dirent.c.
	* dirent.c: Remove.
	* include/stdlib.h (_Exit): Add static inline
	function.
	(struct lldiv_t): Define.
	(lldiv): Add prototype.
	(llabs): Add extern inline function.
	(strtoll,strtoull): Add prototypes.
	(wcstol, wcstoul, wcstod): Group together.
	(strtof, wcstof): Add extern inline definitions.
	(atoll,lltoa,ulltoa, wtoll, lltow ulltow): Add prototypes
	and extern inline definitions.
	* include/wchar.h (fwide, wcstoll,wcstoull, wmemchr
	wmemcmp, wmemcpy, wmemmove, wmemset. mbsinit): Add
	prototypes.
	(wcstol, wcstoul,wcstod): Copy prototypes from stdlib.h.
	(wcstof): Add extern inline definition.
	* include/math.h (nan, nanf): Add prototypes.
	(NAN, INFINITE): Define constants.
	(fpclassify, isnan ,signbit): Add macros and supporting float
	and double functions.
	(isfinite, isinf, isnormal): Add macros.
	(isgreater, isless, isgreaterequal, islessequal,islessgreater):
	Add macros.
	(rint, rintf, round, roundf, trunc. truncf, fmax, fmaxf,
	fmin, fminf, fma, fmaf, log2, log2f): Add prototypes.
	(copysign, logb, nextafter, scalb): Add prototypes and
	inline stubs for underscored versions in msvcrt.dll.
	* include/inttypes.h: New file.
	* include/fenv.h: New file
	
	Add new mingwex subdir and files.
	* mingwex: New directory.
	* mingwex/Makefile.in: New file.
	* mingwex/configure.in: New file.
	* mingwex/configure: Generate.
	* mingwex/dirent.c: Moved here from parent dir.
	* mingwex/atoll.c: New file.
	* mingwex/feclearexcept.c: New file.
	* mingwex/fegetenv.c: New file.
	* mingwex/fegetexceptflag.c: New file.
	* mingwex/fegetround.c: New file.
	* mingwex/feholdexcept.c: New file.
	* mingwex/feraiseexcept.c: New file.
	* mingwex/fesetenv.c: New file.
	* mingwex/fesetexceptflag.c: New file.
	* mingwex/fesetround.o: New file.
	* mingwex/fetestexcept.c: New file.
	* mingwex/feupdateenv.c: New file.
	* mingwex/fma.S: New file.
	* mingwex/fmaf.S: New file.
	* mingwex/fmax.c: New file.
	* mingwex/fmaxf.c: New file.
	* mingwex/fmin.c: New file.
	* mingwex/fminf.c: New file.
	* mingwex/fp_consts.c: New file.
	* mingwex/fpclassify.c: New file.
	* mingwex/fucom.c: New file.
	* mingwex/fwide.c: New file.
	* mingwex/imaxabs.c: New file.
	* mingwex/imaxdiv.c: New file.
	* mingwex/isnan.c: New file.
	* mingwex/isnanf.c: New file.
	* mingwex/lltoa.c: New file.
	* mingwex/lltow.c: New file.
	* mingwex/log2.c: New file.
	* mingwex/log2f.c: New file.
	* mingwex/math_stubs.c: New file.
	* mingwex/mbsinit.c: New file.
	* mingwex/rint.c: New file.
	* mingwex/round.c: New file.
	* mingwex/signbit.c: New file.
	* mingwex/sitest.c: New file.
	* mingwex/strtof.c: New file.
	* mingwex/strtoimax.c: New file.
	* mingwex/strtoumax.c: New file.
	* mingwex/testwmem.c: New file.
	* mingwex/trunc.c: New file.
	* mingwex/ulltoa.c: New file.
	* mingwex/ulltow.c: New file.
	* mingwex/wcstof.c: New file.
	* mingwex/wcstoimax.c: New file.
	* mingwex/wcstoumax.c: New file.
	* mingwex/wmemchr.c: New file.
	* mingwex/wmemcmp.c: New file.
	* mingwex/wmemcpy.c: New file.
	* mingwex/wmemmove.c: New file.
	* mingwex/wmemset.c: New file.
	* mingwex/wtoll.c: New file.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/ChangeLog.diff?cvsroot=src&only_with_tag=mingwex&r1=1.49&r2=1.49.4.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/Makefile.in.diff?cvsroot=src&only_with_tag=mingwex&r1=1.19&r2=1.19.10.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/configure.diff?cvsroot=src&only_with_tag=mingwex&r1=1.7&r2=1.7.38.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/configure.in.diff?cvsroot=src&only_with_tag=mingwex&r1=1.4&r2=1.4.38.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/dirent.c.diff?cvsroot=src&only_with_tag=mingwex&r1=1.2&r2=NONE
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/Makefile.in.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/atoll.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/configure.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/configure.in.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/dirent.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/feclearexcept.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fegetenv.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fegetexceptflag.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fegetround.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/feholdexcept.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/feraiseexcept.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fesetenv.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fesetexceptflag.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fesetround.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fetestexcept.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/feupdateenv.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fma.S.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fmaf.S.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fmax.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fmaxf.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fmin.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fminf.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fp_consts.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fpclassify.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fucom.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/fwide.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/imaxabs.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/imaxdiv.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/isnan.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/isnanf.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/lltoa.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/lltow.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/log2.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/log2f.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/math_stubs.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/mbsinit.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/rint.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/round.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/signbit.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/sitest.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/strtof.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/strtoimax.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/strtoumax.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/testwmem.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/trunc.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/ulltoa.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/ulltow.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wcstof.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wcstoimax.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wcstoumax.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wmemchr.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wmemcmp.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wmemcpy.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wmemmove.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wmemset.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/winsup/mingw/mingwex/wtoll.c.diff?cvsroot=src&only_with_tag=mingwex&r1=NONE&r2=1.1.2.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]