From 7abda3fb9d10ec5c8b2f61508cd1362d324e3a8a Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 23 May 2008 11:52:31 +0200 Subject: build: add symbol versioning when we build with gnu ld There's --enable-symbol-versioning=no to disable it. metze (cherry picked from commit cb5492978b6b157f529806afb2f5fc6202888129) (This used to be commit a739652d94300881479262648592223536fc8eec) --- source3/exports/libsmbclient.version.syms | 8 ++++++++ source3/exports/libsmbsharemodes.version.syms | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 source3/exports/libsmbclient.version.syms create mode 100644 source3/exports/libsmbsharemodes.version.syms (limited to 'source3/exports') diff --git a/source3/exports/libsmbclient.version.syms b/source3/exports/libsmbclient.version.syms new file mode 100644 index 0000000000..6afdbcbadf --- /dev/null +++ b/source3/exports/libsmbclient.version.syms @@ -0,0 +1,8 @@ +# +# we use no version symbols for libsmbclient +# to be compatible with 3.0.x +# +{ + global: smbc_*; + local: *; +}; diff --git a/source3/exports/libsmbsharemodes.version.syms b/source3/exports/libsmbsharemodes.version.syms new file mode 100644 index 0000000000..cf3f0336e9 --- /dev/null +++ b/source3/exports/libsmbsharemodes.version.syms @@ -0,0 +1,7 @@ +# +# we use no version symbols for libsmbsharemodes +# to be compatible with 3.0.x +# +{ + global: *; +}; -- cgit