From b316f6a1a9117799c4e08af25548374111cf54b8 Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Sun, 30 Dec 2012 12:29:39 +0000 Subject: [PATCH] efl/libtool: disable-fast-install by default. From Autobook: http://www.sourceware.org/autobook/autobook/autobook_85.html libtool will build executables suitable for copying into their respective installation destinations, obviating the need for relinking them on those hosts which would have required it. Whenever libtool links an executable which uses shared libraries, it also creates a wrapper script which ensures that the environment is correct for loading the correct libraries, See section 10.5 Executing Uninstalled Binaries. On those hosts which require it, the wrapper script will also relink the executable in the build tree if you attempt to run it from there before installation. Sometimes this behaviour is not what you want, particularly if you are developing the package and not installing between test compilations. By passing `--disable-fast-install', the default behaviour is reversed; executables will be built so that they can be run from the build tree without relinking, but during installation they may be relinked. The user may still override this default, depending on platform support, by specifying --enable-fast-install to configure. NOTE: In my measurements it made no difference in install time either. SVN revision: 81900 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 24deb7de57..06f52a7774 100644 --- a/configure.ac +++ b/configure.ac @@ -358,7 +358,7 @@ AM_CONDITIONAL([HAVE_PS3], [test "x${have_ps3}" = "xyes"]) if test "x${have_windows}" = "xyes" ; then lt_cv_deplibs_check_method='pass_all' fi -LT_INIT([win32-dll disable-static]) +LT_INIT([win32-dll disable-static disable-fast-install]) version_info="lt_cur:lt_rev:lt_age" AC_SUBST([version_info]) release_info="v_rel"