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