remove changequotes

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10620 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-09-01 11:56:05 +00:00
parent 8578ef27f2
commit ec9069e04d
3 changed files with 4 additions and 12 deletions

View File

@@ -16,9 +16,7 @@ if test "$ac_cv_header_security_pam_modules_h" = yes -a "$enable_shared" = yes;
fi
case "${host}" in
changequote(,)dnl
*-*-irix[56]*) LIB_AUTH_SUBDIRS="$LIB_AUTH_SUBDIRS afskauthlib" ;;
changequote([,])dnl
*-*-irix[[56]]*) LIB_AUTH_SUBDIRS="$LIB_AUTH_SUBDIRS afskauthlib" ;;
esac
AC_MSG_RESULT($LIB_AUTH_SUBDIRS)

View File

@@ -8,9 +8,7 @@ AC_TRY_RUN([
#include <string.h>
int main()
{
changequote(`,')dnl
char foo[3];
changequote([,])dnl
char foo[[3]];
snprintf(foo, 2, "12");
return strcmp(foo, "1");
}],:,ac_cv_func_snprintf_working=no,:))
@@ -33,9 +31,7 @@ AC_TRY_RUN([
int foo(int num, ...)
{
changequote(`,')dnl
char bar[3];
changequote([,])dnl
char bar[[3]];
va_list arg;
va_start(arg, num);
vsnprintf(bar, 2, "%s", arg);

View File

@@ -10,9 +10,7 @@ AC_CACHE_VAL(ac_cv_struct_winsize, [
ac_cv_struct_winsize=no
for i in sys/termios.h sys/ioctl.h; do
AC_EGREP_HEADER(
changequote(, )dnl
struct[ ]*winsize,dnl
changequote([,])dnl
struct[[ ]]*winsize,dnl
$i, ac_cv_struct_winsize=yes; break)dnl
done
])