gmyth-dbus/m4/as-expand.m4
author renatofilho
Thu Oct 25 15:40:47 2007 +0100 (2007-10-25)
branchtrunk
changeset 870 735d9b563b02
permissions -rw-r--r--
[svn r876] renamed project
renatofilho@870
     1
dnl AS_AC_EXPAND(VAR, CONFIGURE_VAR)
renatofilho@870
     2
dnl
renatofilho@870
     3
dnl example
renatofilho@870
     4
dnl AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
renatofilho@870
     5
dnl will set SYSCONFDIR to /usr/local/etc if prefix=/usr/local
renatofilho@870
     6
renatofilho@870
     7
AC_DEFUN([AS_AC_EXPAND],
renatofilho@870
     8
[
renatofilho@870
     9
  EXP_VAR=[$1]
renatofilho@870
    10
  FROM_VAR=[$2]
renatofilho@870
    11
renatofilho@870
    12
  dnl first expand prefix and exec_prefix if necessary
renatofilho@870
    13
  prefix_save=$prefix
renatofilho@870
    14
  exec_prefix_save=$exec_prefix
renatofilho@870
    15
renatofilho@870
    16
  dnl if no prefix given, then use /usr/local, the default prefix
renatofilho@870
    17
  if test "x$prefix" = "xNONE"; then
renatofilho@870
    18
    prefix=$ac_default_prefix
renatofilho@870
    19
  fi
renatofilho@870
    20
  dnl if no exec_prefix given, then use prefix
renatofilho@870
    21
  if test "x$exec_prefix" = "xNONE"; then
renatofilho@870
    22
    exec_prefix=$prefix
renatofilho@870
    23
  fi
renatofilho@870
    24
renatofilho@870
    25
  full_var="$FROM_VAR"
renatofilho@870
    26
  dnl loop until it doesn't change anymore
renatofilho@870
    27
  while true; do
renatofilho@870
    28
    new_full_var="`eval echo $full_var`"
renatofilho@870
    29
    if test "x$new_full_var"="x$full_var"; then break; fi
renatofilho@870
    30
    full_var=$new_full_var
renatofilho@870
    31
  done
renatofilho@870
    32
renatofilho@870
    33
  dnl clean up
renatofilho@870
    34
  full_var=$new_full_var
renatofilho@870
    35
  AC_SUBST([$1], "$full_var")
renatofilho@870
    36
renatofilho@870
    37
  dnl restore prefix and exec_prefix
renatofilho@870
    38
  prefix=$prefix_save
renatofilho@870
    39
  exec_prefix=$exec_prefix_save
renatofilho@870
    40
])