Changes between Version 1 and Version 2 of NetBSDBuild


Ignore:
Timestamp:
May 14, 2007, 10:40:23 AM (17 years ago)
Author:
mlucas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NetBSDBuild

    v1 v2  
    44This is not a complete and final instruction, but just a hint on what to expect.
    55
    6 * make vs. gmake (GNU make) issues
    7 * gcvt() legacy function
    8 * values.h legacy(?) header file
     6 * make vs. gmake (GNU make) issues
     7 * gcvt() legacy function
     8 * values.h legacy(?) header file
    99
    1010First I used the following configure parameters:
    1111
     12{{{
    1213  ./configure --prefix=/usr/pkg --with-libtiff=/usr/pkg --with-jpeg=/usr/pkg --with-geotiff=no --with-openthreads=no
    13 
     14}}}
    1415The (previously installed) tiff and jpeg libraries from the NetBSD pkgsrc are recognized and used.
    1516
     
    2223
    2324In the ossim/src/Makefile, however, the first target reads
     25{{{
    2426  apps: libs
    2527    (cd apps; make all; )
     28}}}
    2629
    2730I just replaced <code>make</code> with <code>$(MAKE)</code> to continue.
     
    3841I changed the two instances of gcvt() calls in ossim/src/ossim/vpfutil/vpfdisp.c
    3942
     43{{{
    4044  line 411:
    4145  -    gcvt(f,6,num)
     
    4448  -    gcvt(fptr[j],6,num);
    4549  +    snprintf(num,20,"%6g",fptr[j]);
     50}}}
    4651
    4752I don't yet know if this change is adequately reflecting what gcvt() is supposed to do.