1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
* This package ships from upstream with SWIG-generated files. As of the
writing this, upstream had used swig 1.3.31 to generate the files. In
the interest of no perturbing things too much, the build process for the
Debian package doesn't remove and regenerate the generated files.
Specifically, these files have been generated:
src/python/QuickfixPython.h
src/python/QuickfixPython.cpp
src/python/quickfix.py
src/ruby/QuickfixRuby.h
src/ruby/QuickfixRuby.cpp
In order to regenerate these files, you can do the following:
$ cd <top_src_dir>/src/python
$ swig -python -c++ ../quickfix.i
This will result in the following files:
src/quickfix.py
src/quickfix_wrap.cxx
src/quickfix_wrap.h
$ cd <top_src_dir>/src/ruby
$ swig -ruby -c++ ../quickfix.i
This will result in the following files:
src/quickfix_wrap.cxx
src/quickfix_wrap.h
In each case, the *_wrap.cxx file corresponds to the .cpp file and the
*_wrap.h file to the .h file.
-- Roberto C. Sanchez <roberto@connexer.com> Sat, 20 Jul 2013 09:51:56 -0400
|