mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
Restore support of med-2.1 in MEDWrapper
This commit is contained in:
parent
3206fe9668
commit
944af78798
@ -329,9 +329,9 @@ DriverMED_Family::GetFamilyInfo(const MED::PWrapper& theWrapper,
|
||||
string aValue = aStr.str();
|
||||
// PAL19785,0019867 - med forbids whitespace to be the last char in the name
|
||||
int maxSize;
|
||||
// if ( theWrapper->GetVersion() == MED::eV2_1 )
|
||||
// maxSize = MED::GetNOMLength<MED::eV2_1>();
|
||||
// else
|
||||
if ( theWrapper->GetVersion() == MED::eV2_1 )
|
||||
maxSize = MED::GetNOMLength<MED::eV2_1>();
|
||||
else
|
||||
maxSize = MED::GetNOMLength<MED::eV2_2>();
|
||||
int lastCharPos = min( maxSize, (int) aValue.size() ) - 1;
|
||||
while ( isspace( aValue[ lastCharPos ] ))
|
||||
|
@ -70,7 +70,7 @@ libMeshDriverMED_la_CPPFLAGS = \
|
||||
libMeshDriverMED_la_LDFLAGS = \
|
||||
$(BOOST_LIBS) \
|
||||
../Driver/libMeshDriver.la \
|
||||
$(MED_LDFLAGS) -lMEDWrapper -lMEDWrapperBase -lMEDWrapper_V2_2
|
||||
$(MED_LDFLAGS) -lMEDWrapper -lMEDWrapperBase -lMEDWrapper_V2_2 -lMEDWrapper_V2_1
|
||||
|
||||
|
||||
MED_Test_CPPFLAGS = \
|
||||
@ -88,5 +88,6 @@ MED_Test_LDADD = \
|
||||
$(MED_LDFLAGS) \
|
||||
-lMEDWrapper \
|
||||
-lMEDWrapperBase \
|
||||
-lMEDWrapper_V2_2
|
||||
-lMEDWrapper_V2_2 \
|
||||
-lMEDWrapper_V2_1
|
||||
|
||||
|
@ -69,7 +69,7 @@ libSMESHClient_la_LDFLAGS = \
|
||||
$(KERNEL_LDFLAGS) -lSalomeLifeCycleCORBA -lSalomeNS -lOpUtil -lSALOMEBasics \
|
||||
-lSalomeIDLKernel -lSALOMELocalTrace \
|
||||
$(GEOM_LDFLAGS) -lNMTDS -lSalomeIDLGEOM \
|
||||
$(MED_LDFLAGS) -lMEDWrapper_V2_2 -lSalomeIDLMED -lMEDWrapper \
|
||||
$(MED_LDFLAGS) -lMEDWrapper_V2_2 -lMEDWrapper_V2_1 -lSalomeIDLMED -lMEDWrapper \
|
||||
$(CAS_KERNEL)
|
||||
|
||||
SMESHClientBin_CPPFLAGS = \
|
||||
|
Loading…
Reference in New Issue
Block a user