Changes between Initial Version and Version 1 of Ticket #62513, comment 4


Ignore:
Timestamp:
May 22, 2021, 1:53:03 AM (3 years ago)
Author:
weitzner (Brian Weitzner)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #62513, comment 4

    initial v1  
    1 I downloaded the source and attempted to work through this and found the following steps to be necessary:
     1EDIT: This should be a reproducible way to build the package locally:
    22
    3 **asn2gnb2.c:63**
    43{{{
    5 #include <ffprint.h>
     4wget https://ftp.ncbi.nlm.nih.gov/toolbox/ncbi_tools/old/20120620/ncbi.tar.gz
     5tar xf ncbi.tar.gz
     6patch -p0 < fix-macos-build.patch
     7./ncbi/make/makedis.csh 2>&1 | tee out.makedis.txt
    68}}}
    79
    8 **salutil.c:54**
    9 {{{
    10 #include <alignmgr2.h>
    11 }}}
    12 
    13 **viewgif.c:48**
    14 {{{
    15 #include <unistd.h>
    16 }}}
    17 
    18 **wblast.c:298**
    19 {{{
    20 #include <algo/blast/core/blast_util.h>
    21 #include <accid1.h>
    22 }}}
    23 
    24 After making those changes I can build the tool locally and the executable I am interested in seems to be working correctly. I would be happy to contribute this fix, but as it would be my first port contribution I might look for a little guidance. Thanks!
     10The patch file can be found [https://trac.macports.org/attachment/ticket/62513/fix-macos-build.patch here] I would be happy to contribute this fix, but as it would be my first port contribution I might look for a little guidance. Thanks!