relocatable.m4 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # relocatable.m4 serial 14
  2. dnl Copyright (C) 2003, 2005-2007, 2009 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. dnl From Bruno Haible.
  7. dnl gl_RELOCATABLE([RELOCWRAPPER-DIR])
  8. dnl ----------------------------------------------------------
  9. dnl Support for relocatable programs.
  10. dnl Supply RELOCWRAPPER-DIR as the directory where relocwrapper.c may be found.
  11. AC_DEFUN([gl_RELOCATABLE],
  12. [
  13. AC_REQUIRE([gl_RELOCATABLE_BODY])
  14. gl_RELOCATABLE_LIBRARY
  15. if test $RELOCATABLE = yes; then
  16. AC_LIBOBJ([progreloc])
  17. fi
  18. : ${RELOCATABLE_CONFIG_H_DIR='$(top_builddir)'}
  19. RELOCATABLE_SRC_DIR="\$(top_srcdir)/$gl_source_base"
  20. RELOCATABLE_BUILD_DIR="\$(top_builddir)/$gl_source_base"
  21. ])
  22. dnl The guts of gl_RELOCATABLE. Needs to be expanded only once.
  23. AC_DEFUN([gl_RELOCATABLE_BODY],
  24. [
  25. AC_REQUIRE([AC_PROG_INSTALL])
  26. dnl This AC_BEFORE invocation leads to unjustified autoconf warnings
  27. dnl when gl_RELOCATABLE_BODY is invoked more than once.
  28. dnl We need this AC_BEFORE because AC_PROG_INSTALL is documented to
  29. dnl overwrite earlier settings of INSTALL and INSTALL_PROGRAM (even
  30. dnl though in autoconf-2.52..2.60 it doesn't do so), but we want this
  31. dnl macro's setting of INSTALL_PROGRAM to persist.
  32. AC_BEFORE([AC_PROG_INSTALL],[gl_RELOCATABLE_BODY])
  33. AC_REQUIRE([AC_LIB_LIBPATH])
  34. AC_REQUIRE([gl_RELOCATABLE_LIBRARY_BODY])
  35. is_noop=no
  36. use_elf_origin_trick=no
  37. if test $RELOCATABLE = yes; then
  38. # --enable-relocatable implies --disable-rpath
  39. enable_rpath=no
  40. AC_CHECK_HEADERS([mach-o/dyld.h])
  41. AC_CHECK_FUNCS([_NSGetExecutablePath])
  42. case "$host_os" in
  43. mingw*) is_noop=yes ;;
  44. linux*) use_elf_origin_trick=yes ;;
  45. esac
  46. if test $is_noop = yes; then
  47. RELOCATABLE_LDFLAGS=:
  48. AC_SUBST([RELOCATABLE_LDFLAGS])
  49. else
  50. if test $use_elf_origin_trick = yes; then
  51. dnl Use the dynamic linker's support for relocatable programs.
  52. case "$ac_aux_dir" in
  53. /*) reloc_ldflags="$ac_aux_dir/reloc-ldflags" ;;
  54. *) reloc_ldflags="\$(top_builddir)/$ac_aux_dir/reloc-ldflags" ;;
  55. esac
  56. RELOCATABLE_LDFLAGS="\"$reloc_ldflags\" \"\$(host)\" \"\$(RELOCATABLE_LIBRARY_PATH)\""
  57. AC_SUBST([RELOCATABLE_LDFLAGS])
  58. else
  59. dnl Unfortunately we cannot define INSTALL_PROGRAM to a command
  60. dnl consisting of more than one word - libtool doesn't support this.
  61. dnl So we abuse the INSTALL_PROGRAM_ENV hook, originally meant for the
  62. dnl 'install-strip' target.
  63. INSTALL_PROGRAM_ENV="RELOC_LIBRARY_PATH_VAR=\"$shlibpath_var\" RELOC_LIBRARY_PATH_VALUE=\"\$(RELOCATABLE_LIBRARY_PATH)\" RELOC_PREFIX=\"\$(prefix)\" RELOC_DESTDIR=\"\$(DESTDIR)\" RELOC_COMPILE_COMMAND=\"\$(CC) \$(CPPFLAGS) \$(CFLAGS) \$(LDFLAGS)\" RELOC_SRCDIR=\"\$(RELOCATABLE_SRC_DIR)\" RELOC_BUILDDIR=\"\$(RELOCATABLE_BUILD_DIR)\" RELOC_CONFIG_H_DIR=\"\$(RELOCATABLE_CONFIG_H_DIR)\" RELOC_EXEEXT=\"\$(EXEEXT)\" RELOC_STRIP_PROG=\"\$(RELOCATABLE_STRIP)\" RELOC_INSTALL_PROG=\"$INSTALL_PROGRAM\""
  64. AC_SUBST([INSTALL_PROGRAM_ENV])
  65. case "$ac_aux_dir" in
  66. /*) INSTALL_PROGRAM="$ac_aux_dir/install-reloc" ;;
  67. *) INSTALL_PROGRAM="\$(top_builddir)/$ac_aux_dir/install-reloc" ;;
  68. esac
  69. fi
  70. fi
  71. fi
  72. AM_CONDITIONAL([RELOCATABLE_VIA_LD],
  73. [test $is_noop = yes || test $use_elf_origin_trick = yes])
  74. dnl RELOCATABLE_LIBRARY_PATH can be set in configure.ac. Default is empty.
  75. AC_SUBST([RELOCATABLE_LIBRARY_PATH])
  76. AC_SUBST([RELOCATABLE_CONFIG_H_DIR])
  77. AC_SUBST([RELOCATABLE_SRC_DIR])
  78. AC_SUBST([RELOCATABLE_BUILD_DIR])
  79. ])
  80. dnl Determine the platform dependent parameters needed to use relocatability:
  81. dnl shlibpath_var.
  82. AC_DEFUN([AC_LIB_LIBPATH],
  83. [
  84. AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD
  85. AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host
  86. AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir
  87. AC_CACHE_CHECK([for shared library path variable], [acl_cv_libpath], [
  88. LD="$LD" \
  89. ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.libpath" "$host" > conftest.sh
  90. . ./conftest.sh
  91. rm -f ./conftest.sh
  92. acl_cv_libpath=${acl_cv_shlibpath_var:-none}
  93. ])
  94. shlibpath_var="$acl_cv_shlibpath_var"
  95. ])