Member Site Forums Rosetta 3 Rosetta 3 – Build/Install Rosetta 3.2 Reply To: Rosetta 3.2

#4901
Anonymous

    Hi all,

    If you make the following change to src/core/conformation/symmetry/util.cc, at around line 360, this and everything else will compile with gcc 4.5.

    It seems simply that there is an extra “PDBInfo.” But I don’t really know if this change will mess things up or not. Confirmation from the author would be appreciated.

    #ifdef WIN32
    pose::PDBInfoOP pdb_info_src (new pose::PDBInfo( pose.pdb_info() ));
    #else
    /// pose::PDBInfoOP pdb_info_src = new pose::PDBInfo::PDBInfo( pose.pdb_info() );
    pose::PDBInfoOP pdb_info_src = new pose::PDBInfo( pose.pdb_info() );
    #endif