Changeset 77
- Timestamp:
- 14/10/06 23:38:20 (2 years ago)
- Location:
- trunk
- Files:
-
- 1 removed
- 19 modified
-
c2s/c2s.h (modified) (1 diff)
-
c2s/Makefile.am (modified) (1 diff)
-
ChangeLog (modified) (1 diff)
-
configure.in (modified) (2 diffs)
-
docs/layout (modified) (1 diff)
-
expat (deleted)
-
Makefile.am (modified) (1 diff)
-
README (modified) (1 diff)
-
resolver/Makefile.am (modified) (1 diff)
-
router/Makefile.am (modified) (1 diff)
-
s2s/Makefile.am (modified) (1 diff)
-
sm/Makefile.am (modified) (1 diff)
-
storage/Makefile.am (modified) (1 diff)
-
sx/sasl.h (modified) (1 diff)
-
sx/sx.h (modified) (1 diff)
-
util/config.c (modified) (1 diff)
-
util/nad.c (modified) (3 diffs)
-
util/nad.h (modified) (2 diffs)
-
util/util.h (modified) (3 diffs)
-
util/xconfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/c2s/c2s.h
r70 r77 23 23 #endif 24 24 25 #include <expat.h> 26 25 27 #include "mio/mio.h" 26 28 #include "sx/sx.h" -
trunk/c2s/Makefile.am
r2 r77 9 9 $(top_builddir)/mio/libmio.la \ 10 10 $(top_builddir)/util/libutil.la \ 11 $(top_builddir)/subst/libsubst.la \ 12 $(top_builddir)/expat/libexpat.la 11 $(top_builddir)/subst/libsubst.la -
trunk/ChangeLog
r75 r77 1 2006-10-14 Tomasz Sterna <tomek@xiaoka.com> 2 * using system-wide expat (by Maxim Britov) 3 1 4 2006-10-08 Tomasz Sterna <tomek@xiaoka.com> 2 5 * integrated Juha Heinanen's authreg_pam realm handling -
trunk/configure.in
r52 r77 311 311 312 312 AC_DEFINE(HAVE_SSL,1,[Define to 1 if OpenSSL is available.]) 313 fi 314 315 dnl find expat 316 AC_ARG_ENABLE(expat, AC_HELP_STRING([--enable-expat], [enable expat (yes)]), want_expat=$enableval, want_expat=yes) 317 if test "x-$want_expat" = "x-yes" ; then 318 AC_CHECK_HEADERS(expat.h) 319 LIBS="-lexpat $LIBS" 313 320 fi 314 321 … … 783 790 tools/Makefile \ 784 791 man/Makefile \ 785 expat/Makefile \786 792 mio/Makefile \ 787 793 subst/Makefile \ -
trunk/docs/layout
r2 r77 4 4 dev/ - Hacker docs 5 5 6 expat/ - Expat (XML parsing library)7 6 idn/ - GNU Libidn (stringprep) 8 7 mio/ - Managed Input/Ouput (FD event processor) -
trunk/Makefile.am
r2 r77 1 1 EXTRA_DIST = PROTOCOL Doxyfile.in README.win32 contrib 2 2 3 SUBDIRS = etc tools man expatmio subst sx util c2s resolver router s2s sm3 SUBDIRS = etc tools man mio subst sx util c2s resolver router s2s sm 4 4 5 5 docs: Doxyfile -
trunk/README
r2 r77 1 README for Jabber Open Source Server (2. 0s8)2 3 Thanks for downloading jabberd 2. 0. Below are some basic instructions to1 README for Jabber Open Source Server (2.1ch) 2 3 Thanks for downloading jabberd 2.1. Below are some basic instructions to 4 4 get you started. Complete documentation is available at 5 5 http://jabberd.jabberstudio.org/2/docs/ 6 6 7 7 -- the jabberd team 8 9 10 Required packages: 11 12 - expat - XML parsing libraries 13 http://expat.sourceforge.net/ 8 14 9 15 -
trunk/resolver/Makefile.am
r2 r77 9 9 $(top_builddir)/mio/libmio.la \ 10 10 $(top_builddir)/util/libutil.la \ 11 $(top_builddir)/subst/libsubst.la \ 12 $(top_builddir)/expat/libexpat.la 11 $(top_builddir)/subst/libsubst.la -
trunk/router/Makefile.am
r2 r77 9 9 $(top_builddir)/mio/libmio.la \ 10 10 $(top_builddir)/util/libutil.la \ 11 $(top_builddir)/subst/libsubst.la \ 12 $(top_builddir)/expat/libexpat.la 11 $(top_builddir)/subst/libsubst.la -
trunk/s2s/Makefile.am
r2 r77 9 9 $(top_builddir)/mio/libmio.la \ 10 10 $(top_builddir)/util/libutil.la \ 11 $(top_builddir)/subst/libsubst.la \ 12 $(top_builddir)/expat/libexpat.la 11 $(top_builddir)/subst/libsubst.la -
trunk/sm/Makefile.am
r17 r77 49 49 $(top_builddir)/mio/libmio.la \ 50 50 $(top_builddir)/util/libutil.la \ 51 $(top_builddir)/subst/libsubst.la \ 52 $(top_builddir)/expat/libexpat.la 51 $(top_builddir)/subst/libsubst.la 53 52 54 53 libmod_active_la_SOURCES = mod_active.c -
trunk/storage/Makefile.am
r2 r77 10 10 $(top_builddir)/mio/libmio.la \ 11 11 $(top_builddir)/util/libutil.la \ 12 $(top_builddir)/subst/libsubst.la \ 13 $(top_builddir)/expat/libexpat.la 12 $(top_builddir)/subst/libsubst.la -
trunk/sx/sasl.h
r18 r77 26 26 #include <sasl/sasl.h> 27 27 #include <sasl/saslutil.h> 28 #include <sasl/saslplug.h> 28 29 29 30 #ifdef __cplusplus -
trunk/sx/sx.h
r2 r77 28 28 #include "ac-stdint.h" 29 29 30 #include <expat /expat.h>30 #include <expat.h> 31 31 #include <util/util.h> 32 32 -
trunk/util/config.c
r2 r77 20 20 21 21 #include "util.h" 22 #include "expat /expat.h"22 #include "expat.h" 23 23 24 24 /** new config structure */ -
trunk/util/nad.c
r62 r77 35 35 #include "util.h" 36 36 37 #ifdef HAVE_EXPAT 38 #include "expat/expat.h" 39 #endif 37 #include "expat.h" 40 38 41 39 /* define NAD_DEBUG to get pointer tracking - great for weird bugs that you can't reproduce */ … … 1181 1179 } 1182 1180 1183 #ifdef HAVE_EXPAT1184 1181 1185 1182 /** parse a buffer into a nad */ … … 1324 1321 return bd.nad; 1325 1322 } 1326 1327 #endif -
trunk/util/nad.h
r2 r77 48 48 #ifdef HAVE_CONFIG_H 49 49 # include <config.h> 50 #endif51 52 /* !!! if configure ever checks for expat, then remove this */53 #ifndef HAVE_EXPAT54 # define HAVE_EXPAT 155 50 #endif 56 51 … … 149 144 nad_t nad_deserialize(pool_t p, const char *buf); 150 145 151 #ifdef HAVE_EXPAT152 146 /** create a nad from raw xml */ 153 147 nad_t nad_parse(pool_t p, const char *buf, int len); 154 #endif155 148 156 149 /* these are some helpful macros */ -
trunk/util/util.h
r2 r77 32 32 #include <assert.h> 33 33 34 #include <expat.h> 35 34 36 #ifdef HAVE_SYS_TYPES_H 35 37 # include <sys/types.h> … … 73 75 extern "C" { 74 76 #endif 75 76 /* expat is available */77 #define HAVE_EXPAT 178 79 77 80 78 /* crypto hashing utils */ … … 532 530 nad_t nad_deserialize(nad_cache_t cache, const char *buf); 533 531 534 #ifdef HAVE_EXPAT535 532 /** create a nad from raw xml */ 536 533 nad_t nad_parse(nad_cache_t cache, const char *buf, int len); 537 #endif538 534 539 535 /* these are some helpful macros */ -
trunk/util/xconfig.c
r2 r77 21 21 #include "xconfig.h" 22 22 23 #include "expat /expat.h"23 #include "expat.h" 24 24 25 25 #include <stdio.h>
