mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Merged revisions 242852 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r242852 | tilghman | 2010-01-25 14:15:45 -0600 (Mon, 25 Jan 2010) | 2 lines Restore FreeBSD to able-to-compile-ish-mode ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@242857 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
43
configure
vendored
43
configure
vendored
@@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# From configure.ac Revision: 241938 .
|
||||
# From configure.ac Revision: 242521 .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.61 for asterisk 1.6.
|
||||
#
|
||||
@@ -7662,6 +7662,47 @@ fi
|
||||
fi
|
||||
|
||||
|
||||
{ echo "$as_me:$LINENO: checking for bison that supports parse-param" >&5
|
||||
echo $ECHO_N "checking for bison that supports parse-param... $ECHO_C" >&6; }
|
||||
if test "${ac_cv_path_BISON2+set}" = set; then
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
|
||||
if test "x$BISON" != "x:" ; then
|
||||
# Create a temporary directory $tmp in $TMPDIR (default /tmp).
|
||||
# Use mktemp if possible; otherwise fall back on mkdir,
|
||||
# with $RANDOM to make collisions less likely.
|
||||
: ${TMPDIR=/tmp}
|
||||
{
|
||||
tmp=`
|
||||
(umask 077 && mktemp -d "$TMPDIR/fooXXXXXX") 2>/dev/null
|
||||
` &&
|
||||
test -n "$tmp" && test -d "$tmp"
|
||||
} || {
|
||||
tmp=$TMPDIR/foo$$-$RANDOM
|
||||
(umask 077 && mkdir "$tmp")
|
||||
} || exit $?
|
||||
cat >$tmp/test.y <<__EOL__
|
||||
%parse-param {struct parse_io *parseio}
|
||||
%%
|
||||
file : { \$\$ = parseio->pval = 1; }
|
||||
;
|
||||
%%
|
||||
__EOL__
|
||||
${BISON} -o ${tmp}/test.tab.c ${tmp}/test.y >/dev/null 2>&1
|
||||
if test -e "${tmp}/test.tab.c"; then
|
||||
ac_cv_path_BISON2=${BISON}
|
||||
fi
|
||||
rm -rf ${tmp}
|
||||
fi
|
||||
|
||||
fi
|
||||
{ echo "$as_me:$LINENO: result: $ac_cv_path_BISON2" >&5
|
||||
echo "${ECHO_T}$ac_cv_path_BISON2" >&6; }
|
||||
if test "x${ac_cv_path_BISON2}" = "x" ; then
|
||||
BISON=:
|
||||
fi
|
||||
|
||||
if test -n "$ac_tool_prefix"; then
|
||||
# Extract the first word of "${ac_tool_prefix}soxmix", so it can be a program name with args.
|
||||
set dummy ${ac_tool_prefix}soxmix; ac_word=$2
|
||||
|
Reference in New Issue
Block a user