From: Dave H. <hel...@us...> - 2012-09-12 16:52:36
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 1c60dd048a5efb3330bbb9436bc82d18d74f012f (commit) from f0e0a831d3aae6a1955a9882a7441fd5cde68169 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1c60dd048a5efb3330bbb9436bc82d18d74f012f Author: Dave Heller <hel...@us...> Date: Wed Sep 12 12:50:53 2012 -0400 [ 3567083 ] configure should fail if sfcUtil.so not found ----------------------------------------------------------------------- Summary of changes: diff --git a/NEWS b/NEWS index 85431fb..c645f4b 100644 --- a/NEWS +++ b/NEWS @@ -20,6 +20,7 @@ Bugs fixed: - 3541554 insecure LD_LIBRARY_PATH usage - 3546279 Core dump in providerDrv on Qualifier not found - 3564757 stageschema.sh should detect errors in sfcbrepos +- 3567083 configure should fail if sfcUtil.so not found Changes in 1.4.2 ================ diff --git a/configure.ac b/configure.ac index 883f61d..2691ea0 100644 --- a/configure.ac +++ b/configure.ac @@ -451,9 +451,8 @@ fi AC_CHECK_LIB(pthread,main) AC_CHECK_LIB(dl,main) AC_CHECK_LIB(z,main,[SFCB_LIBZ=-lz],[AC_MSG_ERROR([Could not find required libz])]) -#AC_CHECK_LIB(sfcUtil,newStringBuffer,[SFC_COMM=-lsfcUtil],[AC_MSG_ERROR([Could not find required sfcUtil])]) -AC_CHECK_LIB(sfcUtil,newStringBuffer) -#AC_SEARCH_LIBS(newStringBuffer,sfcUtil,[SFC_COMM=-lsfcUtil],[AC_MSG_ERROR([Could not find required sfcUtil])]) +AC_CHECK_LIB(sfcUtil,newStringBuffer,, \ + [AC_MSG_ERROR([Could not find required sfcUtil. Is sfcCommon installed?])]) if test "$enable_indications" = "yes" ; then LOAD_INDICATION_PROVIDER= AC_DEFINE(HAVE_INDICATIONS,1,[Indication support enabled.]) hooks/post-receive -- SFCB - Small Footprint CIM Broker |