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