Changeset 333

Show
Ignore:
Timestamp:
12/23/06 12:56:00 (17 years ago)
Author:
pieterpalmers
Message:

- bump version to 1.999.0 such that it stays ahead of 1.x
- fix issue that prevented the code from

being compiled for --disable-debug

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/libfreebob-2.0/configure.ac

    r250 r333  
    2323 
    2424m4_define(freebob_major_version, 1) 
    25 m4_define(freebob_minor_version, 1
     25m4_define(freebob_minor_version, 999
    2626m4_define(freebob_micro_version, 0) 
    2727 
  • branches/libfreebob-2.0/src/libstreaming/MotuStreamProcessor.cpp

    r312 r333  
    712712                ++it ) { 
    713713 
    714 #ifdef DEBUG 
    715                 //FIXME: make this into a static_cast when not DEBUG? 
    716                 Port *port=dynamic_cast<Port *>(*it); 
    717                 assert(port); // this should not fail!! 
     714                Port *port=static_cast<Port *>(*it); 
     715                assert(port); // this should not fail!! 
    718716 
    719717                // Currently the only packet type of events for MOTU  
     
    721719                // might also be sent via "packet" events. 
    722720                // assert(pinfo->getFormat()==MotuPortInfo::E_Midi); 
    723 #endif 
     721 
    724722                // FIXME: MIDI output is completely untested at present. 
    725723                switch (port->getPortType()) { 
     
    13981396                ++it ) { 
    13991397 
    1400 #ifdef DEBUG 
    1401                 //FIXME: make these into a static_casts when not DEBUG? 
    14021398                Port *port=dynamic_cast<Port *>(*it); 
    14031399                assert(port); // this should not fail!! 
     
    14071403                // might also be sent via "packet" events, so allow  
    14081404                // for this possible expansion. 
    1409 #endif 
     1405 
    14101406                // FIXME: MIDI input is completely untested at present. 
    14111407                switch (port->getPortType()) {