From 8edf48bbf716c3a6b7919c74aa5ed954d9cce48d Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 6 Dec 2007 19:15:30 +0100 Subject: For the fun of it, build netapi.so|.a. Guenther (This used to be commit 8cbc6bdede9e8fc423488c7632546c548234cc0c) --- source3/Makefile.in | 10 ++++++++++ source3/exports/netapi.syms | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 source3/exports/netapi.syms (limited to 'source3') diff --git a/source3/Makefile.in b/source3/Makefile.in index 599b0501a1..63a83befa8 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1353,6 +1353,16 @@ bin/libaddns.a: $(BINARY_PREREQS) $(LIBADDNS_OBJ) @echo Linking non-shared library $@ @-$(AR) -rc $@ $(LIBADDNS_OBJ) +bin/netapi.@SHLIBEXT@: $(BINARY_PREREQS) $(NETAPI_OBJ) + @echo Linking shared library $@ + @$(SHLD_DSO) $(NETAPI_OBJ) $(LIBS) \ + $(LDAP_LIBS) $(KRB5LIBS) $(NSCD_LIBS) \ + @SONAMEFLAG@`basename $@`.$(SONAME_VER) + +bin/netapi.a: $(BINARY_PREREQS) $(NETAPI_OBJ) + @echo Linking non-shared library $@ + @-$(AR) -rc $@ $(NETAPI_OBJ) + bin/libsmbclient.@SHLIBEXT@: $(BINARY_PREREQS) $(LIBSMBCLIENT_OBJ) @echo Linking shared library $@ @$(SHLD_DSO) $(LIBSMBCLIENT_OBJ) $(LIBS) \ diff --git a/source3/exports/netapi.syms b/source3/exports/netapi.syms new file mode 100644 index 0000000000..eb34bfc012 --- /dev/null +++ b/source3/exports/netapi.syms @@ -0,0 +1,3 @@ +{ + global: *; +}; -- cgit