summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@intel.com>2011-06-16 18:11:18 +0200
committerPatrick Ohly <patrick.ohly@intel.com>2011-06-16 18:11:18 +0200
commitf57460b96721d71f6460ab60b86c88124d250c88 (patch)
treedf8f40eddaf8e4a16e95743c1a955c4f46cd8f25
parent971cc942c40f22bfc40f83857c88b14cd313332c (diff)
libsmltk.so: export xltDecInit/xltDecTerminate/xltDecNext
These functions are used by the XML DevInf parser and thus must be exported by libsmltk.so, otherwise linking fails. Perhaps a different API should be used instead. Exporting these functions seemed like the simpler solution for the moment.
-rw-r--r--src/smltk-linker.map3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/smltk-linker.map b/src/smltk-linker.map
index 051d30a..16e1acd 100644
--- a/src/smltk-linker.map
+++ b/src/smltk-linker.map
@@ -1,6 +1,9 @@
VER_1.0 {
global:
sml*;
+ xltDecInit;
+ xltDecTerminate;
+ xltDecNext;
local:
*;
};