Changeset 344

Show
Ignore:
Timestamp:
12/29/07 08:56:55 (1 year ago)
Author:
astraw
Message:

fix broken camwire build

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/pycamiface/motmot.cam_iface.egg-info/stdeb.cfg

    r343 r344  
    33Depends: libcamiface 
    44Suggests: camiface 
    5 Build-Depends: libcamiface-dev, python-pyrex (>= 0.9.4.1+lxml0.9.5.1a) 
     5Build-Depends: libcamiface-dev (>= 0.4.dev341), python-pyrex (>= 0.9.4.1+lxml0.9.5.1a) 
  • trunk/pycamiface/setupext.py

    r339 r344  
    2525    # Make an object to eliminate the temporary file at exit time. 
    2626    globals()["_cleanup_"+_to] = CleanUpFile(_to) 
    27  
    28 def add_system_raw1394(ext): 
    29     """Add build requirements for system's libraw1394""" 
    30     if not os.path.exists('/usr/include/libraw1394/raw1394.h'): 
    31         raise RuntimeError('libraw1394 not in system headers - refusing to build') 
    32     ext.libraries.append('raw1394') 
    33  
    34 def add_system_libdc1394(ext): 
    35     """Add build requirements for system's libdc1394""" 
    36     if not os.path.exists('/usr/include/libdc1394/dc1394_control.h'): 
    37         raise RuntimeError('libdc1394 not in system headers - refusing to build') 
    38     ext.libraries.append('dc1394_control') 
    3927 
    4028def add_cmu1394(ext): 
     
    10593                                  ]) 
    10694    ext.libraries.append('cam_iface_camwire') 
    107     add_system_raw1394(ext) 
    108     add_system_libdc1394(ext) 
    10995    return ext 
    11096