xlb-public Mailing List for XLB HTTP Load Balancer
Status: Beta
Brought to you by:
moritz2282
You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
|---|
|
From: Brock N. <br...@gm...> - 2007-12-27 01:36:06
|
The following section of the configure script results in smjs being
require if ssl is enabled. Is this the desired result?
{ echo "$as_me:$LINENO: checking if smjs is wanted" >&5
echo $ECHO_N "checking if smjs is wanted... $ECHO_C" >&6; }
# Check whether --with-ssl was given.
if test "${with_ssl+set}" = set; then
withval=$with_ssl; { echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6; }
for dir in $withval /usr/include/smjs /usr/include; do
if test -f "$dir/jsapi.h"; then
found_smjs="yes";
CFLAGS="$CFLAGS -I$dir -DHAVE_SMJS";
CXXFLAGS="$CXXFLAGS -I$dir -DHAVE_SMJS";
break;
fi
done
if test x_$found_smjs != x_yes; then
{ { echo "$as_me:$LINENO: error: Cannot find smjs libraries" >&5
echo "$as_me: error: Cannot find smjs libraries" >&2;}
{ (exit 1); exit 1; }; }
else
LIBS="$LIBS -lsmjs ";
HAVE_SMJS=yes
fi
|