[xiph-commits] r13869 - trunk/theora/lib

j at svn.xiph.org j at svn.xiph.org
Fri Sep 21 02:41:31 PDT 2007


Author: j
Date: 2007-09-21 02:41:31 -0700 (Fri, 21 Sep 2007)
New Revision: 13869

Modified:
   trunk/theora/lib/Version_script.in
Log:
according to the link in  https://trac.xiph.org/browser/trunk/theora/lib/Version_script.in?rev=9699
 http://www.gnu.org/software/binutils/manual/ld-2.9.1/html_node/ld_25.html 
the version number in Version_script is not the one defined in configure.ac

this commit exports
 * old functions as libtheora.1.0 (as done in alpha7)
 * and functions added after alpha7 as libtheora.2.0



Modified: trunk/theora/lib/Version_script.in
===================================================================
--- trunk/theora/lib/Version_script.in	2007-09-21 09:19:00 UTC (rev 13868)
+++ trunk/theora/lib/Version_script.in	2007-09-21 09:41:31 UTC (rev 13869)
@@ -5,7 +5,7 @@
 # applications linking to libtheora.
 #
 
- at PACKAGE@.so. at TH_LIB_CURRENT@. at TH_LIB_REVISION@. at TH_LIB_AGE@
+ at PACKAGE@.so.1.0
 {
 	global:
 		theora_version_string;
@@ -44,6 +44,13 @@
 		theora_comment_query_count;
 		theora_comment_clear;
 
+	local:
+		*;
+};
+
+ at PACKAGE@.so.2.0
+{
+	global:
 		th_version_string;
 		th_version_number;
 
@@ -73,4 +80,4 @@
 
 	local:
 		*;
-};
+} @PACKAGE at .so.1.0;



More information about the commits mailing list