|
From: Bob T. <bt...@us...> - 2001-06-03 23:34:20
|
Update of /cvsroot/benson/benson2 In directory usw-pr-cvs1:/tmp/cvs-serv3868 Modified Files: configure.in acinclude.m4 Log Message: Added changes to the build environment Index: configure.in =================================================================== RCS file: /cvsroot/benson/benson2/configure.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** configure.in 2001/05/29 05:05:15 1.4 --- configure.in 2001/06/03 22:40:45 1.5 *************** *** 35,45 **** AC_PREREQ(2.9) ! AC_ARG_WITH(mico, [ --with-mico=dir Find MICO installation below dir],mico_dir=$withval, with_mico=no) ! AC_ARG_WITH(omniorb, [ --with-omniorb=dir Find omniORB installation below dir],omni_dir=$withval, with_omni=no) ! AC_ARG_ENABLE(mico-dispatcher,[ --disable-mico-dispatcher Disable MICO-specific event dispatcher]) ! AC_ARG_ENABLE(debug, [ --enable-debug Compile using -g]) ! AC_ARG_ENABLE(perl, [ --disable-perl Disable use of perl scripting], perl=$enableval, perl=yes) AC_CHECK_LIB(socket, open) AC_CHECK_LIB(dl, open) --- 35,46 ---- AC_PREREQ(2.9) ! AC_ARG_WITH(mico, [ --with-mico=dir Find MICO installation below dir],mico_dir=$withval, with_mico=no) ! AC_ARG_WITH(omniorb, [ --with-omniorb=dir Find omniORB installation below dir],omni_dir=$withval, with_omni=no) ! AC_ARG_WITH(ssliiop, [ --with-ssl=dir Find SSL libraries for SSLIIOP support below dir],ssl_dir=$withval, with_ssl=no) ! AC_ARG_ENABLE(debug, [ --enable-debug Compile using -g]) ! AC_ARG_ENABLE(profile, [ --enable-profiling Compile using -pg]) + AC_CHECK_LIB(compat, open) AC_CHECK_LIB(socket, open) AC_CHECK_LIB(dl, open) Index: acinclude.m4 =================================================================== RCS file: /cvsroot/benson/benson2/acinclude.m4,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** acinclude.m4 2001/05/20 05:54:16 1.4 --- acinclude.m4 2001/06/03 22:40:45 1.5 *************** *** 160,163 **** --- 160,171 ---- fi + AC_MSG_CHECKING(for ssliiop support) + if test "x$ssliiop" = "x" ; then + AC_MSG_RESULT(not found) + else + AC_MSG_RESULT(found) + LDFLAGS="-L$ssldir/lib $LDFLAGS" + fi + # # Mico setup complete |