Define ENABLE_RELOCATABLE also for libraries.
[gnulib.git] / m4 / relocatable-lib.m4
1 # relocatable-lib.m4 serial 2
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 Support for relocatable libraries.
10 AC_DEFUN([gl_RELOCATABLE_LIBRARY],
11 [
12   AC_REQUIRE([gl_RELOCATABLE_NOP])
13   dnl Easier to put this here once, instead of into the DEFS of each Makefile.
14   if test "X$prefix" = "XNONE"; then
15     reloc_final_prefix="$ac_default_prefix"
16   else
17     reloc_final_prefix="$prefix"
18   fi
19   AC_DEFINE_UNQUOTED([INSTALLPREFIX], ["${reloc_final_prefix}"],
20     [Define to the value of ${prefix}, as a string.])
21   if test $RELOCATABLE = yes; then
22     AC_DEFINE([ENABLE_RELOCATABLE], 1,
23       [Define to 1 if the package shall run at any location in the filesystem.])
24   fi
25 ])
26
27 dnl Support for relocatable packages for which it is a nop.
28 AC_DEFUN([gl_RELOCATABLE_NOP],
29 [
30   AC_MSG_CHECKING([whether to activate relocatable installation])
31   AC_ARG_ENABLE(relocatable,
32     [  --enable-relocatable    install a package that can be moved in the filesystem],
33     [if test "$enableval" != no; then
34        RELOCATABLE=yes
35      else
36        RELOCATABLE=no
37      fi
38     ], RELOCATABLE=no)
39   AC_SUBST(RELOCATABLE)
40   AC_MSG_RESULT([$RELOCATABLE])
41 ])
42