Changeset 565

Show
Ignore:
Timestamp:
10/30/04 16:47:09 (4 years ago)
Author:
jajcus
Message:

- use external expat (the one previously included in the sources was buggy)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/INSTALL

    r537 r565  
    1515        - libidn >= 0.3.0 (http://www.gnu.org/software/libidn/) 
    1616                Tested with libidn-0.4.1 
    17          
     17 
     18        - expat >= 1.95.1 (http://expat.sourceforge.net/) 
     19                Tested with expat-1.95.6-5 
     20 
    1821        - pkgconfig (http://www.freedesktop.org/software/pkgconfig/) 
    1922 
  • trunk/libxode

    • Property svn:ignore changed from
      INSTALL
      Makefile
      Makefile.in
      aclocal.m4
      config.guess
      config.log
      config.status
      config.sub
      configure
      libtool
      libxode-config
      ltmain.sh
      autom4te.cache
      mkinstalldirs
      depcomp
      missing
      install-sh
      to
      INSTALL
      Makefile
      Makefile.in
      aclocal.m4
      config.guess
      config.log
      config.status
      config.sub
      configure
      libtool
      libxode-config
      ltmain.sh
      autom4te.cache
      mkinstalldirs
      depcomp
      missing
      install-sh
      compile
  • trunk/libxode/configure.ac

    r136 r565  
    1313AC_C_BIGENDIAN 
    1414 
     15AM_PATH_EXPAT 
    1516AC_CHECK_FUNC(snprintf,AC_DEFINE(HAVE_SNPRINTF,1,[Define if snprintf function is available])) 
    1617 
  • trunk/libxode/include/Makefile.am

    r53 r565  
    22 
    33noinst_HEADERS =  \ 
    4         xmlparse.h \ 
    5         libxode.h \ 
    6         asciitab.h \ 
    7         hashtable.h \ 
    8         iasciitab.h \ 
    9         latin1tab.h \ 
    10         nametab.h \ 
    11         utf8tab.h \ 
    12         xmldef.h \ 
    13         xmlrole.h \ 
    14         xmltok.h \ 
    15         xmltok_impl.h 
     4        libxode.h 
  • trunk/libxode/include/libxode.h

    r476 r565  
    1818#include <sys/time.h> 
    1919 
    20 #include "xmlparse.h" 
     20#include "expat.h" 
    2121#ifdef HAVE_CONFIG_H 
    2222#include <config.h> 
  • trunk/libxode/src/Makefile.am

    r179 r565  
    77        expat.c \ 
    88        genhash.c \ 
    9         hashtable.c \ 
    109        pool.c \ 
    1110        sha.c \ 
     
    1312        socket.c \ 
    1413        str.c \ 
    15         xmlnode.c \ 
    16         xmlparse.c \ 
    17         xmlrole.c \ 
    18         xmltok.c 
     14        xmlnode.c 
    1915 
    2016AM_CFLAGS = -Wall -g 
    2117 
    2218EXTRA_DIST = xmltok_impl.c xmltok_ns.c 
    23 libxode_la_LDFLAGS = -version-info 2:0:1 
     19libxode_la_CFLAGS = $(EXPAT_CFLAGS) 
     20libxode_la_LDFLAGS = -version-info 2:0:1 $(EXPAT_LIBS)