From 29c93ee69d4507eee05b7693e5a781643e8339d4 Mon Sep 17 00:00:00 2001 From: "jon.h.clark" Date: Fri, 12 Nov 2010 20:22:56 +0000 Subject: Gross hack for compiling GLC as a library. Currently has hardcoded path, but shouldn't break the build. git-svn-id: https://ws10smt.googlecode.com/svn/trunk@716 ec762483-ff6d-05da-a07a-a48fb63a330f --- configure.ac | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 1a87d323..3fb4ef47 100644 --- a/configure.ac +++ b/configure.ac @@ -50,6 +50,14 @@ AC_ARG_WITH(randlm, [with_randlm=no] ) +AM_CONDITIONAL([GLC], false) +AC_ARG_WITH(glc, + [AC_HELP_STRING([--with-glc=PATH], [(optional) path to Global Lexical Coherence package (Context CRF)])], + [with_glc=$withval], + [with_glc=no] + ) +FF_GLC="" + if test "x$with_srilm" != 'xno' then SAVE_CPPFLAGS="$CPPFLAGS" @@ -87,4 +95,23 @@ then AM_CONDITIONAL([RAND_LM], true) fi + +if test "x$with_glc" != 'xno' +then + SAVE_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS -I${with_glc} -I${with_glc}/cdec" + + #AC_CHECK_HEADER(ff_glc.h, + # [AC_DEFINE([HAVE_GLC], [], [flag for GLC])], + # [AC_MSG_ERROR([Cannot find GLC!])]) + + AC_DEFINE([HAVE_GLC], [], [flag for GLC]) + #LIB_RANDLM="-lrandlm" + #LDFLAGS="$LDFLAGS -L${with_glc}/lib" + #LIBS="$LIBS $LIB_RANDLM" + #FMTLIBS="$FMTLIBS libglc.a" + AC_SUBST(FF_GLC,"${with_glc}/cdec/ff_glc.cc") + AM_CONDITIONAL([GLC], true) +fi + AC_OUTPUT(Makefile utils/Makefile mteval/Makefile extools/Makefile decoder/Makefile training/Makefile vest/Makefile klm/util/Makefile klm/lm/Makefile gi/pyp-topics/src/Makefile gi/clda/src/Makefile) -- cgit v1.2.3