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