branches/gmyth-0.1b/m4/as-expand.m4
author rosfran
Tue Feb 06 00:33:35 2007 +0000 (2007-02-06)
branchtrunk
changeset 326 81b1f3006eb2
permissions -rw-r--r--
[svn r328] Some fixes on program info, and some memory clean ups.
renatofilho@320
     1
dnl AS_AC_EXPAND(VAR, CONFIGURE_VAR)
renatofilho@320
     2
dnl
renatofilho@320
     3
dnl example
renatofilho@320
     4
dnl AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
renatofilho@320
     5
dnl will set SYSCONFDIR to /usr/local/etc if prefix=/usr/local
renatofilho@320
     6
renatofilho@320
     7
AC_DEFUN([AS_AC_EXPAND],
renatofilho@320
     8
[
renatofilho@320
     9
  EXP_VAR=[$1]
renatofilho@320
    10
  FROM_VAR=[$2]
renatofilho@320
    11
renatofilho@320
    12
  dnl first expand prefix and exec_prefix if necessary
renatofilho@320
    13
  prefix_save=$prefix
renatofilho@320
    14
  exec_prefix_save=$exec_prefix
renatofilho@320
    15
renatofilho@320
    16
  dnl if no prefix given, then use /usr/local, the default prefix
renatofilho@320
    17
  if test "x$prefix" = "xNONE"; then
renatofilho@320
    18
    prefix=$ac_default_prefix
renatofilho@320
    19
  fi
renatofilho@320
    20
  dnl if no exec_prefix given, then use prefix
renatofilho@320
    21
  if test "x$exec_prefix" = "xNONE"; then
renatofilho@320
    22
    exec_prefix=$prefix
renatofilho@320
    23
  fi
renatofilho@320
    24
renatofilho@320
    25
  full_var="$FROM_VAR"
renatofilho@320
    26
  dnl loop until it doesn't change anymore
renatofilho@320
    27
  while true; do
renatofilho@320
    28
    new_full_var="`eval echo $full_var`"
renatofilho@320
    29
    if test "x$new_full_var"="x$full_var"; then break; fi
renatofilho@320
    30
    full_var=$new_full_var
renatofilho@320
    31
  done
renatofilho@320
    32
renatofilho@320
    33
  dnl clean up
renatofilho@320
    34
  full_var=$new_full_var
renatofilho@320
    35
  AC_SUBST([$1], "$full_var")
renatofilho@320
    36
renatofilho@320
    37
  dnl restore prefix and exec_prefix
renatofilho@320
    38
  prefix=$prefix_save
renatofilho@320
    39
  exec_prefix=$exec_prefix_save
renatofilho@320
    40
])