From 7af1bdc379025a05e7bfa43ec5990a31c66bafb3 Mon Sep 17 00:00:00 2001 From: slerena Date: Fri, 16 Oct 2009 15:02:22 +0000 Subject: [PATCH] 2009-10-17 Sancho Lerena * configure.in: Modified path to libregex.a instead original boost library name (very large and complex). This should be fix with the library package uploaded in sourceforge and compile nicely (works for me :-) git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2029 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_agents/win32/ChangeLog | 7 +++++++ pandora_agents/win32/configure.in | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/pandora_agents/win32/ChangeLog b/pandora_agents/win32/ChangeLog index 31e1d62ea2..b1a23546ad 100644 --- a/pandora_agents/win32/ChangeLog +++ b/pandora_agents/win32/ChangeLog @@ -1,3 +1,10 @@ +2009-10-17 Sancho Lerena + + * configure.in: Modified path to libregex.a instead original boost + library name (very large and complex). This should be fix with the + library package uploaded in sourceforge and compile nicely (works + for me :-) + 2009-10-15 Ramon Novoa * windows_service.cc: Enable service recovery by default. diff --git a/pandora_agents/win32/configure.in b/pandora_agents/win32/configure.in index 7ed4bfd79d..4034334682 100644 --- a/pandora_agents/win32/configure.in +++ b/pandora_agents/win32/configure.in @@ -27,7 +27,7 @@ AC_CHECK_LIB([psapi], [main], , AC_MSG_ERROR([libpsapi not found.])) AC_CHECK_LIB([ole32], [main], , AC_MSG_ERROR([libole32 not found.])) AC_CHECK_LIB([oleaut32], [main], , AC_MSG_ERROR([liboleaut not found.])) AC_CHECK_LIB([uuid], [main], , AC_MSG_ERROR([libuuid not found.])) -AC_CHECK_LIB([boost_regex], [main], , AC_MSG_ERROR([Boost.Regex not not found. Get it from http://www.boost.org/])) +AC_CHECK_LIB([regex], [main], , AC_MSG_ERROR([Boost.Regex not not found. Get it from http://www.boost.org/])) AC_CHECK_LIB([z], [main], , AC_MSG_ERROR([libz not found.])) AC_CHECK_LIB([gdi32], [main], , AC_MSG_ERROR([libgdi32 not found.])) AC_CHECK_LIB([crypto], [main], , AC_MSG_ERROR([libcrypto not found.]))