You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
From 0cc72f0d807a71e0fdc67d04e0b86b98282db644 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Dan=20Hor=C3=A1k?= <dan@danny.cz>
|
|
Date: Wed, 29 Jan 2014 14:27:27 +0100
|
|
Subject: [PATCH] build the library as a module
|
|
|
|
---
|
|
Makefile.am | 4 ++++
|
|
Makefile.in | 2 ++
|
|
2 files changed, 6 insertions(+)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index a9a040d..bddc86f 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -69,6 +69,10 @@ libzfcphbaapi_la_LDFLAGS = \
|
|
-Wl,-init,_initvlib,-fini,_finivlib \
|
|
-export-symbols $(SYMFILE)
|
|
|
|
+if VENDORLIB
|
|
+libzfcphbaapi_la_LDFLAGS += -module -avoid-version -release $(VERSION)
|
|
+endif
|
|
+
|
|
bin_PROGRAMS = zfcp_ping zfcp_show
|
|
|
|
zfcp_ping_SOURCES = fc_tools/zfcp_ping.c
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index f459693..b9c7712 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -407,6 +407,8 @@ libzfcphbaapi_la_LDFLAGS = \
|
|
-Wl,-init,_initvlib,-fini,_finivlib \
|
|
-export-symbols $(SYMFILE)
|
|
|
|
+@VENDORLIB_TRUE@libzfcphbaapi_la_LDFLAGS += -module -avoid-version -release $(VERSION)
|
|
+
|
|
zfcp_ping_SOURCES = fc_tools/zfcp_ping.c
|
|
zfcp_show_SOURCES = fc_tools/zfcp_show.c
|
|
@VENDORLIB_FALSE@zfcp_ping_LDADD = -lzfcphbaapi
|
|
--
|
|
1.8.5.3
|
|
|