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