From 4f1822551973fe6fee76940f1ca5e1b6c4173f68 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Fri, 4 May 2007 19:47:26 +0000 Subject: [PATCH] Changed the order Cantera libraries in the LINKER statements that come out of autoconf. An unsatisfied external occurred because thermo occurred before kinetics. Changed thermo to occur after kinetics. --- configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index e969423ba..381c980e0 100755 --- a/configure.in +++ b/configure.in @@ -700,10 +700,6 @@ fi LOCAL_LIBS=$LOCAL_LIBS' '-lequil -if test -n "$NEED_CATHERMO" -then LOCAL_LIBS=$LOCAL_LIBS' '-lthermo -fi - if test -n "$COMPILE_KINETICS" then LOCAL_LIBS=$LOCAL_LIBS' '-lkinetics fi @@ -712,6 +708,10 @@ if test -n "$NEED_TRANSPORT" then LOCAL_LIBS=$LOCAL_LIBS' '-ltransport fi +if test -n "$NEED_CATHERMO" +then LOCAL_LIBS=$LOCAL_LIBS' '-lthermo +fi + LOCAL_LIBS=$LOCAL_LIBS' '-lctnumerics if test -n "$NEED_CVODE"; then