[Lemon-commits] Alpar Juttner: Fix Soplex config in autoconf (#230)

Lemon HG hg at lemon.cs.elte.hu
Wed Mar 4 14:54:46 CET 2009


details:   http://lemon.cs.elte.hu/hg/lemon/rev/547e966b3b29
changeset: 561:547e966b3b29
user:      Alpar Juttner <alpar [at] cs.elte.hu>
date:      Thu Feb 26 09:39:02 2009 +0000
description:
	Fix Soplex config in autoconf (#230)

diffstat:

2 files changed, 3 insertions(+), 3 deletions(-)
lemon/soplex.cc       |    2 +-
m4/lx_check_soplex.m4 |    4 ++--

diffs (33 lines):

diff --git a/lemon/soplex.cc b/lemon/soplex.cc
--- a/lemon/soplex.cc
+++ b/lemon/soplex.cc
@@ -19,7 +19,7 @@
 #include <iostream>
 #include <lemon/soplex.h>
 
-#include <soplex/soplex.h>
+#include <soplex.h>
 
 
 ///\file
diff --git a/m4/lx_check_soplex.m4 b/m4/lx_check_soplex.m4
--- a/m4/lx_check_soplex.m4
+++ b/m4/lx_check_soplex.m4
@@ -20,7 +20,7 @@
     if test x"$with_soplex_includedir" != x"no"; then
       SOPLEX_CXXFLAGS="-I$with_soplex_includedir"
     elif test x"$with_soplex" != x"yes"; then
-      SOPLEX_CXXFLAGS="-I$with_soplex/include"
+      SOPLEX_CXXFLAGS="-I$with_soplex/src"
     fi
 
     if test x"$with_soplex_libdir" != x"no"; then
@@ -38,7 +38,7 @@
     LIBS="$SOPLEX_LIBS"
 
     lx_soplex_test_prog='
-      #include <soplex/soplex.h>
+      #include <soplex.h>
 
       int main(int argc, char** argv)
       {



More information about the Lemon-commits mailing list