Ticket Change Details
Not logged in
Overview

Artifact ID: 1676bc108cb20c8555b65a09b20ec3bbc3ddac36
Ticket: 78f6da78117ca3438361a0ac9d8580efdc2a9a06
Some functions fail to compile if ICONV not available
User & Date: anonymous 2020-01-24 13:35:45
Changes

  1. foundin changed to: "4.3.0a"
  2. icomment:
    fnct_ImportDBF uses load_dxf, which is not available if ICONV is not defined.
    Similar cases are fnct_ExportDBF, fnct_ImportSHP and fnct_ExportSHP.
    
    I've added at their beginning:
    
    <pre>
    ifdef OMIT_ICONV
        sqlite3_result_null(context);
    #else<br>
        ... (original code)
    #endif
    </pre>
    
  3. login: "anonymous"
  4. mimetype: "text/html"
  5. private_contact changed to: "972d8deabc520911f182bacf2ef1befc2543cb9d"
  6. severity changed to: "Severe"
  7. status changed to: "Open"
  8. title changed to:
    Some functions fail to compile if ICONV not available
    
  9. type changed to: "Build_Problem"