diff options
author | Monty <monty@mariadb.org> | 2018-11-07 13:16:29 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-12-09 20:49:05 +0200 |
commit | c82855d88272f0a1b95d0ad2b7abf804aeff8145 (patch) | |
tree | d21118e6caaf2f90e2df0a4a2780d7964caa349e /Docs/glibc-2.2.5.patch | |
parent | ae58cd6b87bf1f872093816691ebdd46bef50c7f (diff) | |
download | mariadb-git-c82855d88272f0a1b95d0ad2b7abf804aeff8145.tar.gz |
Changed some MySQL names in messages to MariaDB
- Remove obsolete documentation files
- Removed old obsolete information from some documentation files
Diffstat (limited to 'Docs/glibc-2.2.5.patch')
-rw-r--r-- | Docs/glibc-2.2.5.patch | 137 |
1 files changed, 0 insertions, 137 deletions
diff --git a/Docs/glibc-2.2.5.patch b/Docs/glibc-2.2.5.patch deleted file mode 100644 index ef5d40b6899..00000000000 --- a/Docs/glibc-2.2.5.patch +++ /dev/null @@ -1,137 +0,0 @@ -diff -r -c --exclude='*.info*' glibc-2.2.5.org/linuxthreads/internals.h glibc-2.2.5/linuxthreads/internals.h -*** glibc-2.2.5.org/linuxthreads/internals.h Thu Nov 29 08:44:16 2001 ---- glibc-2.2.5/linuxthreads/internals.h Tue May 21 10:51:53 2002 -*************** -*** 343,349 **** - THREAD_SELF implementation is used, this must be a power of two and - a multiple of PAGE_SIZE. */ - #ifndef STACK_SIZE -! #define STACK_SIZE (2 * 1024 * 1024) - #endif - - /* The initial size of the thread stack. Must be a multiple of PAGE_SIZE. */ ---- 343,349 ---- - THREAD_SELF implementation is used, this must be a power of two and - a multiple of PAGE_SIZE. */ - #ifndef STACK_SIZE -! #define STACK_SIZE (128 * 1024) - #endif - - /* The initial size of the thread stack. Must be a multiple of PAGE_SIZE. */ -diff -r -c --exclude='*.info*' glibc-2.2.5.org/linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h glibc-2.2.5/linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h -*** glibc-2.2.5.org/linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h Thu Jun 8 21:49:49 2000 ---- glibc-2.2.5/linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h Tue May 21 10:52:58 2002 -*************** -*** 64,70 **** - /* The number of threads per process. */ - #define _POSIX_THREAD_THREADS_MAX 64 - /* This is the value this implementation supports. */ -! #define PTHREAD_THREADS_MAX 1024 - - /* Maximum amount by which a process can descrease its asynchronous I/O - priority level. */ ---- 64,70 ---- - /* The number of threads per process. */ - #define _POSIX_THREAD_THREADS_MAX 64 - /* This is the value this implementation supports. */ -! #define PTHREAD_THREADS_MAX 4096 - - /* Maximum amount by which a process can descrease its asynchronous I/O - priority level. */ -diff -r -c --exclude='*.info*' glibc-2.2.5.org/nss/nsswitch.c glibc-2.2.5/nss/nsswitch.c -*** glibc-2.2.5.org/nss/nsswitch.c Tue Jul 17 10:21:36 2001 ---- glibc-2.2.5/nss/nsswitch.c Tue May 21 10:59:55 2002 -*************** -*** 496,501 **** ---- 496,502 ---- - { - service_user *new_service; - const char *name; -+ int name_alloc_len; - - while (isspace (line[0])) - ++line; -*************** -*** 510,522 **** - if (name == line) - return result; - - - new_service = (service_user *) malloc (sizeof (service_user) -! + (line - name + 1)); - if (new_service == NULL) - return result; - -! *((char *) __mempcpy (new_service->name, name, line - name)) = '\0'; - - /* Set default actions. */ - new_service->actions[2 + NSS_STATUS_TRYAGAIN] = NSS_ACTION_CONTINUE; ---- 511,534 ---- - if (name == line) - return result; - -+ name_alloc_len = line - name + 1; -+ -+ #ifdef DO_STATIC_NSS -+ if (!((name_alloc_len == 6 && strncmp(name,"files",5) == 0) || -+ (name_alloc_len == 4 && strncmp(name,"dns",3) == 0))) -+ { -+ name = (char*) "files"; -+ name_alloc_len = 6; -+ } -+ #endif - - new_service = (service_user *) malloc (sizeof (service_user) -! + name_alloc_len); - if (new_service == NULL) - return result; - -! *((char *) __mempcpy (new_service->name, name, name_alloc_len-1)) = '\0'; -! - - /* Set default actions. */ - new_service->actions[2 + NSS_STATUS_TRYAGAIN] = NSS_ACTION_CONTINUE; -diff -r -c --exclude='*.info*' glibc-2.2.5.org/time/Makefile glibc-2.2.5/time/Makefile -*** glibc-2.2.5.org/time/Makefile Fri Aug 10 01:59:41 2001 ---- glibc-2.2.5/time/Makefile Tue May 21 11:01:11 2002 -*************** -*** 37,44 **** - - include ../Rules - -! tz-cflags = -DTZDIR='"$(zonedir)"' \ -! -DTZDEFAULT='"$(localtime-file)"' \ - -DTZDEFRULES='"$(posixrules-file)"' - - CFLAGS-tzfile.c = $(tz-cflags) ---- 37,44 ---- - - include ../Rules - -! tz-cflags = -DTZDIR='"/usr/share/zoneinfo/"' \ -! -DTZDEFAULT='"/etc/localtime"' \ - -DTZDEFRULES='"$(posixrules-file)"' - - CFLAGS-tzfile.c = $(tz-cflags) -diff -r -c --exclude='*.info*' glibc-2.2.5.org/timezone/Makefile glibc-2.2.5/timezone/Makefile -*** glibc-2.2.5.org/timezone/Makefile Thu Aug 30 00:45:25 2001 ---- glibc-2.2.5/timezone/Makefile Tue May 21 11:01:57 2002 -*************** -*** 159,166 **** - - $(objpfx)zic: $(objpfx)scheck.o $(objpfx)ialloc.o - -! tz-cflags = -DTZDIR='"$(zonedir)"' \ -! -DTZDEFAULT='"$(localtime-file)"' \ - -DTZDEFRULES='"$(posixrules-file)"' \ - -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone - ---- 159,166 ---- - - $(objpfx)zic: $(objpfx)scheck.o $(objpfx)ialloc.o - -! tz-cflags = -DTZDIR='"/usr/share/zoneinfo/"' \ -! -DTZDEFAULT='"/etc/localtime"' \ - -DTZDEFRULES='"$(posixrules-file)"' \ - -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone - |