tar xvf cistem-1.0.0-beta-source-code.tar.gz
cd cistem-1.0.0-beta
vi src/gui/AssetPickerComboPanel.h
bool FillComboBox(long wanted_refinement_package, bool always_select_latest = false) {AssetComboBox->FillWithRefinements(wanted_refinement_package, always_select_latest);}
更改为:
bool FillComboBox(long wanted_refinement_package, bool always_select_latest = false) {return AssetComboBox->FillWithRefinements(wanted_refinement_package, always_select_latest);}
第65行的代码:
bool FillComboBox(bool include_all_images_group) {AssetComboBox->FillWithImageGroups(include_all_images_group);}
更改为:
bool FillComboBox(bool include_all_images_group) {return AssetComboBox->FillWithImageGroups(include_all_images_group);}
第73行的代码:
bool FillComboBox(bool include_all_movies_group) {AssetComboBox->FillWithMovieGroups(include_all_movies_group);}
更改为:
bool FillComboBox(bool include_all_movies_group) {return AssetComboBox->FillWithMovieGroups(include_all_movies_group);}
sed -i 's/\-03/\-00/' configure
yum install libtiff xorg-x11-* ./configure --prefix=/path/to/CISTEM --with-fftw-dir=/path/to/FFTW make -j make install