Changeset 82 for CMT/HEAD


Ignore:
Timestamp:
Sep 5, 2005, 10:45:59 AM (19 years ago)
Author:
arnault
Message:

Make include_dirs subject to private sections - see CL#277

Location:
CMT/HEAD
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r81 r82  
     12005-09-05  Christian Arnault  <arnault@lal.in2p3.fr> 277
     2
     3        * mgr/cmt_buildcvsinfos2.sh (module): Adapt to the new syntax by adding the protocol level.
     4
     5        * source/cmt_include.cxx (action): Submit include_dirs statement to private scoping
     6
    172005-09-01  Christian Arnault  <arnault@lal.in2p3.fr> 276
    28
  • CMT/HEAD/mgr/cmt.nmake

    r80 r82  
    33#  Application cmt
    44#
    5 #   Generated Wed Aug 31 17:37:50 2005  by carnault
     5#   Generated Thu Sep 01 15:10:41 2005  by carnault
    66#
    77#====================================
  • CMT/HEAD/mgr/cmt_buildcvsinfos2.sh

    r28 r82  
    1010# ...
    1111#
    12 # and is used whenever one tries to import a module named .cmtcvsinfos/<module>
     12# and is used whenever one tries to import a module named .cmtcvsinfos/<protocol-level>/<module>
    1313#
    1414#---------------------------------------------------------------------
     
    223223
    224224root=$CVSROOT
    225 
    226 module=`echo $a | sed -e "s#.*[.]cmtcvsinfos/##"`
     225protocol_level=v1r1
     226
     227module=`echo $a | sed -e "s#.*[.]cmtcvsinfos/${protocol_level}/##"`
    227228error=
    228229
  • CMT/HEAD/source/cmt_include.cxx

    r79 r82  
    3131
    3232  if (use == 0) use = &(Use::current());
     33
     34  if (Cmt::get_current_access () == UserMode)
     35    {
     36      if (use->get_current_scope () == ScopePrivate) return;
     37    }
    3338
    3439  for (int i = 1; i < words.size (); i++)
Note: See TracChangeset for help on using the changeset viewer.