Differences From Artifact [3e6f9bdfdf]:
- File
m4/buildsys.m4
— part of check-in
[5e8c4f49fc]
at
2014-02-24 02:55:15
on branch trunk
— Do not automatically call AC_CONFIG_COMMANDS_*
This causes problems with some versions of autoconf / m4. Moving it to a
function called BUILDSYS_INIT and calling that fixes it. (user: js, size: 7177) [annotate] [blame] [check-ins using]
To Artifact [8914ce1316]:
- File
m4/buildsys.m4
— part of check-in
[f23a2d808f]
at
2014-05-15 01:09:37
on branch trunk
— Use @rpath/foo.dylib as install_name
This makes it behave like on ELF systems where rpath is used to tell the
linker where to look for libraries. (user: js, size: 7075) [annotate] [blame] [check-ins using]
︙ | |||
116 117 118 119 120 121 122 | 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | - + - + | AC_DEFUN([BUILDSYS_SHARED_LIB], [ AC_REQUIRE([AC_CANONICAL_HOST]) AC_MSG_CHECKING(for shared library system) case "$host_os" in darwin*) AC_MSG_RESULT(Darwin) LIB_CFLAGS='-fPIC -DPIC' |
︙ |