Changeset 149

Show
Ignore:
Timestamp:
12/10/02 09:26:13 (6 years ago)
Author:
jajcus
Message:

- Version: 1.2.1
- fixes for compilation on FreeBSD

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/NEWS

    r143 r149  
     1 
     2Version 1.2.1 
     3------------- 
     4 
     5Changes 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 
    118 
    219Version 1.2.0 
  • trunk/configure.ac

    r143 r149  
    11# Process this file with autoconf to produce a configure script. 
    2 AC_INIT([jabber-gg-transport], [1.2.0], [jajcus@pld.org.pl]) 
     2AC_INIT([jabber-gg-transport], [1.2.1], [jajcus@pld.org.pl]) 
    33AC_CONFIG_SRCDIR([src/ggtrans.h]) 
    44AM_INIT_AUTOMAKE 
     
    1515 
    1616# Checks for libraries. 
    17 AC_CHECK_LIB([gadu], [gg_change_info],[],AC_MSG_ERROR("You need libgadu (from ekg>=20020223 package) to compile this.")) 
     17AC_CHECK_LIB([gadu], [gg_change_info],[],AC_MSG_ERROR("You need libgadu (from ekg>=20020807 package) to compile this.")) 
     18AC_CHECK_LIB([iconv], [iconv_open]) 
    1819 
    1920AC_ARG_WITH(pthread, 
     
    7778AC_HEADER_STDC 
    7879AC_HEADER_SYS_WAIT 
    79 AC_CHECK_HEADERS([stdlib.h string.h]) 
     80AC_CHECK_HEADERS([stdlib.h string.h iconv.h]) 
    8081AC_CHECK_HEADERS([sys/socket.h netdb.h netinet/in.h]) 
    8182AC_CHECK_HEADERS([sys/time.h unistd.h errno.h fcntl.h]) 
     83AC_NEED_STDINT_H 
    8284 
    8385# Checks for typedefs, structures, and compiler characteristics. 
     
    9496AC_CHECK_FUNCS([select socket],[],AC_MSG_ERROR("Some functions needed are missing")) 
    9597AC_CHECK_FUNCS([memset strchr],[],AC_MSG_ERROR("Some functions needed are missing")) 
     98AC_CHECK_FUNCS([iconv_open],[],AC_MSG_ERROR("Some functions needed are missing")) 
     99AC_CHECK_LIB([gadu], [gg_event_free],[],AC_MSG_ERROR("You need libgadu>=20020807.")) 
    96100 
    97101AC_CONFIG_SUBDIRS([libxode])