2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/crypt/Makefile
|
2012-08-28 14:25:24 +02:00
|
|
|
===================================================================
|
2014-09-15 12:37:45 +02:00
|
|
|
--- glibc-2.19.90.orig/crypt/Makefile
|
|
|
|
+++ glibc-2.19.90/crypt/Makefile
|
|
|
|
@@ -23,14 +23,18 @@ subdir := crypt
|
|
|
|
include ../Makeconfig
|
2011-07-19 14:17:47 +02:00
|
|
|
|
|
|
|
headers := crypt.h
|
|
|
|
+headers += gnu-crypt.h ow-crypt.h
|
|
|
|
|
2013-07-08 15:10:39 +02:00
|
|
|
-extra-libs := libcrypt
|
|
|
|
+extra-libs := libcrypt libowcrypt
|
2011-07-19 14:17:47 +02:00
|
|
|
extra-libs-others := $(extra-libs)
|
2013-07-08 15:10:39 +02:00
|
|
|
|
2011-07-19 14:17:47 +02:00
|
|
|
libcrypt-routines := crypt-entry md5-crypt sha256-crypt sha512-crypt crypt \
|
|
|
|
crypt_util
|
|
|
|
|
2013-07-08 15:10:39 +02:00
|
|
|
-tests := cert md5c-test sha256c-test sha512c-test badsalttest
|
2013-08-06 16:52:55 +02:00
|
|
|
+libcrypt-routines += crypt_blowfish x86 wrapper
|
2013-07-08 15:10:39 +02:00
|
|
|
+libowcrypt-routines := crypt_gensalt wrapper-gensalt
|
2011-07-19 14:17:47 +02:00
|
|
|
+
|
2013-07-08 15:10:39 +02:00
|
|
|
+tests := cert md5c-test sha256c-test sha512c-test
|
2011-07-19 14:17:47 +02:00
|
|
|
|
2014-09-15 12:37:45 +02:00
|
|
|
ifeq ($(crypt-in-libc),yes)
|
|
|
|
routines += $(libcrypt-routines)
|
|
|
|
Index: glibc-2.19.90/crypt/Versions
|
2012-08-28 14:25:24 +02:00
|
|
|
===================================================================
|
2014-09-15 12:37:45 +02:00
|
|
|
--- glibc-2.19.90.orig/crypt/Versions
|
|
|
|
+++ glibc-2.19.90/crypt/Versions
|
2013-08-06 16:52:55 +02:00
|
|
|
@@ -3,3 +3,8 @@ libcrypt {
|
2011-07-19 14:17:47 +02:00
|
|
|
crypt; crypt_r; encrypt; encrypt_r; fcrypt; setkey; setkey_r;
|
|
|
|
}
|
2013-08-06 16:52:55 +02:00
|
|
|
}
|
2013-07-08 15:10:39 +02:00
|
|
|
+libowcrypt {
|
|
|
|
+ OW_CRYPT_1.0 {
|
|
|
|
+ crypt_gensalt; crypt_gensalt_rn; crypt_gensalt_ra;
|
|
|
|
+ }
|
2013-08-06 16:52:55 +02:00
|
|
|
+}
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/crypt/crypt-entry.c
|
2012-08-28 14:25:24 +02:00
|
|
|
===================================================================
|
2014-09-15 12:37:45 +02:00
|
|
|
--- glibc-2.19.90.orig/crypt/crypt-entry.c
|
|
|
|
+++ glibc-2.19.90/crypt/crypt-entry.c
|
2012-11-13 12:56:09 +01:00
|
|
|
@@ -81,7 +81,7 @@ extern struct crypt_data _ufc_foobar;
|
2011-07-19 14:17:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
char *
|
|
|
|
-__crypt_r (key, salt, data)
|
|
|
|
+__des_crypt_r (key, salt, data)
|
|
|
|
const char *key;
|
|
|
|
const char *salt;
|
|
|
|
struct crypt_data * __restrict data;
|
2012-11-13 12:56:09 +01:00
|
|
|
@@ -155,6 +155,7 @@ __crypt_r (key, salt, data)
|
2011-07-19 14:17:47 +02:00
|
|
|
_ufc_output_conversion_r (res[0], res[1], salt, data);
|
|
|
|
return data->crypt_3_buf;
|
|
|
|
}
|
|
|
|
+#if 0
|
|
|
|
weak_alias (__crypt_r, crypt_r)
|
|
|
|
|
|
|
|
char *
|
2012-11-13 12:56:09 +01:00
|
|
|
@@ -197,3 +198,4 @@ __fcrypt (key, salt)
|
2011-07-19 14:17:47 +02:00
|
|
|
return crypt (key, salt);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
+#endif
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/shlib-versions
|
|
|
|
===================================================================
|
|
|
|
--- glibc-2.19.90.orig/shlib-versions
|
|
|
|
+++ glibc-2.19.90/shlib-versions
|
|
|
|
@@ -93,6 +93,7 @@ sh.*-.*-linux.* ld=ld-linux.so.2 GLIBC_
|
|
|
|
|
|
|
|
# This defines the shared library version numbers we will install.
|
|
|
|
.*-.*-.* libcrypt=1
|
|
|
|
+.*-.*-.* libowcrypt=1
|
|
|
|
|
|
|
|
# The gross patch for programs assuming broken locale implementations.
|
|
|
|
sh.*-.*-.* libBrokenLocale=1 GLIBC_2.2
|
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/aarch64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/aarch64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/alpha/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/alpha/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/arm/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/arm/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/hppa/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/hppa/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/i386/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/i386/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/ia64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/ia64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/m68k/coldfire/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/m68k/coldfire/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/m68k/m680x0/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/m68k/m680x0/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/microblaze/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/microblaze/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/mips/mips32/fpu/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/mips/mips32/fpu/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/mips/mips32/nofpu/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/mips/mips32/nofpu/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/mips/mips64/n32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/mips/mips64/n32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/mips/mips64/n64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
2014-09-15 12:37:45 +02:00
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/mips/mips64/n64/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libowcrypt.abilist
|
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libowcrypt.abilist
|
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/powerpc/powerpc64/libowcrypt-le.abilist
|
2014-03-29 23:02:34 +01:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/powerpc/powerpc64/libowcrypt-le.abilist
|
2014-03-29 23:02:34 +01:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/powerpc/powerpc64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/powerpc/powerpc64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/s390/s390-32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/s390/s390-32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/s390/s390-64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/s390/s390-64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/sh/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/sh/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/sparc/sparc32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/sparc/sparc32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/sparc/sparc64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/sparc/sparc64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/tile/tilepro/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/tile/tilepro/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/x86_64/64/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/x86_64/64/libowcrypt.abilist
|
2013-12-10 18:20:34 +01:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|
2014-09-15 12:37:45 +02:00
|
|
|
Index: glibc-2.19.90/sysdeps/unix/sysv/linux/x86_64/x32/libowcrypt.abilist
|
2013-12-10 18:20:34 +01:00
|
|
|
===================================================================
|
|
|
|
--- /dev/null
|
2014-09-15 12:37:45 +02:00
|
|
|
+++ glibc-2.19.90/sysdeps/unix/sysv/linux/x86_64/x32/libowcrypt.abilist
|
2013-07-08 15:10:39 +02:00
|
|
|
@@ -0,0 +1,5 @@
|
|
|
|
+OW_CRYPT_1.0
|
|
|
|
+ OW_CRYPT_1.0 A
|
|
|
|
+ crypt_gensalt F
|
|
|
|
+ crypt_gensalt_ra F
|
|
|
|
+ crypt_gensalt_rn F
|