dect
/
asterisk
Archived
13
0
Fork 0

avoid an error from configure by not doing a cat on a file that doesn't exist

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37284 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2006-07-07 05:51:29 +00:00
parent abd1f1162b
commit 348045f5a8
2 changed files with 7 additions and 3 deletions

6
configure vendored
View File

@ -1,5 +1,5 @@
#! /bin/sh
# From configure.ac Revision: 37105 .
# From configure.ac Revision: 37278 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59e.
#
@ -16428,7 +16428,9 @@ if test "${USE_IMAP_TK}" != "no"; then
echo -n "checking for UW IMAP Toolkit c-client library... "
saved_cppflags="${CPPFLAGS}"
saved_libs="${LIBS}"
imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
if test -f ${IMAP_TK_DIR}/c-client/LDFLAGS ; then
imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
fi
CPPFLAGS="${CPPFLAGS} -I${IMAP_TK_DIR}/c-client"
LIBS="${LIBS} ${IMAP_TK_DIR}/c-client/c-client.a "`echo ${imap_ldflags}`
cat >conftest.$ac_ext <<_ACEOF

View File

@ -341,7 +341,9 @@ if test "${USE_IMAP_TK}" != "no"; then
echo -n "checking for UW IMAP Toolkit c-client library... "
saved_cppflags="${CPPFLAGS}"
saved_libs="${LIBS}"
imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
if test -f ${IMAP_TK_DIR}/c-client/LDFLAGS ; then
imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
fi
CPPFLAGS="${CPPFLAGS} -I${IMAP_TK_DIR}/c-client"
LIBS="${LIBS} ${IMAP_TK_DIR}/c-client/c-client.a "`echo ${imap_ldflags}`
AC_LINK_IFELSE(