Jörg Thalheim
5526683ad3
This is important when using tooling like BEAR to generate compilation database since the used glibc version needs to match for LD_PRELOAD to work. It might be also beneficial when building on systems other than NixOS with nix develop since /bin/sh might be not bash (which is what all nix devs use for testing). This fix is not perfect because Makefile.config.in itself is also build with make but strictly better than the status quo.
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
AR = @AR@
|
|
BDW_GC_LIBS = @BDW_GC_LIBS@
|
|
BOOST_LDFLAGS = @BOOST_LDFLAGS@
|
|
BUILD_SHARED_LIBS = @BUILD_SHARED_LIBS@
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
CXX = @CXX@
|
|
CXXFLAGS = @CXXFLAGS@
|
|
EDITLINE_LIBS = @EDITLINE_LIBS@
|
|
ENABLE_S3 = @ENABLE_S3@
|
|
GTEST_LIBS = @GTEST_LIBS@
|
|
HAVE_SECCOMP = @HAVE_SECCOMP@
|
|
HAVE_SODIUM = @HAVE_SODIUM@
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBARCHIVE_LIBS = @LIBARCHIVE_LIBS@
|
|
LIBBROTLI_LIBS = @LIBBROTLI_LIBS@
|
|
LIBCURL_LIBS = @LIBCURL_LIBS@
|
|
LIBLZMA_LIBS = @LIBLZMA_LIBS@
|
|
OPENSSL_LIBS = @OPENSSL_LIBS@
|
|
PACKAGE_NAME = @PACKAGE_NAME@
|
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
SHELL = @bash@
|
|
SODIUM_LIBS = @SODIUM_LIBS@
|
|
SQLITE3_LIBS = @SQLITE3_LIBS@
|
|
bash = @bash@
|
|
bindir = @bindir@
|
|
datadir = @datadir@
|
|
datarootdir = @datarootdir@
|
|
doc_generate = @doc_generate@
|
|
docdir = @docdir@
|
|
exec_prefix = @exec_prefix@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
libexecdir = @libexecdir@
|
|
localstatedir = @localstatedir@
|
|
lsof = @lsof@
|
|
mandir = @mandir@
|
|
pkglibdir = $(libdir)/$(PACKAGE_NAME)
|
|
prefix = @prefix@
|
|
sandbox_shell = @sandbox_shell@
|
|
storedir = @storedir@
|
|
sysconfdir = @sysconfdir@
|
|
system = @system@
|
|
xmllint = @xmllint@
|
|
xsltproc = @xsltproc@
|