23 lines
828 B
Diff
23 lines
828 B
Diff
From b4d418bf3f78748d84e3cfb110833443eef34284 Mon Sep 17 00:00:00 2001
|
|
From: Justin Bronder <jsbronder@cold-front.org>
|
|
Date: Thu, 25 Aug 2022 17:22:20 -0400
|
|
Subject: [PATCH] make: set soname on liblmdb
|
|
|
|
---
|
|
libraries/liblmdb/Makefile | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/libraries/liblmdb/Makefile b/libraries/liblmdb/Makefile
|
|
index 1ec74e6..ea08cd6 100644
|
|
--- a/libraries/liblmdb/Makefile
|
|
+++ b/libraries/liblmdb/Makefile
|
|
@@ -66,7 +66,7 @@ liblmdb.a: mdb.o midl.o
|
|
|
|
liblmdb$(SOEXT): mdb.lo midl.lo
|
|
# $(CC) $(LDFLAGS) -pthread -shared -Wl,-Bsymbolic -o $@ mdb.o midl.o $(SOLIBS)
|
|
- $(CC) $(LDFLAGS) -pthread -shared -o $@ mdb.lo midl.lo $(SOLIBS)
|
|
+ $(CC) $(LDFLAGS) -pthread -shared -Wl,-soname,$@ -o $@ mdb.lo midl.lo $(SOLIBS)
|
|
|
|
mdb_stat: mdb_stat.o liblmdb.a
|
|
mdb_copy: mdb_copy.o liblmdb.a
|