svn commit: r193910 - stable/7/lib/libkse

Dag-Erling Smorgrav des at FreeBSD.org
Wed Jun 10 12:51:59 UTC 2009


Author: des
Date: Wed Jun 10 12:51:58 2009
New Revision: 193910
URL: http://svn.freebsd.org/changeset/base/193910

Log:
  merge r176055, r176056: use libc's version definition file.

Modified:
  stable/7/lib/libkse/   (props changed)
  stable/7/lib/libkse/Makefile
  stable/7/lib/libkse/kse.map

Modified: stable/7/lib/libkse/Makefile
==============================================================================
--- stable/7/lib/libkse/Makefile	Wed Jun 10 12:47:54 2009	(r193909)
+++ stable/7/lib/libkse/Makefile	Wed Jun 10 12:51:58 2009	(r193910)
@@ -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
+SYMBOL_MAPS=${.CURDIR}/kse.map
 
 PRECIOUSLIB=
 

Modified: stable/7/lib/libkse/kse.map
==============================================================================
--- stable/7/lib/libkse/kse.map	Wed Jun 10 12:47:54 2009	(r193909)
+++ stable/7/lib/libkse/kse.map	Wed Jun 10 12:51:58 2009	(r193910)
@@ -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:
-	*;
 };


More information about the svn-src-stable-7 mailing list