summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2011-11-02 05:27:41 (GMT)
committerJason Evans <je@fb.com>2011-11-02 05:27:41 (GMT)
commitf576c63f1eb29ce32e930501f65c541ff344e912 (patch)
tree22d3c78d78487b529efec5ae519ec70ce5e45cd3 /Makefile.in
parent2bd3cbc5c68bb9b097c382108ae1aed793e08062 (diff)
downloadjemalloc-f576c63f1eb29ce32e930501f65c541ff344e912.zip
jemalloc-f576c63f1eb29ce32e930501f65c541ff344e912.tar.gz
jemalloc-f576c63f1eb29ce32e930501f65c541ff344e912.tar.bz2
Refactor SO and REV make variables.
Refactor the SO and REV such that they are set via autoconf variables, @so@ and @rev@. These variables are both needed by the jemalloc.sh script, so this unifies their definitions.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 6f66e4d..8298389 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -27,14 +27,13 @@ endif
LDFLAGS := @LDFLAGS@
LIBS := @LIBS@
RPATH_EXTRA := @RPATH_EXTRA@
+SO := @so@
ifeq (macho, @abi@)
-SO := dylib
WL_SONAME := dylib_install_name
else
-SO := so
WL_SONAME := soname
endif
-REV := 1
+REV := @rev@
ifeq (macho, @abi@)
TEST_LIBRARY_PATH := DYLD_FALLBACK_LIBRARY_PATH=@objroot@lib
else