Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/moses
diff options
context:
space:
mode:
authorUlrich Germann <ugermann@inf.ed.ac.uk>2015-03-21 01:32:42 +0300
committerUlrich Germann <ugermann@inf.ed.ac.uk>2015-03-21 01:32:42 +0300
commit6c73693c49e0928a2d930817036472c23f3f6ae8 (patch)
treeff918cffff420082bc47428c887a96f2beec10a7 /moses
parent0854d3339e6972411cbc73ebb50b6b7be4bd14bd (diff)
Library path for xmlrpc-c given via --with-xmlprc-c was not included in the compile requirements.
Diffstat (limited to 'moses')
-rw-r--r--moses/Jamfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/moses/Jamfile b/moses/Jamfile
index 6d9e691db..822645505 100644
--- a/moses/Jamfile
+++ b/moses/Jamfile
@@ -58,8 +58,8 @@ obj FF_Factory.o : FF/Factory.cpp LM//macros headers ../lm//kenlm mmlib : <depen
# if yes, include server capabilities in the moses executable
# include $(TOP)/jam-files/server.jam ;
-xmlrpc-c-config-cmd = [ build_server ] ;
-if $(xmlrpc-c-config-cmd) = no
+xmlrpc-c-config = [ build_server ] ;
+if $(xmlrpc-c-config) = no
{
echo "NOT BUILDING MOSES SERVER!" ;
alias mserver ;
@@ -67,8 +67,8 @@ if $(xmlrpc-c-config-cmd) = no
}
else
{
- xmlprc-version = [ shell_or_die "$(xmlrpc-c-config-cmd) --version" ] ;
- xmlprc-linkflags = [ shell_or_die "$(xmlrpc-c-config-cmd) --version" ] ;
+ xmlprc-version = [ shell_or_die "$(xmlrpc-c-config) --version" ] ;
+ # xmlprc-linkflags = [ shell_or_die "$(xmlrpc-c-config) --version" ] ;
echo "building moses server with xmlrpc-c version $(xmlrpc-c-version)" ;
alias mserver : [ glob server/*.cpp ] ;
}