annotate m4/relocatable.m4 @ 40206:770a5696761e

relocatable-prog: Use wrapper-free installation on Mac OS X, take 2. This approach supports relocatable installation of shared libraries which depend on other shared libraries from the same package. * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Determine use_macos_tools. If use_macos_tools is true, use reloc-ldflags and set LIBTOOL to be a wrapper around the original LIBTOOL. * build-aux/reloc-ldflags: Add support for Mac OS X, which uses the token '@loader_path' instead of '$ORIGIN'. * build-aux/libtool-reloc: New file. * modules/relocatable-prog (Files): Add it. * doc/relocatable-maint.texi (Supporting Relocation): Update to match the recent changes. Document the need to set the *_LDFLAGS of libraries. RELOCATABLE_LIBRARY_PATH and RELOCATABLE_CONFIG_H_DIR should be set in Makefile.am, not in configure.ac.
author Bruno Haible <bruno@clisp.org>
date Mon, 04 Mar 2019 17:25:09 +0100
parents 9e8fb35d4032
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
1 # relocatable.m4 serial 23
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
2 dnl Copyright (C) 2003, 2005-2007, 2009-2019 Free Software Foundation, Inc.
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 dnl This file is free software; the Free Software Foundation
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 dnl gives unlimited permission to copy and/or distribute it,
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 dnl with or without modifications, as long as this notice is preserved.
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 dnl From Bruno Haible.
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
9 dnl gl_RELOCATABLE([RELOCWRAPPER-DIR])
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
10 dnl ----------------------------------------------------------
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
11 dnl Support for relocatable programs.
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
12 dnl Supply RELOCWRAPPER-DIR as the directory where relocwrapper.c may be found.
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
13 AC_DEFUN([gl_RELOCATABLE],
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 [
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
15 AC_REQUIRE([gl_RELOCATABLE_BODY])
8326
f5958c21416d Compile relocatable.c only if --enable-relocatable was specified.
Bruno Haible <bruno@clisp.org>
parents: 8301
diff changeset
16 gl_RELOCATABLE_LIBRARY
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
17 : ${RELOCATABLE_CONFIG_H_DIR='$(top_builddir)'}
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
18 RELOCATABLE_SRC_DIR="\$(top_srcdir)/$gl_source_base"
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
19 RELOCATABLE_BUILD_DIR="\$(top_builddir)/$gl_source_base"
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 ])
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
21 dnl The guts of gl_RELOCATABLE. Needs to be expanded only once.
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
22 AC_DEFUN([gl_RELOCATABLE_BODY],
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 [
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 AC_REQUIRE([AC_PROG_INSTALL])
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
25
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 dnl This AC_BEFORE invocation leads to unjustified autoconf warnings
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
27 dnl when gl_RELOCATABLE_BODY is invoked more than once.
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
28 dnl
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 dnl We need this AC_BEFORE because AC_PROG_INSTALL is documented to
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 dnl overwrite earlier settings of INSTALL and INSTALL_PROGRAM (even
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 dnl though in autoconf-2.52..2.60 it doesn't do so), but we want this
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 dnl macro's setting of INSTALL_PROGRAM to persist.
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
33 dnl Arghh: AC_BEFORE does not work in this setting :-(
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
34 dnl AC_BEFORE([AC_PROG_INSTALL],[gl_RELOCATABLE_BODY])
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
35 dnl
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
36 dnl LT_INIT sets LIBTOOL, but we want this macro's setting of LIBTOOL to
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
37 dnl persist.
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
38 dnl Arghh: AC_BEFORE does not work in this setting :-(
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
39 dnl AC_BEFORE([LT_INIT],[gl_RELOCATABLE_BODY])
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
40
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 AC_REQUIRE([AC_LIB_LIBPATH])
8326
f5958c21416d Compile relocatable.c only if --enable-relocatable was specified.
Bruno Haible <bruno@clisp.org>
parents: 8301
diff changeset
42 AC_REQUIRE([gl_RELOCATABLE_LIBRARY_BODY])
18985
89722d6723c5 Make sure $host and $host_os are defined when used.
Bruno Haible <bruno@clisp.org>
parents: 18626
diff changeset
43 AC_REQUIRE([AC_CANONICAL_HOST])
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
44 is_noop=no
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
45 use_elf_origin_trick=no
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
46 use_macos_tools=no
13421
5dc27513d127 relocatable: Make it easier to test whether to install wrappers.
Bruno Haible <bruno@clisp.org>
parents: 13247
diff changeset
47 use_wrapper=no
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
48 if test $RELOCATABLE = yes; then
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
49 # --enable-relocatable implies --disable-rpath
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
50 enable_rpath=no
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
51 AC_CHECK_HEADERS([mach-o/dyld.h])
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
52 AC_CHECK_FUNCS([_NSGetExecutablePath])
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
53 case "$host_os" in
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
54 mingw*) is_noop=yes ;;
40190
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
55 # For the platforms that support $ORIGIN, see
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
56 # <https://lekensteyn.nl/rpath.html>.
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
57 # glibc systems, Linux with musl libc: yes. Android: no.
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
58 linux*-android*) ;;
16809
c73f5acae6b1 relocatable-prog: Enable ELF ORIGIN trick also on GNU/kFreeBSD.
Bruno Haible <bruno@clisp.org>
parents: 16201
diff changeset
59 linux* | kfreebsd*) use_elf_origin_trick=yes ;;
40192
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
60 # Hurd: <http://lists.gnu.org/archive/html/bug-hurd/2019-02/msg00049.html>
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
61 # only after the glibc commit from 2018-01-08
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
62 # <https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=311ba8dc4416467947eff2ab327854f124226309>
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
63 gnu*)
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
64 # Test for a glibc version >= 2.27.
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
65 AC_CHECK_FUNCS([copy_file_range])
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
66 if test $ac_cv_func_copy_file_range = yes; then
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
67 use_elf_origin_trick=yes
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
68 fi
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
69 ;;
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
70 changequote(,)dnl
40190
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
71 # FreeBSD >= 7.3, DragonFly >= 3.0: yes.
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
72 freebsd | freebsd[1-7] | freebsd[1-6].* | freebsd7.[0-2]) ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
73 dragonfly | dragonfly[1-2] | dragonfly[1-2].*) ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
74 freebsd* | dragonfly*) use_elf_origin_trick=yes ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
75 # NetBSD >= 8.0: yes.
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
76 netbsd | netbsd[1-7] | netbsd[1-7].*) ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
77 netbsdelf | netbsdelf[1-7] | netbsdelf[1-7].*) ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
78 netbsd*) use_elf_origin_trick=yes ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
79 # OpenBSD >= 5.4: yes.
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
80 openbsd | openbsd[1-5] | openbsd[1-4].* | openbsd5.[0-3]) ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
81 openbsd*) use_elf_origin_trick=yes ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
82 # Solaris >= 10: yes.
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
83 solaris | solaris2.[1-9] | solaris2.[1-9].*) ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
84 solaris*) use_elf_origin_trick=yes ;;
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
85 # Haiku: yes.
ef116535bf1a relocatable-prog: Use $ORIGIN trick on more platforms.
Bruno Haible <bruno@clisp.org>
parents: 40057
diff changeset
86 haiku*) use_elf_origin_trick=yes ;;
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
87 # On Mac OS X 10.4 or newer, use Mac OS X tools. See
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
88 # <https://wincent.com/wiki/@executable_path,_@load_path_and_@rpath>.
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
89 darwin | darwin[1-7].*) ;;
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
90 darwin*) use_macos_tools=yes ;;
40192
cd38408f509a relocatable-prog: Use $ORIGIN trick also on GNU/Hurd.
Bruno Haible <bruno@clisp.org>
parents: 40190
diff changeset
91 changequote([,])dnl
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
92 esac
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
93 if test $is_noop = yes; then
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
94 RELOCATABLE_LDFLAGS=:
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
95 AC_SUBST([RELOCATABLE_LDFLAGS])
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
96 else
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
97 if test $use_elf_origin_trick = yes || test $use_macos_tools = yes; then
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
98 dnl Use the dynamic linker's support for relocatable programs.
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
99 case "$ac_aux_dir" in
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
100 /*) reloc_ldflags="$ac_aux_dir/reloc-ldflags" ;;
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
101 *) reloc_ldflags="\$(top_builddir)/$ac_aux_dir/reloc-ldflags" ;;
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
102 esac
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
103 RELOCATABLE_LDFLAGS="\"$reloc_ldflags\" \"\$(host)\" \"\$(RELOCATABLE_LIBRARY_PATH)\""
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
104 AC_SUBST([RELOCATABLE_LDFLAGS])
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
105 if test $use_macos_tools = yes; then
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
106 dnl Use a libtool wrapper that uses Mac OS X tools.
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
107 case "$ac_aux_dir" in
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
108 /*) LIBTOOL="${CONFIG_SHELL-$SHELL} $ac_aux_dir/libtool-reloc $LIBTOOL" ;;
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
109 *) LIBTOOL="${CONFIG_SHELL-$SHELL} \$(top_builddir)/$ac_aux_dir/libtool-reloc $LIBTOOL" ;;
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
110 esac
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
111 fi
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
112 else
40205
9e8fb35d4032 relocatable-prog: Revert "Use wrapper-free installation on Mac OS X."
Bruno Haible <bruno@clisp.org>
parents: 40195
diff changeset
113 use_wrapper=yes
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
114 dnl Unfortunately we cannot define INSTALL_PROGRAM to a command
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
115 dnl consisting of more than one word - libtool doesn't support this.
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
116 dnl So we abuse the INSTALL_PROGRAM_ENV hook, originally meant for the
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
117 dnl 'install-strip' target.
40205
9e8fb35d4032 relocatable-prog: Revert "Use wrapper-free installation on Mac OS X."
Bruno Haible <bruno@clisp.org>
parents: 40195
diff changeset
118 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\""
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
119 AC_SUBST([INSTALL_PROGRAM_ENV])
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
120 case "$ac_aux_dir" in
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
121 /*) INSTALL_PROGRAM="$ac_aux_dir/install-reloc" ;;
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
122 *) INSTALL_PROGRAM="\$(top_builddir)/$ac_aux_dir/install-reloc" ;;
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
123 esac
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
124 fi
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
125 fi
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
126 fi
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
127 AM_CONDITIONAL([RELOCATABLE_VIA_LD],
40206
770a5696761e relocatable-prog: Use wrapper-free installation on Mac OS X, take 2.
Bruno Haible <bruno@clisp.org>
parents: 40205
diff changeset
128 [test $is_noop = yes || test $use_elf_origin_trick = yes || test $use_macos_tools = yes])
13421
5dc27513d127 relocatable: Make it easier to test whether to install wrappers.
Bruno Haible <bruno@clisp.org>
parents: 13247
diff changeset
129 AM_CONDITIONAL([RELOCATABLE_VIA_WRAPPER], [test $use_wrapper = yes])
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
130
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
131 dnl RELOCATABLE_LIBRARY_PATH can be set in configure.ac. Default is empty.
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
132 AC_SUBST([RELOCATABLE_LIBRARY_PATH])
13247
ea201756cdab relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
133
8272
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
134 AC_SUBST([RELOCATABLE_CONFIG_H_DIR])
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
135 AC_SUBST([RELOCATABLE_SRC_DIR])
fd48e35f4e5e New modules relocatable, relocatable-lib, relocatable-script.
Bruno Haible <bruno@clisp.org>
parents: 8265
diff changeset
136 AC_SUBST([RELOCATABLE_BUILD_DIR])
13247
ea201756cdab relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
137
ea201756cdab relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
138 dnl Ensure RELOCATABLE_STRIP is defined in Makefiles (at least those
ea201756cdab relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
139 dnl generated by automake), with value ':'.
ea201756cdab relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
140 RELOCATABLE_STRIP=':'
ea201756cdab relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
Bruno Haible <bruno@clisp.org>
parents: 12559
diff changeset
141 AC_SUBST([RELOCATABLE_STRIP])
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
142 ])
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
143
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
144 dnl Determine the platform dependent parameters needed to use relocatability:
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
145 dnl shlibpath_var.
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
146 AC_DEFUN([AC_LIB_LIBPATH],
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
147 [
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
148 AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
149 AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
150 AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir
11007
f6cba5a556ce many *.m4 files: improve m4 quoting
Jim Meyering <meyering@redhat.com>
parents: 9548
diff changeset
151 AC_CACHE_CHECK([for shared library path variable], [acl_cv_libpath], [
8265
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
152 LD="$LD" \
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
153 ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.libpath" "$host" > conftest.sh
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
154 . ./conftest.sh
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
155 rm -f ./conftest.sh
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
156 acl_cv_libpath=${acl_cv_shlibpath_var:-none}
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
157 ])
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
158 shlibpath_var="$acl_cv_shlibpath_var"
20006894dae4 Infrastructure for relocatable installation, from GNU gettext.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
159 ])