|
From: Bob T. <bt...@us...> - 2001-08-16 15:23:08
|
Update of /cvsroot/benson/benson3
In directory usw-pr-cvs1:/tmp/cvs-serv26114
Modified Files:
configure configure.in
Log Message:
Added some help for the configure ssl stuff
Index: configure
===================================================================
RCS file: /cvsroot/benson/benson3/configure,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** configure 2001/08/13 02:20:57 1.3
--- configure 2001/08/16 15:23:04 1.4
***************
*** 7488,7495 ****
fi;
for ac_header in openssl/ssl.h
do
as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
! echo "$as_me:7493: checking for $ac_header" >&5
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
if eval "test \"\${$as_ac_Header+set}\" = set"; then
--- 7488,7498 ----
fi;
[...1317 lines suppressed...]
{ (exit 1); exit 1; }; }
--- 9137,9141 ----
else
# /dev/null tree
! { { echo "$as_me:9139: error: cannot find input file: $f" >&5
echo "$as_me: error: cannot find input file: $f" >&2;}
{ (exit 1); exit 1; }; }
***************
*** 9251,9255 ****
if test x"$ac_file" != x-; then
if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
! { echo "$as_me:9253: $ac_file is unchanged" >&5
echo "$as_me: $ac_file is unchanged" >&6;}
else
--- 9254,9258 ----
if test x"$ac_file" != x-; then
if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
! { echo "$as_me:9256: $ac_file is unchanged" >&5
echo "$as_me: $ac_file is unchanged" >&6;}
else
Index: configure.in
===================================================================
RCS file: /cvsroot/benson/benson3/configure.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** configure.in 2001/08/13 02:20:57 1.3
--- configure.in 2001/08/16 15:23:04 1.4
***************
*** 42,45 ****
--- 42,48 ----
AC_ARG_ENABLE(profile, [ --enable-profiling Compile using -pg], use_profile=$enableval, use_profile=no)
+ CFLAGS="$CFLAGS -I$ssl_dir/include"
+ LDFLAGS="$LDFLAGS -L$ssl_dir/lib"
+
AC_CHECK_HEADERS(openssl/ssl.h)
AC_CHECK_HEADERS(signal.h)
|