Sophie

Sophie

distrib > Mandriva > current > i586 > media > contrib-release > by-pkgid > e7d917583221c51cc1c62c9d2e10849f > files > 9

libwbxml-0.10.7-1mdv2010.0.i586.rpm

  WBXML Library INSTALLATION OVERVIEW
  
  Dependencies
  ------------
  
    The WBXML library needs the Expat XML Parser library to convert XML to WBXML
    (http://expat.sourceforge.net)
    
    On Linux Debian, just type:
    $ apt-get install libexpat1-dev
  
  Unix(Linux/FreeBSD/Solaris)
  ---------------------------
    
    libwbxml is using CMake as "build environment" (http://www.cmake.org).
    You must have cmake 2.4+. For example, on Debian:
    $ apt-get install cmake

    We only support/test "out of source builds", which means you have to create a 
     separated build directory.

    Example 1:

        mkdir build
        cd build
        cmake -DCMAKE_INSTALL_PREFIX=$prefix /path/to/libwbxml/source/
        make
        make test
        make install

    Example 2:

        cd /path/to/libwbxml/source/
        cmake . -B/tmp/build/libwbxml
        cd /tmp/build/libwbxml
        make
        make test
        make install

  Windows
  -------
  
    The Win32 binary of Expat library is in: "/win32/expat"
  
     Just open the 'win32/libwbxml.dsw' VC++ workspace, and build:
     
        - libwbxml2.dll : Main WBXML engine - Parser and Encoder (needs Expat for XML to WBXML conversion)
        - wbxml2xml.exe : WBXML to XML converter tool
        - xml2wbxml.exe : XML to WBXML converter tool

  Symbian
  -------
    
     You must have the "Nokia S60 SDK v1.2" installed.
     
     You must have the Expat library (ported to Symbian) installed.
     
     Go to 'symbian/' folder and type:
     c:\Symbian\libwbxml\symbian> bldmake bldfiles
     c:\Symbian\libwbxml\symbian> abld build wins deb

  Compilation Flags
  -----------------
    
    WBXML_ENCODER_USE_STRTBL : Enable "String Table" code in WBXML Encoder
    WBXML_SUPPORT_WML : Support of WML 1.0 / WML 1.1 / WML 1.2 / WML 1.3
    WBXML_SUPPORT_WTA : Support of WTA 1.0 / WTAWML 1.2 / CHANNEL 1.1 / CHANNEL 1.2
    WBXML_SUPPORT_SI : Support of SI 1.0
    WBXML_SUPPORT_SL : Support of SL 1.0
    WBXML_SUPPORT_CO : Support of CO 1.0
    WBXML_SUPPORT_PROV : Support of PROV 1.0
    WBXML_SUPPORT_EMN : Support of EMN 1.0
    WBXML_SUPPORT_DRMREL : Support of DRMREL 1.0
    WBXML_SUPPORT_OTA_SETTINGS : Support of Ericsson / Nokia OTA Settings v7.0
    WBXML_SUPPORT_SYNCML : Support of SyncML 1.0 / SyncML 1.1 / SyncML 1.2
    WBXML_SUPPORT_WV : Support of Wireless-Village CSP 1.1 / CSP 1.2
    
    HAVE_EXPAT : Enable XML Parsing feature (needs Expat)