mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-08 10:37:28 +05:00
PR: synchro V7_main tag mergefrom_V6_main_11Feb13
This commit is contained in:
parent
7f3c1cde92
commit
36cfe45a94
@ -24,7 +24,7 @@
|
|||||||
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
||||||
# Created from configure.in.base
|
# Created from configure.in.base
|
||||||
#
|
#
|
||||||
AC_INIT([Salome2 Project SMESH module], [6.6.0], [webmaster.salome@opencascade.com], [SalomeSMESH])
|
AC_INIT([Salome2 Project SMESH module], [7.0.0], [webmaster.salome@opencascade.com], [SalomeSMESH])
|
||||||
AC_CONFIG_AUX_DIR(adm_local/unix/config_files)
|
AC_CONFIG_AUX_DIR(adm_local/unix/config_files)
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
AC_CANONICAL_TARGET
|
AC_CANONICAL_TARGET
|
||||||
|
@ -357,9 +357,9 @@ DriverMED_Family::GetFamilyInfo(const MED::PWrapper& theWrapper,
|
|||||||
string aValue = aStr.str();
|
string aValue = aStr.str();
|
||||||
// PAL19785,0019867 - med forbids whitespace to be the last char in the name
|
// PAL19785,0019867 - med forbids whitespace to be the last char in the name
|
||||||
int maxSize;
|
int maxSize;
|
||||||
if ( theWrapper->GetVersion() == MED::eV2_1 )
|
//if ( theWrapper->GetVersion() == MED::eV2_1 )
|
||||||
maxSize = MED::GetNOMLength<MED::eV2_1>();
|
// maxSize = MED::GetNOMLength<MED::eV2_1>();
|
||||||
else
|
//else
|
||||||
maxSize = MED::GetNOMLength<MED::eV2_2>();
|
maxSize = MED::GetNOMLength<MED::eV2_2>();
|
||||||
int lastCharPos = min( maxSize, (int) aValue.size() ) - 1;
|
int lastCharPos = min( maxSize, (int) aValue.size() ) - 1;
|
||||||
while ( isspace( aValue[ lastCharPos ] ))
|
while ( isspace( aValue[ lastCharPos ] ))
|
||||||
|
@ -15,15 +15,13 @@
|
|||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
#
|
|
||||||
|
|
||||||
# SMESH DriverMED : driver to read and write 'med' files
|
# SMESH DriverMED : driver to read and write 'med' files
|
||||||
# File : Makefile.in
|
# File : Makefile.in
|
||||||
# Author : Marc Tajchman (CEA)
|
# Author : Marc Tajchman (CEA)
|
||||||
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
||||||
# Module : SMESH
|
# Module : SMESH
|
||||||
# $Header$
|
|
||||||
#
|
|
||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
# header files
|
# header files
|
||||||
@ -63,10 +61,9 @@ libMeshDriverMED_la_CPPFLAGS = \
|
|||||||
libMeshDriverMED_la_LDFLAGS = \
|
libMeshDriverMED_la_LDFLAGS = \
|
||||||
$(BOOST_LIBS) \
|
$(BOOST_LIBS) \
|
||||||
../Driver/libMeshDriver.la \
|
../Driver/libMeshDriver.la \
|
||||||
$(MED_LDFLAGS) -lMEDWrapper -lMEDWrapperBase -lMEDWrapper_V2_2 -lMEDWrapper_V2_1 \
|
$(MED_LDFLAGS) -lMEDWrapper -lMEDWrapperBase -lMEDWrapper_V2_2
|
||||||
$(BOOST_LIB_SYSTEM)
|
$(BOOST_LIB_SYSTEM)
|
||||||
|
|
||||||
|
|
||||||
MED_Test_CPPFLAGS = \
|
MED_Test_CPPFLAGS = \
|
||||||
$(libMeshDriverMED_la_CPPFLAGS)
|
$(libMeshDriverMED_la_CPPFLAGS)
|
||||||
|
|
||||||
@ -75,6 +72,7 @@ MED_Test_LDADD = \
|
|||||||
../Driver/libMeshDriver.la \
|
../Driver/libMeshDriver.la \
|
||||||
../SMDS/libSMDS.la \
|
../SMDS/libSMDS.la \
|
||||||
../SMESHDS/libSMESHDS.la \
|
../SMESHDS/libSMESHDS.la \
|
||||||
|
${BOOST_LIB_SYSTEM} \
|
||||||
$(KERNEL_LDFLAGS) \
|
$(KERNEL_LDFLAGS) \
|
||||||
-lOpUtil \
|
-lOpUtil \
|
||||||
-lSALOMELocalTrace \
|
-lSALOMELocalTrace \
|
||||||
@ -82,7 +80,5 @@ MED_Test_LDADD = \
|
|||||||
$(MED_LDFLAGS) \
|
$(MED_LDFLAGS) \
|
||||||
-lMEDWrapper \
|
-lMEDWrapper \
|
||||||
-lMEDWrapperBase \
|
-lMEDWrapperBase \
|
||||||
-lMEDWrapper_V2_2 \
|
-lMEDWrapper_V2_2
|
||||||
-lMEDWrapper_V2_1 \
|
|
||||||
$(BOOST_LIB_SYSTEM)
|
$(BOOST_LIB_SYSTEM)
|
||||||
|
|
||||||
|
@ -15,14 +15,13 @@
|
|||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||||
#
|
|
||||||
|
|
||||||
# GEOM GEOMClient : tool to transfer BREP files from GEOM server to GEOM client
|
# GEOM GEOMClient : tool to transfer BREP files from GEOM server to GEOM client
|
||||||
# File : Makefile.in
|
# File : Makefile.in
|
||||||
# Author : Pavel TELKOV (OCC)
|
# Author : Pavel TELKOV (OCC)
|
||||||
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
# Modified by : Alexander BORODIN (OCN) - autotools usage
|
||||||
# Module : SHESM
|
# Module : SHESM
|
||||||
#
|
|
||||||
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
include $(top_srcdir)/adm_local/unix/make_common_starter.am
|
||||||
|
|
||||||
# header files
|
# header files
|
||||||
@ -70,7 +69,7 @@ libSMESHClient_la_LDFLAGS = \
|
|||||||
$(KERNEL_LDFLAGS) -lSalomeLifeCycleCORBA -lSalomeNS -lOpUtil -lSALOMEBasics \
|
$(KERNEL_LDFLAGS) -lSalomeLifeCycleCORBA -lSalomeNS -lOpUtil -lSALOMEBasics \
|
||||||
-lSalomeIDLKernel -lSALOMELocalTrace \
|
-lSalomeIDLKernel -lSALOMELocalTrace \
|
||||||
$(GEOM_LDFLAGS) -lNMTDS -lSalomeIDLGEOM \
|
$(GEOM_LDFLAGS) -lNMTDS -lSalomeIDLGEOM \
|
||||||
$(MED_LDFLAGS) -lMEDWrapper_V2_2 -lMEDWrapper_V2_1 -lSalomeIDLMED -lMEDWrapper \
|
$(MED_LDFLAGS) -lMEDWrapper_V2_2 -lSalomeIDLMED -lMEDWrapper \
|
||||||
$(CAS_KERNEL)
|
$(CAS_KERNEL)
|
||||||
|
|
||||||
SMESHClientBin_CPPFLAGS = \
|
SMESHClientBin_CPPFLAGS = \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user