Edgewall Software

Changes between Initial Version and Version 1 of Ticket #10327, comment 3


Ignore:
Timestamp:
Mar 3, 2018, 10:13:26 PM (6 years ago)
Author:
Ryan J Ollos

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #10327, comment 3

    initial v1  
    33
    44
    5 {{{
    6 apt install libsqlite3-dev icu-devtools libicu-dev
    7 wget https://www.sqlite.org/src/raw/ext/icu/icu.c?name=c2c7592574c08cd1270d909b8fb8797f6ea1f49e931e71dbcc25506b9b224580 -O icu.c
     5{{{#!sh
     6$ apt install libsqlite3-dev icu-devtools libicu-dev
     7$ wget https://www.sqlite.org/src/raw/ext/icu/icu.c?name=c2c7592574c08cd1270d909b8fb8797f6ea1f49e931e71dbcc25506b9b224580 -O icu.c
    88... change sqlite3_icu_init to sqlite3_sqliteicu_init
    9 gcc -shared icu.c `icu-config --ldflags` -fPIC -o libSqliteIcu.so
     9$ gcc -shared icu.c `icu-config --ldflags` -fPIC -o libSqliteIcu.so
     10}}}
    1011
    11 in trac.ini
     12In trac.ini:
     13{{{#!ini
    1214[sqlite]
    1315extensions = /full/path/libSqliteIcu
    14 
    1516}}}