diff options
author | des <des@FreeBSD.org> | 2008-02-06 20:30:48 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2008-02-06 20:30:48 +0000 |
commit | 03dc3be400b789bf67c284837e606180340cdbc3 (patch) | |
tree | 3f8457c92aab0ef9ce434e6363c03cf1a7a56a94 /lib/libkse | |
parent | 3086491df63eafa2431091ba0eba1db5b28549ae (diff) | |
download | FreeBSD-src-03dc3be400b789bf67c284837e606180340cdbc3.zip FreeBSD-src-03dc3be400b789bf67c284837e606180340cdbc3.tar.gz |
Give libkse the same treatment as libthr re. symbol versioning.
MFC after: 2 weeks
Diffstat (limited to 'lib/libkse')
-rw-r--r-- | lib/libkse/Makefile | 3 | ||||
-rw-r--r-- | lib/libkse/kse.map | 7 |
2 files changed, 2 insertions, 8 deletions
diff --git a/lib/libkse/Makefile b/lib/libkse/Makefile index 7acf612..5400e17 100644 --- a/lib/libkse/Makefile +++ b/lib/libkse/Makefile @@ -41,7 +41,8 @@ WARNS?=3 # Enable extra internal consistancy checks. CFLAGS+=-D_PTHREADS_INVARIANTS -Wall -VERSION_MAP=${.CURDIR}/kse.map +VERSION_DEF=${.CURDIR}/../libc/Versions.def +SYMBOLS_MAP=${.CURDIR}/kse.map PRECIOUSLIB= diff --git a/lib/libkse/kse.map b/lib/libkse/kse.map index 0121a9d..94f6dd9 100644 --- a/lib/libkse/kse.map +++ b/lib/libkse/kse.map @@ -4,7 +4,6 @@ * Use the same naming scheme as libc. */ FBSD_1.0 { -global: __error; accept; aio_suspend; @@ -158,8 +157,6 @@ global: waitpid; write; writev; -local: - *; }; /* @@ -167,7 +164,6 @@ local: * These are not part of our application ABI. */ FBSDprivate_1.0 { -global: ___creat; __accept; __close; @@ -363,7 +359,4 @@ global: _thread_size_key; _thread_state_running; _thread_state_zoombie; - -local: - *; }; |