diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2008-07-29 10:40:37 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2008-07-29 10:40:37 +0000 |
commit | f9afd0ced7a68a90e4baba4385104e625264f990 (patch) | |
tree | 607ac41926c83d560df62397527f0e83567ee8d9 /winsup/cygwin/Makefile.in | |
parent | f2cb69fd8e2f29eb098fa16d03adef1031ea7728 (diff) | |
download | cygnal-f9afd0ced7a68a90e4baba4385104e625264f990.tar.gz cygnal-f9afd0ced7a68a90e4baba4385104e625264f990.tar.bz2 cygnal-f9afd0ced7a68a90e4baba4385104e625264f990.zip |
* Makefile.in (DLL_OFILES): Remove v8 regexp files.
(OBSOLETE_FUNCTIONS): Remove v8 regexp functions.
(NEW_FUNCTIONS): Remove POSIX regex functions.
* cygwin.din: Export POSIX regex functions with their correct symbol
name. Export with posix_ prefix for backward compatibility.
* syscalls.cc (regfree): Remove ancient fake function.
* regex/regex.h: Remove renaming regex functions within Cygwin.
* regexp/*: Remove.
* include /cygwin/version,.h: Bump API minor number.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 9d13bb0d9..e9b96629c 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -144,14 +144,13 @@ DLL_OFILES:=assert.o autoload.o bsdlib.o ctype.o cxx.o cygheap.o cygthread.o \ sec_helper.o security.o select.o sem.o shared.o shm.o sigfe.o signal.o \ sigproc.o smallprint.o spawn.o strace.o strfuncs.o strptime.o strsep.o \ strsig.o sync.o syscalls.o sysconf.o syslog.o termios.o thread.o \ - timer.o times.o tls_pbuf.o tty.o uinfo.o uname.o v8_regexp.o \ - v8_regerror.o v8_regsub.o wait.o wincap.o window.o winf.o xsique.o \ + timer.o times.o tls_pbuf.o tty.o uinfo.o uname.o wait.o wincap.o \ + window.o winf.o xsique.o \ $(EXTRA_DLL_OFILES) $(EXTRA_OFILES) $(MALLOC_OFILES) $(MT_SAFE_OBJECTS) GMON_OFILES:=gmon.o mcount.o profil.o -OBSOLETE_FUNCTIONS:=regcomp regerror regexec regfree regsub \ - open acl aclcheck aclfrommode aclfrompbits \ +OBSOLETE_FUNCTIONS:=open acl aclcheck aclfrommode aclfrompbits \ aclfromtext aclsort acltomode acltopbits \ acltotext chown facl fchown fcntl fdopen fgetpos fopen \ freopen fseeko fsetpos fstat ftello ftruncate \ @@ -161,11 +160,7 @@ OBSOLETE_FUNCTIONS:=regcomp regerror regexec regfree regsub \ setgid setgroups setregid setreuid setuid stat \ telldir tmpfile truncate timezone -NEW_FUNCTIONS:=regcomp posix_regcomp \ - regerror posix_regerror \ - regexec posix_regexec \ - regfree posix_regfree \ - open _open64 \ +NEW_FUNCTIONS:=open _open64 \ acl _acl32 \ aclcheck _aclcheck32 \ aclfrommode _aclfrommode32 \ |