~ubuntu-branches/ubuntu/vivid/mpich/vivid-proposed

« back to all changes in this revision

Viewing changes to src/mpl/confdb/aclocal_util.m4

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2014-04-01 20:24:20 UTC
  • mfrom: (5.2.4 sid)
  • Revision ID: package-import@ubuntu.com-20140401202420-t5ey1ia2klt5dkq3
Tags: 3.1-4
* [c3e3398] Disable test_primitives, which is unreliable on some platforms.
            (Closes: #743047)
* [265a699] Add minimal autotest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
dnl have any guarantee of it.  If not, we can fall back to AS_VAR_ARITH
200
200
dnl and/or AC_COMPUTE_INT (the latter will probably be slow)
201
201
AC_DEFUN([PAC_CONV_HEX_TO_DEC],[AS_VAR_SET([$2],[`printf "%d" $1`])])
 
202
 
 
203
dnl PAC_GET_EXENAME(exe_name, out_exe_name)
 
204
dnl
 
205
dnl Prepends and appends program prefix and suffix as supplied by --program_prefix
 
206
dnl and --program-sufix
 
207
AC_DEFUN([PAC_GET_EXENAME],[
 
208
$2=$1
 
209
if test "$program_prefix" != "NONE" ; then
 
210
    $2="${program_prefix}$$2"
 
211
fi
 
212
if test "$program_suffix" != "NONE" ; then
 
213
    $2="$$2$program_suffix"
 
214
fi
 
215
])