Hello!

I see this error message on NetBSD when building libmesh-0.7.0.3:

"test: ==: unexpected operator"

Fix:

"==" is non-standard and isn't portable, use "="

--- configure.in.orig   2010-11-15 21:50:48.000000000 +0300
+++ configure.in        2011-01-11 02:46:14.000000000 +0300
@@ -682,7 +682,7 @@
                              [build with Trilinos suppport]),
               enabletrilinos=$enableval,
               enabletrilinos=yes)
-if test "$enablecomplex" == no ; then
+if test "$enablecomplex" = no ; then
    if test "$enabletrilinos" != no ; then
       CONFIGURE_TRILINOS
       dnl ----------------------------------------------------------
--- configure.orig      2011-01-11 02:43:26.000000000 +0300
+++ configure   2011-01-11 02:48:02.000000000 +0300
@@ -8859,7 +8859,7 @@
   enabletrilinos=yes
 fi
 
-if test "$enablecomplex" == no ; then
+if test "$enablecomplex" = no ; then
    if test "$enabletrilinos" != no ; then
 
   if test "x$TRILINOS_DIR" = "x"; then


-- 
HE CE3OH...


------------------------------------------------------------------------------
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to 
best implement a security strategy that keeps consumers' information secure 
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl 
_______________________________________________
Libmesh-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-devel

Reply via email to