diff -Naur libelf-0.8.13/aclocal.m4 libelf-0.8.13-haiku/aclocal.m4
|
old
|
new
|
|
| 235 | 235 | AC_REQUIRE([AC_PROG_CC]) |
| 236 | 236 | AC_PATH_PROG(LD, ld, ld) |
| 237 | 237 | case "$host" in |
| 238 | | *-linux*|*-gnu*) |
| | 238 | *-linux*|*-gnu*|*-haiku*) |
| 239 | 239 | if test "$GCC" = yes; then |
| 240 | 240 | mr_TARGET_ELF |
| 241 | 241 | if test "$mr_cv_target_elf" = yes; then |
| … |
… |
|
| 248 | 248 | SONAME_SFX='.so.$(MAJOR)' |
| 249 | 249 | LINK_SHLIB='$(CC) -shared -Wl,-soname,$(SONAME)' |
| 250 | 250 | INSTALL_SHLIB='$(INSTALL_PROGRAM)' |
| 251 | | DEPSHLIBS='-lc' |
| | 251 | case "$host" in |
| | 252 | *-linux*|*-gnu*) |
| | 253 | DEPSHLIBS='-lc' |
| | 254 | ;; |
| | 255 | esac |
| 252 | 256 | else |
| 253 | 257 | AC_MSG_WARN([shared libraries not supported for $host]) |
| 254 | 258 | mr_enable_shared=no |