xref: /minix3/lib/libc/shlib_version (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc#	$NetBSD: shlib_version,v 1.258 2015/01/16 18:45:01 christos Exp $
2f14fb602SLionel Sambuc#	Remember to update distrib/sets/lists/base/shl.* when changing
3f14fb602SLionel Sambuc#
4f14fb602SLionel Sambuc# things we wish to do on next major version bump:
584d9c625SLionel Sambuc# - remove code under BUILD_LEGACY
684d9c625SLionel Sambuc# - remove BCS code in citrus and replace it with use of the C locale
7f14fb602SLionel Sambuc# - libc/net/rcmd.c: make __ivaliduser() and __ivaliduser_sa() static
8f14fb602SLionel Sambuc# - libc/net: resolver update to BIND8/9?
9f14fb602SLionel Sambuc# - md2, md4, md5, rmd160 & sha1 functions should take the same arguments AFAP
10f14fb602SLionel Sambuc# - Crypto hashes have name overlap with libcrypto, rename them
11f14fb602SLionel Sambuc# - libc/gen/assert.c: __{diag,}assert13() -> __{diag,}assert()
1284d9c625SLionel Sambuc# - lib/libc/net/iso_addr.c: remove
13f14fb602SLionel Sambuc# - libc/gen/times.c: remove; __times13() -> times()
14f14fb602SLionel Sambuc# - libc/gen/timezone.c: remove; __timezone13 -> timezone
15f14fb602SLionel Sambuc# - libc/net/getaddrinfo.c, netdb.h: remove __ai_pad0
16f14fb602SLionel Sambuc# - libc/gen/utmpx.c, utmpx.h: remove lastlogxname, __getlastlogx13 -> getlastlogx
17f14fb602SLionel Sambuc# - libc/gen/utmpx.c, utmpx.h: add expansion space to struct lastlogx
18f14fb602SLionel Sambuc# - infinity{,f,l}.c, math.h: __infinity -> __huge_val
19f14fb602SLionel Sambuc# - libc/gen/is{inf,nan}d_ieee754.c: remove is{inf,nan} aliases
20f14fb602SLionel Sambuc# - libc/arch/vax/gen/is{inf,nan}.c: remove
21f14fb602SLionel Sambuc# - libc/db/hash/ndbm.c: remove; __ndbm13 -> ndbm
22f14fb602SLionel Sambuc# - libc/net/getnet{ent,namadr}.c, netdb.h: remove __n_pad0
23f14fb602SLionel Sambuc# - libc/stdio: make _file an int, hide struct FILE, stdin, stdout, stderr impls
24f14fb602SLionel Sambuc# - libc/stdio: make fileno() not a macro
25f14fb602SLionel Sambuc# - libc/stdio: make stdio macro users depend on some library symbol
26f14fb602SLionel Sambuc# - remove frexp, ldexp, modf: they belong to libm.
27f14fb602SLionel Sambuc# - make sure we can support thread local [on arm don't use r9 for example,
28f14fb602SLionel Sambuc#   consider other risc architectures: mips, powerpc, sparc, etc]
29f14fb602SLionel Sambuc# - rename __libc_mutex_lock and similar back to pthread_mutex_lock.
30f14fb602SLionel Sambuc#   the functions are used by third party code without prototypes.
31f14fb602SLionel Sambuc#   for example in assembler code.
32f14fb602SLionel Sambuc# - kill sigcontext: never request version 0 or 1 signal trampoline.
33f14fb602SLionel Sambuc#   always request version 2 trampoline. (on vax, 3).
34f14fb602SLionel Sambuc# - remove gets(); it is finally dead in c11.
35*0a6a1f1dSLionel Sambuc#   (note: maybe it still needs to be kept in a compat lib; but not in libc)
36f14fb602SLionel Sambuc# - make __cerror (spelled CERROR) hidden again
37f14fb602SLionel Sambuc# - remove ruserok() and friends to libcompat (or entirely)
3884d9c625SLionel Sambuc# - remove alloca fallback and expect compiler to provide a builtin version.
3984d9c625SLionel Sambuc# - switch to DT_INIT_ARRAY on all platforms
4084d9c625SLionel Sambuc# - consolidate ownership with crt0.o and avoid common symbols
41*0a6a1f1dSLionel Sambuc# - redo stdin/stdout/stderr to not require copy relocations
42*0a6a1f1dSLionel Sambuc# - move gethostbyname to a compat library
43*0a6a1f1dSLionel Sambuc# - remove arc4random(3) API
4484d9c625SLionel Sambucmajor=12
45*0a6a1f1dSLionel Sambucminor=197
46