From: Kim Nguyễn Date: Sat, 13 Oct 2012 12:56:22 +0000 (+0200) Subject: Change configure to reflect name change in the bp library X-Git-Url: http://git.nguyen.vg/gitweb/?p=SXSI%2Fxpathcomp.git;a=commitdiff_plain;h=bdfc08177de5ce1956a66785a5b2200e9c44c7a9 Change configure to reflect name change in the bp library (bp become libbp). --- diff --git a/configure b/configure index 2866377..40d1517 100755 --- a/configure +++ b/configure @@ -17,21 +17,21 @@ Conf.check_prog "camlp4" "ocamlfind query camlp4";; Conf.check_prog "ulex" "ocamlfind query ulex";; Conf.check_prog "expat" "ocamlfind query expat";; -Conf.check "bp" (Conf.absolute) ("%s/../bp/libbp.a") (Sys.file_exists);; +Conf.check "libbp" (Conf.absolute) ("%s/../libbp/libbp.a") (Sys.file_exists);; Conf.check "libcds" (Conf.absolute) ("%s/../libcds/lib/libcds.a") (Sys.file_exists);; Conf.check "libxml-tree" (Conf.absolute) ("%s/../XMLTree/libxml-tree.a") (Sys.file_exists);; Conf.check "TextCollection" (Conf.absolute) ("%s/../TextCollection/libTextCollection.a") (Sys.file_exists);; let libs_files = [ - (Conf.absolute) ("%s/../bp/libbp.a"); + (Conf.absolute) ("%s/../libbp/libbp.a"); (Conf.absolute) ("%s/../libcds/lib/libcds.a"); (Conf.absolute) ("%s/../XMLTree/libxml-tree.a"); (Conf.absolute) ("%s/../TextCollection/libTextCollection.a"); ] let libs_I= [ - Conf.absolute "-I%s/../bp"; + Conf.absolute "-I%s/../libbp"; Conf.absolute "-I%s/../libcds/includes"; Conf.absolute "-I%s/../XMLTree"; Conf.absolute "-I%s/../TextCollection"; @@ -39,7 +39,7 @@ let libs_I= [ ] let libs_L = [ - Conf.absolute "-L%s/../bp"; + Conf.absolute "-L%s/../libbp"; Conf.absolute "-L%s/../libcds/lib"; Conf.absolute "-L%s/../XMLTree"; Conf.absolute "-L%s/../TextCollection";