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