Changeset 344
- Timestamp:
- 12/29/07 08:56:55 (1 year ago)
- Files:
-
- trunk/pycamiface/motmot.cam_iface.egg-info/stdeb.cfg (modified) (1 diff)
- trunk/pycamiface/setupext.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/pycamiface/motmot.cam_iface.egg-info/stdeb.cfg
r343 r344 3 3 Depends: libcamiface 4 4 Suggests: camiface 5 Build-Depends: libcamiface-dev , python-pyrex (>= 0.9.4.1+lxml0.9.5.1a)5 Build-Depends: libcamiface-dev (>= 0.4.dev341), python-pyrex (>= 0.9.4.1+lxml0.9.5.1a) trunk/pycamiface/setupext.py
r339 r344 25 25 # Make an object to eliminate the temporary file at exit time. 26 26 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')39 27 40 28 def add_cmu1394(ext): … … 105 93 ]) 106 94 ext.libraries.append('cam_iface_camwire') 107 add_system_raw1394(ext)108 add_system_libdc1394(ext)109 95 return ext 110 96
