* acspecific.m4 (AC_FUNC_SELECT_ARGTYPES): Use

: ${foo='some words'}
not
  : ${foo=some words}
since this is not portable: Digital Unix v5.0: `bad substitution'.
From Nicolas Joly.
This commit is contained in:
Akim Demaille 2000-03-16 18:12:58 +00:00
parent 7da2f6d008
commit 6522e14a8f
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,12 @@
2000-03-16 Akim Demaille <akim@epita.fr>
* acspecific.m4 (AC_FUNC_SELECT_ARGTYPES): Use
: ${foo='some words'}
not
: ${foo=some words}
since this is not portable: Digital Unix v5.0: `bad substitution'.
From Nicolas Joly.
2000-3-16 Lars J. Aas <larsa@sim.no>
* libm4.m4 (m4_assert, m4_shiftn): New macros.

View File

@ -1930,7 +1930,7 @@ extern int select ($ac_arg1,$ac_arg234,$ac_arg234,$ac_arg234,$ac_arg5);],,
done
done
# Provide a safe default value.
: ${ac_cv_func_select_args=int,int *,struct timeval *}
: ${ac_cv_func_select_args='int,int *,struct timeval *'}
])
ac_save_IFS=$IFS
IFS=','

View File

@ -1930,7 +1930,7 @@ extern int select ($ac_arg1,$ac_arg234,$ac_arg234,$ac_arg234,$ac_arg5);],,
done
done
# Provide a safe default value.
: ${ac_cv_func_select_args=int,int *,struct timeval *}
: ${ac_cv_func_select_args='int,int *,struct timeval *'}
])
ac_save_IFS=$IFS
IFS=','