diff options
author | Howard Chu <hyc@symas.com> | 2018-02-18 21:05:56 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2018-02-18 21:56:55 +0000 |
commit | b372ec43750da5df98fc23d8d6815626db139756 (patch) | |
tree | 46b47322e3234826abce25b868a1c48ec2b4ff49 /external/db_drivers/liblmdb/Makefile | |
parent | Merge pull request #3275 (diff) | |
download | monero-b372ec43750da5df98fc23d8d6815626db139756.tar.xz |
ITS#8324 More for Win32 NTDLL junk
Use GetProcAddress at runtime, avoid buildtime NTDLL link issues
Diffstat (limited to 'external/db_drivers/liblmdb/Makefile')
-rw-r--r-- | external/db_drivers/liblmdb/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/external/db_drivers/liblmdb/Makefile b/external/db_drivers/liblmdb/Makefile index 42a5f034a..186168038 100644 --- a/external/db_drivers/liblmdb/Makefile +++ b/external/db_drivers/liblmdb/Makefile @@ -24,8 +24,8 @@ W = -W -Wall -Wno-unused-parameter -Wbad-function-cast -Wuninitialized THREADS = -pthread OPT = -O2 -g CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS) -LDLIBS = # -lntdll # Windows needs ntdll -SOLIBS = # -lntdll +LDLIBS = +SOLIBS = prefix = /usr/local exec_prefix = $(prefix) bindir = $(exec_prefix)/bin |