Changeset 1924 for trunk/auto-reply

Show
Ignore:
Timestamp:
06/06/00 06:10:08 (9 years ago)
Author:
graham
Message:

New version and new tree structure fixes.

Location:
trunk/auto-reply
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/auto-reply/acinclude.m4.in

    r1225 r1924  
    4040  AC_MSG_CHECKING([for licq header files]) 
    4141 
    42   AC_FIND_FILE(licq_icqd.h, "../../src/inc", licq_inc) 
     42  AC_FIND_FILE(licq_icqd.h, "$prefix/include/licq", licq_inc) 
    4343  if test "$licq_inc" = no; then 
    4444    have_licq_inc=no 
     
    4848  if test "$have_licq_inc" = yes; then 
    4949    AC_MSG_RESULT(["found"]) 
    50     LICQ_INCLUDES="../$licq_inc" 
     50    LICQ_INCLUDES="$licq_inc" 
    5151    AC_SUBST(LICQ_INCLUDES) 
    5252  else 
  • trunk/auto-reply/configure.in

    r1120 r1924  
    66 
    77dnl All versioning is done via the following line 
    8 AM_INIT_AUTOMAKE(Licq-AutoReply, 0.15) 
     8AM_INIT_AUTOMAKE(Licq-AutoReply, 0.16) 
    99AM_CONFIG_HEADER(config.h) 
    1010 
  • trunk/auto-reply/src/main.cpp

    r1220 r1924  
    3737const char *LP_Version() 
    3838{ 
    39   static const char version[] = "0.15"; 
     39  static const char version[] = "0.16"; 
    4040  return version; 
    4141}