Changeset 149
- Timestamp:
- 12/10/02 09:26:13 (6 years ago)
- Files:
-
- trunk/NEWS (modified) (1 diff)
- trunk/acinclude.m4 (added)
- trunk/configure.ac (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/NEWS
r143 r149 1 2 Version 1.2.1 3 ------------- 4 5 Changes from 1.2.0: 6 7 * compilation on FreeBSD fixed 8 9 * GG status change fixed when no reason string is given 10 11 * fixed freeing already free xmlnode query while registering. 12 Patch by Tomasz Sterna <tomek@smoczy.net> 13 14 * added jabber:iq:version jggtrans query support. Psi nicely shows it on 15 transport tooltip. 16 Patch by Tomasz Sterna <tomek@smoczy.net> 17 1 18 2 19 Version 1.2.0 trunk/configure.ac
r143 r149 1 1 # Process this file with autoconf to produce a configure script. 2 AC_INIT([jabber-gg-transport], [1.2. 0], [jajcus@pld.org.pl])2 AC_INIT([jabber-gg-transport], [1.2.1], [jajcus@pld.org.pl]) 3 3 AC_CONFIG_SRCDIR([src/ggtrans.h]) 4 4 AM_INIT_AUTOMAKE … … 15 15 16 16 # Checks for libraries. 17 AC_CHECK_LIB([gadu], [gg_change_info],[],AC_MSG_ERROR("You need libgadu (from ekg>=20020223 package) to compile this.")) 17 AC_CHECK_LIB([gadu], [gg_change_info],[],AC_MSG_ERROR("You need libgadu (from ekg>=20020807 package) to compile this.")) 18 AC_CHECK_LIB([iconv], [iconv_open]) 18 19 19 20 AC_ARG_WITH(pthread, … … 77 78 AC_HEADER_STDC 78 79 AC_HEADER_SYS_WAIT 79 AC_CHECK_HEADERS([stdlib.h string.h ])80 AC_CHECK_HEADERS([stdlib.h string.h iconv.h]) 80 81 AC_CHECK_HEADERS([sys/socket.h netdb.h netinet/in.h]) 81 82 AC_CHECK_HEADERS([sys/time.h unistd.h errno.h fcntl.h]) 83 AC_NEED_STDINT_H 82 84 83 85 # Checks for typedefs, structures, and compiler characteristics. … … 94 96 AC_CHECK_FUNCS([select socket],[],AC_MSG_ERROR("Some functions needed are missing")) 95 97 AC_CHECK_FUNCS([memset strchr],[],AC_MSG_ERROR("Some functions needed are missing")) 98 AC_CHECK_FUNCS([iconv_open],[],AC_MSG_ERROR("Some functions needed are missing")) 99 AC_CHECK_LIB([gadu], [gg_event_free],[],AC_MSG_ERROR("You need libgadu>=20020807.")) 96 100 97 101 AC_CONFIG_SUBDIRS([libxode])
