Changeset 20746


Ignore:
Timestamp:
2009-09-29T18:17:44+13:00 (15 years ago)
Author:
ak19
Message:

Dr Bainbridge suggested compiling libiconv up as a static library would perhaps fix the errors concerning accent folding failing for mgpp (and mg) that occur during building, since mgpp/mg also use some libiconv library and may be finding this (the wrong one) instead. The solution would be to generate the .a static library file instead of the .so for linux and .dylib for Mac which are dynamically linked libraries. To generate libiconv as a static library the disable-shared option has been added to its configure statement (enable-static didn't work or conflicted with precompiled apache web server).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/runtime-src/packages/configure

    r20668 r20746  
    194194  if [ ! -e libiconv-1.13.1 ] ; then gzip -dc libiconv-1.13.1.tar.gz | tar -xf - ; fi
    195195  cd libiconv-1.13.1&& \
    196     ./configure $CACHE_FILE --prefix="${prefix}/apache-httpd/${GSDLOS}" $HOSTTARGETFLAGS&&
     196    ./configure $CACHE_FILE --prefix="${prefix}/apache-httpd/${GSDLOS}" --disable-shared $HOSTTARGETFLAGS&&
    197197    make && make install
    198198  echo ""
Note: See TracChangeset for help on using the changeset viewer.