diff options
author | Jason Evans <je@fb.com> | 2011-11-02 05:27:41 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2011-11-02 05:27:41 (GMT) |
commit | f576c63f1eb29ce32e930501f65c541ff344e912 (patch) | |
tree | 22d3c78d78487b529efec5ae519ec70ce5e45cd3 /Makefile.in | |
parent | 2bd3cbc5c68bb9b097c382108ae1aed793e08062 (diff) | |
download | jemalloc-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.in | 5 |
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 |