Changeset 30893 for main


Ignore:
Timestamp:
2016-10-20T16:15:28+13:00 (8 years ago)
Author:
ak19
Message:

Dr Bainbridge made a fix to yaz to get it to compile again: had to replace the defunct reference to CPPFunction with a ref to rl_completion_funct_t now.

Location:
main/trunk/greenstone2/runtime-src/packages/yaz
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/runtime-src/packages/yaz/README.gsdl

    r10175 r30893  
    22when acting as a z39.50 client.
    33
    4 June 2005, kjdon:
     43. CHANGES TO YAZ-2.1.4 TO CREATE THE GREENSTONE VERSION OF IT, ak19
     520 Oct 2016
     6
     7MODIFIED FILE: yaz-2.1.4/client/client.c
     8
     9EXPLANATION: The references to readline's CPPFunction have been deprecated. They needed to be replaced with readline's rl_completion_func_t. Refer to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741767
     10
     11
     12CHANGE:
     133501c3501,3503
     14<     rl_attempted_completion_function = (CPPFunction*)readline_completer;
     15---
     16>     //rl_attempted_completion_function = (CPPFunction*)readline_completer;
     17>     rl_attempted_completion_function = (rl_completion_func_t*)readline_completer;
     18>
     19
     20
     212. June 2005, kjdon:
    522Changed to use yaz version 2.1.4. This is also used by the new z3950server.
    623The original yaz download has been added to cvs - this is unzipped and untared by the configure script, then only the src and client directories are compiled.
     
    1633    merely wasting some disk space and some compile-time CPU.
    1734
    18 John McPherson
     351. John McPherson
    19363 August 2000
    2037
     
    2340September 2000:
    2441removed "ill" "server" "ztest" and "retrieval" subdirs.
     42
Note: See TracChangeset for help on using the changeset viewer.