renatofilho@584: dnl AS_AC_EXPAND(VAR, CONFIGURE_VAR)
renatofilho@584: dnl
renatofilho@584: dnl example
renatofilho@584: dnl AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
renatofilho@584: dnl will set SYSCONFDIR to /usr/local/etc if prefix=/usr/local
renatofilho@584: 
renatofilho@584: AC_DEFUN([AS_AC_EXPAND],
renatofilho@584: [
renatofilho@584:   EXP_VAR=[$1]
renatofilho@584:   FROM_VAR=[$2]
renatofilho@584: 
renatofilho@584:   dnl first expand prefix and exec_prefix if necessary
renatofilho@584:   prefix_save=$prefix
renatofilho@584:   exec_prefix_save=$exec_prefix
renatofilho@584: 
renatofilho@584:   dnl if no prefix given, then use /usr/local, the default prefix
renatofilho@584:   if test "x$prefix" = "xNONE"; then
renatofilho@584:     prefix=$ac_default_prefix
renatofilho@584:   fi
renatofilho@584:   dnl if no exec_prefix given, then use prefix
renatofilho@584:   if test "x$exec_prefix" = "xNONE"; then
renatofilho@584:     exec_prefix=$prefix
renatofilho@584:   fi
renatofilho@584: 
renatofilho@584:   full_var="$FROM_VAR"
renatofilho@584:   dnl loop until it doesn't change anymore
renatofilho@584:   while true; do
renatofilho@584:     new_full_var="`eval echo $full_var`"
renatofilho@584:     if test "x$new_full_var"="x$full_var"; then break; fi
renatofilho@584:     full_var=$new_full_var
renatofilho@584:   done
renatofilho@584: 
renatofilho@584:   dnl clean up
renatofilho@584:   full_var=$new_full_var
renatofilho@584:   AC_SUBST([$1], "$full_var")
renatofilho@584: 
renatofilho@584:   dnl restore prefix and exec_prefix
renatofilho@584:   prefix=$prefix_save
renatofilho@584:   exec_prefix=$exec_prefix_save
renatofilho@584: ])