dnl -*- shell-script -*- dnl dnl Copyright (c) 2004-2005 The Trustees of Indiana University. dnl All rights reserved. dnl Copyright (c) 2004-2005 The Trustees of the University of Tennessee. dnl All rights reserved. dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, dnl University of Stuttgart. All rights reserved. dnl Copyright (c) 2004-2005 The Regents of the University of California. dnl All rights reserved. dnl $COPYRIGHT$ dnl dnl Additional copyrights may follow dnl dnl $HEADER$ dnl AC_DEFUN([OMPI_CONFIGURE_SETUP],[ # Some helper script functions. Unfortunately, we cannot use $1 kinds # of arugments here because of the m4 substitution. So we have to set # special variable names before invoking the function. :-\ ompi_show_title() { cat <&5 else echo $1 >&5 fi])dnl dnl ####################################################################### dnl ####################################################################### dnl ####################################################################### AC_DEFUN([OMPI_LOG_FILE],[ # 1 is the filename if test -n "$1" -a -f "$1"; then cat $1 >&5 fi])dnl dnl ####################################################################### dnl ####################################################################### dnl ####################################################################### AC_DEFUN([OMPI_LOG_COMMAND],[ # 1 is the command # 2 is actions to do if success # 3 is actions to do if fail echo "configure:__oline__: $1" >&5 $1 1>&5 2>&1 ompi_status=$? OMPI_LOG_MSG([\$? = $ompi_status], 1) if test "$ompi_status" = "0"; then unset ompi_status $2 else unset ompi_status $3 fi])dnl dnl ####################################################################### dnl ####################################################################### dnl ####################################################################### AC_DEFUN([OMPI_UNIQ],[ # 1 is the variable name to be uniq-ized ompi_name=$1 # Go through each item in the variable and only keep the unique ones ompi_count=0 for val in ${$1}; do ompi_done=0 ompi_i=1 ompi_found=0 # Loop over every token we've seen so far ompi_done="`expr $ompi_i \> $ompi_count`" while test "$ompi_found" = "0" -a "$ompi_done" = "0"; do # Have we seen this token already? Prefix the comparison with # "x" so that "-Lfoo" values won't be cause an error. ompi_eval="expr x$val = x\$ompi_array_$ompi_i" ompi_found=`eval $ompi_eval` # Check the ending condition ompi_done="`expr $ompi_i \>= $ompi_count`" # Increment the counter ompi_i="`expr $ompi_i + 1`" done # If we didn't find the token, add it to the "array" if test "$ompi_found" = "0"; then ompi_eval="ompi_array_$ompi_i=$val" eval $ompi_eval ompi_count="`expr $ompi_count + 1`" else ompi_i="`expr $ompi_i - 1`" fi done # Take all the items in the "array" and assemble them back into a # single variable ompi_i=1 ompi_done="`expr $ompi_i \> $ompi_count`" ompi_newval= while test "$ompi_done" = "0"; do ompi_eval="ompi_newval=\"$ompi_newval \$ompi_array_$ompi_i\"" eval $ompi_eval ompi_eval="unset ompi_array_$ompi_i" eval $ompi_eval ompi_done="`expr $ompi_i \>= $ompi_count`" ompi_i="`expr $ompi_i + 1`" done # Done; do the assignment ompi_newval="`echo $ompi_newval`" ompi_eval="$ompi_name=\"$ompi_newval\"" eval $ompi_eval # Clean up unset ompi_name ompi_i ompi_done ompi_newval ompi_eval ompi_count])dnl