Closed GoogleCodeExporter closed 9 years ago
I don't know why this is breaking or why this fix works, but it's broken and
this fix works. Just comment out the dependencies no the .h files.
extensions = Feature(
"AMF encoder/decoder C extension.",
standard = True,
optional = True,
ext_modules = [
Extension('amfast.encode',
sources = [os.path.join('amfast', 'ext_src', 'encoder.c'),
os.path.join('amfast', 'ext_src', 'amf.c'),
#os.path.join('amfast', 'ext_src', 'amf.h')
]),
Extension('amfast.decode',
sources = [os.path.join('amfast', 'ext_src', 'decoder.c'),
os.path.join('amfast', 'ext_src', 'amf.c'),
#os.path.join('amfast', 'ext_src', 'amf.h')
]),
Extension('amfast.buffer',
sources = [os.path.join('amfast', 'ext_src', 'buffer.c'),
#os.path.join('amfast', 'ext_src', 'buffer.h')
]),
Extension('amfast.context',
sources = [os.path.join('amfast', 'ext_src', 'context.c'),
#os.path.join('amfast', 'ext_src', 'context.h')
])
])
Original comment by simhac...@gmail.com
on 21 Sep 2010 at 4:58
Original comment by dthomp...@gmail.com
on 23 Oct 2010 at 7:50
Original issue reported on code.google.com by
vijays...@gmail.com
on 5 Sep 2010 at 4:22