[dovecot-cvs] dovecot configure.in,1.301,1.302
cras at dovecot.org
cras at dovecot.org
Fri Aug 11 02:21:08 EEST 2006
Update of /var/lib/cvs/dovecot
In directory talvi:/tmp/cvs-serv12733
Modified Files:
configure.in
Log Message:
eval doesn't need to have its parameters quoted. The previous \" quoting was
broken with POSIX shells (and autoconf 2.60 now sets POSIX mode to
non-bash/zsh shells also where this was previously working wrong). So, all
in all this should fix OpenBSD compiling problems.
Index: configure.in
===================================================================
RCS file: /var/lib/cvs/dovecot/configure.in,v
retrieving revision 1.301
retrieving revision 1.302
diff -u -d -r1.301 -r1.302
--- configure.in 10 Aug 2006 22:03:22 -0000 1.301
+++ configure.in 10 Aug 2006 23:21:06 -0000 1.302
@@ -651,7 +651,7 @@
for type in $order; do
actype="ac_cv_sizeof_`echo $type|sed 's/-/_/g'`"
- if test "$size" = "`eval \"echo \\$$actype\"`"; then
+ if test "$size" = "`eval echo \\$$actype`"; then
result="`echo $type|sed 's/-/ /g'`"
visible="`expr $size \* 8`bit (using $result)"
break
@@ -1720,7 +1720,7 @@
if test "$storage" = "$deliver_storage"; then
deliver_storage=""
fi
- STORAGE_LIBS="$STORAGE_LIBS `eval \"echo \\$${storage}_libs\"`"
+ STORAGE_LIBS="$STORAGE_LIBS `eval echo \\$${storage}_libs`"
done
STORAGE_LIBS="$STORAGE_LIBS $index_libs"
AC_SUBST(STORAGE_LIBS)
More information about the dovecot-cvs
mailing list