* Makefile.in (OBSOLETE_FUNCTION): Add tmpfile.
(NEW_FUNCTIONS): Add _tmpfile64 -> tmpfile translation. * cygwin.din: Export _tmpfile64 * include/cygwin/version.h: Bump api minor number.
This commit is contained in:
parent
072339664d
commit
56a4ceac3d
|
@ -1,3 +1,10 @@
|
||||||
|
2003-10-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* Makefile.in (OBSOLETE_FUNCTION): Add tmpfile.
|
||||||
|
(NEW_FUNCTIONS): Add _tmpfile64 -> tmpfile translation.
|
||||||
|
* cygwin.din: Export _tmpfile64
|
||||||
|
* include/cygwin/version.h: Bump api minor number.
|
||||||
|
|
||||||
2003-10-27 Corinna Vinschen <corinna@vinschen.de>
|
2003-10-27 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygwin.din: Add sem_close, sem_getvalue, sem_open and sem_timedwait.
|
* cygwin.din: Add sem_close, sem_getvalue, sem_open and sem_timedwait.
|
||||||
|
|
|
@ -148,7 +148,7 @@ OBSOLETE_FUNCTIONS:=regcomp regerror regexec regfree regsub \
|
||||||
getgroups getpwuid getpwuid_r getuid initgroups \
|
getgroups getpwuid getpwuid_r getuid initgroups \
|
||||||
lchown lseek lstat mknod mmap seekdir setegid seteuid \
|
lchown lseek lstat mknod mmap seekdir setegid seteuid \
|
||||||
setgid setgroups setregid setreuid setuid stat \
|
setgid setgroups setregid setreuid setuid stat \
|
||||||
telldir truncate
|
telldir tmpfile truncate
|
||||||
|
|
||||||
NEW_FUNCTIONS:=regcomp posix_regcomp \
|
NEW_FUNCTIONS:=regcomp posix_regcomp \
|
||||||
regerror posix_regerror \
|
regerror posix_regerror \
|
||||||
|
@ -202,6 +202,7 @@ NEW_FUNCTIONS:=regcomp posix_regcomp \
|
||||||
setuid _setuid32 \
|
setuid _setuid32 \
|
||||||
stat _stat64 \
|
stat _stat64 \
|
||||||
telldir _telldir64 \
|
telldir _telldir64 \
|
||||||
|
tmpfile _tmpfile64 \
|
||||||
truncate _truncate64
|
truncate _truncate64
|
||||||
|
|
||||||
API_VER:=$(srcdir)/include/cygwin/version.h
|
API_VER:=$(srcdir)/include/cygwin/version.h
|
||||||
|
|
|
@ -1411,6 +1411,7 @@ _times = times
|
||||||
timezone
|
timezone
|
||||||
tmpfile
|
tmpfile
|
||||||
_tmpfile = tmpfile
|
_tmpfile = tmpfile
|
||||||
|
_tmpfile64 = tmpfile64
|
||||||
tmpnam
|
tmpnam
|
||||||
_tmpnam = tmpnam
|
_tmpnam = tmpnam
|
||||||
toascii
|
toascii
|
||||||
|
|
|
@ -222,13 +222,14 @@ details. */
|
||||||
95: Export shmat, shmctl, shmdt, shmget.
|
95: Export shmat, shmctl, shmdt, shmget.
|
||||||
96: CW_GET_ERRNO_FROM_WINERROR addition to external.cc
|
96: CW_GET_ERRNO_FROM_WINERROR addition to external.cc
|
||||||
97: Export sem_open, sem_close, sem_timedwait, sem_getvalue.
|
97: Export sem_open, sem_close, sem_timedwait, sem_getvalue.
|
||||||
|
98: Export _tmpfile64.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
||||||
|
|
||||||
#define CYGWIN_VERSION_API_MAJOR 0
|
#define CYGWIN_VERSION_API_MAJOR 0
|
||||||
#define CYGWIN_VERSION_API_MINOR 97
|
#define CYGWIN_VERSION_API_MINOR 98
|
||||||
|
|
||||||
/* There is also a compatibity version number associated with the
|
/* There is also a compatibity version number associated with the
|
||||||
shared memory regions. It is incremented when incompatible
|
shared memory regions. It is incremented when incompatible
|
||||||
|
|
Loading…
Reference in New Issue