freebsd-ports/cad/salome-gui/files/patch-GUI_check_sip.m4
Philip M. Gollucci 667bb62ff2 SALOME is a free software that provides a generic platform for Pre
and Post-Processing for numerical simulation.
+Supports interoperability between CAD modeling and
 computation software (CAD-CAE link)
+Makes easier the integration of new components on heterogeneous systems
 for numerical computation
+Sets the priority to multi-physics coupling between computation software
+Provides a generic user interface, user-friendly and efficient,
 which helps to reduce the costs and  delays of carrying out the studies
+Reduces training time to the specific time for learning the software solution
 which has been based on this platform
+All functionalities are accessible through the programmatic
 integrated Python console

This package contains GUI module.

WWW: http://www.salome-platform.org
- Stas Timokhin
devel@stasyan.com

PR:		ports/143469
Submitted by:	Stas Timokhin <devel at stasyan.com>
2010-02-12 22:14:27 +00:00

26 lines
1,020 B
Text

--- adm_local/unix/config_files/check_sip.m4.orig 2009-10-17 18:43:27.000000000 +0700
+++ adm_local/unix/config_files/check_sip.m4 2009-10-17 18:43:42.000000000 +0700
@@ -77,20 +77,20 @@
for d in ${TEST_INC_DIRS} ; do
if test -d $d ; then
AC_CHECK_FILE(${d}/sip.h,sip_ok=yes,sip_ok=no)
- if test "x$sip_ok" == "xyes" ; then
+ if test "x$sip_ok" = "xyes" ; then
SIP_INCLUDES="-I${d}"
break
fi
fi
done
- if test "x$sip_ok" == "xyes" ; then
+ if test "x$sip_ok" = "xyes" ; then
dnl Search sip.so file
sip_ok=no
for d in ${TEST_LIB_DIRS} ; do
if test -d $d ; then
AC_CHECK_FILE(${d}/sip.so,sip_ok=yes,sip_ok=no)
- if test "x$sip_ok" == "xyes" ; then
+ if test "x$sip_ok" = "xyes" ; then
if test "x${d}" = "x/usr/lib${LIB_LOCATION_SUFFIX}" ; then
SIP_LIBS=""
else