Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 13, 2009, 10:16:19 AM (15 years ago)
Author:
rgrieder
Message:
  • Using REGEX "…" EXCLCUDE in INSTALL avoids a call to FILE(GLOB) (quite slow) at CMake (instead of install) time
  • Excluded audio target again (linker tests were successfull so far)
  • Removed unexplainable code I once inserted in cpptcl.cc, didn't experience the problem anymore (was weird behaviour anyway)
  • Sorting out some library depdencies (just a detail)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/src/cpptcl/changes_orxonox.diff

    r2641 r2652  
    4747 {
    4848      interp_ =  interp;
    49 @@ -940,6 +952,10 @@
    50       // delete all callbacks that were registered for given interpreter
    51  
    52       {
    53 +          // TODO: why could this probably be necessary? map::find of empty map
    54 +          // shouldn't be a problem.
    55 +          if (callbacks.size() == 0)
    56 +            return;
    57            callback_map::iterator it = callbacks.find(interp);
    58            if (it == callbacks.end())
    59            {
    6049--- cpptcl.h    Wed Jan 28 20:56:11 2009
    6150+++ cpptcl.h    Sat Jan 24 12:52:54 2009
Note: See TracChangeset for help on using the changeset viewer.