Annotation of rpl/ChangeLog, revision 1.18

1.18    ! bertrand    1: * Wed Apr 07 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.14 (RPL/2)
1.17      bertrand    2: * Wed Apr 07 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.13 (RPL/2)
                      3: - implicit names can now be disabled by new IMPLICIT intrinsic:
                      4: cauchy:[~/cvs/test] > cat implicit.rpl
                      5: #!/usr/local/bin/rpl -sp
                      6: TEST
                      7: <<
                      8:     "none" implicit
                      9: 
                     10:     1 -> Z
                     11:     <<
                     12:         Z disp
                     13:         'Z' disp
                     14:     >>
                     15: 
                     16:     'Z' disp
                     17:     Z disp // Undefined
                     18: >>
                     19: 
                     20: cauchy:[~/cvs/test] > LANG=C ./implicit.rpl
                     21: +++RPL/2 (R) version 4.0.13 (Wednesday 04/07/10, 13:57:44 CEST)
                     22: +++Copyright (C) 1989 to 2009, 2010 BERTRAND Joel
                     23: 1
                     24: 'Z'
                     25: 'Z'
                     26: +++System : Invalid implicit name [6631]
                     27: cauchy:[~/cvs/test] > 
                     28: 
                     29: RPL/2 aborts because the last Z is undefined and not protected by ''.
                     30: By default, implicit is set to "ALL";
1.16      bertrand   31: - sqlite is upgraded to 3.6.23.1;
                     32: - openssl is upgraded to 1.0.0;
                     33: - major bug is fixed in RETURN intrinsic. It only occurs in evaluation
                     34: subroutine;
                     35: - table variable can now be sorted by SORT;
                     36: - some regressions between libtool 1.x and 2.x are fixed by workarouds in
                     37: Makefiles;
1.15      bertrand   38: - -a command line option analyzes program (structure and syntax) and
                     39: sends preprocessor output to standard output. This option is used by
                     40: rplc (RPL/2 compiler).
1.13      bertrand   41: * Tue Mar 09 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.12 (RPL/2)
                     42: - in formatted file, string format returned a variable length string even if
                     43: format was 'CHARACTER*(n)' (n characters string). Now, 'CHARACTER*(*)' returns
1.15      bertrand   44: a variable length string and 'CHARACTER*(n)' a fixed length string;
1.13      bertrand   45: - keyed access files support is added. Currently, only formatted files are
                     46: supported;
                     47: - direct access files support is added. Currenlty, these files can only be used
                     48: in formatted mode;
                     49: - virtual variables are now writte in UTF-8 and all special characters
                     50: in string are escaped;
1.12      bertrand   51: - all formatted files are now converted into UTF-8;
1.17      bertrand   52: - all file and unix socket names created by RPL/2 are now UTF-8 compliant;
1.12      bertrand   53: - RPL/2 tools (rpliconv, rplfile, rplpp and rplconvert) are now checked before
                     54: each execution (md5 and sha1 sums) to enhance security. If one of these tools
                     55: have been modified between RPL/2 compilation and current execution, RPL/2 aborts
                     56: on a non recoverable system error;
                     57: - openssl and sqlite3 libraries are added;
                     58: - RPL_HOME env variable is added. When RPL/2 is called from librpl, this
                     59: variable indicates RPL/2 root directory. If it is not set, root path
                     60: is given by configure script (d_exec_path);
1.11      bertrand   61: * Thu Mar 03 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.11 (RPL/2)
                     62: - configure.in and makefile.am's are modified to add Cygwin support. Interix
                     63: support is broken;
1.10      bertrand   64: - memory leak is fixed in recherche_type();
                     65: - TeX files are now written in UTF-8 even default locale differs;
                     66: - minor bug is fixed in ->STR (escaped characters);
1.9       bertrand   67: - minor bug is fixed in ->Q intrinsic. Resultat is returned as integer
                     68: fraction intead real one;
                     69: - SIGN now returns (0,0) instead (nan,nan) when complex argument is null;
1.8       bertrand   70: - Makefile.am are modified to authorize parallel builds;
1.7       bertrand   71: - minor bug is fixed in CR intrinsic. CR sends a carriage return to printer
                     72: and writes warning to standard output;
1.6       bertrand   73: * Wed Feb 10 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.10 (RPL/2)
1.5       bertrand   74: - escape codes are now converted in formateur(), not in recherche_type() to
                     75: avoid a minor bug in EDIT and VISIT intrinsics;
1.4       bertrand   76: - minor bug is fixed in formateur_reel();
1.7       bertrand   77: - file-5.03 is patched to avoid bus error on systems that require memory
1.3       bertrand   78: alignment;
1.2       bertrand   79: - minor bug is fixed in evaluation(). Error returned by RPL/C external functions
                     80: were able to be avoided by evaluation routine.
1.1       bertrand   81: * Tue Jan 26 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.9 (RPL/2)
                     82: - New benchmark on same hardware than old one :
                     83: cauchy:[~/rpl/bench] > ./bench.rpl 
                     84: +++RPL/2 (R) version 4.0.9 (samedi 23/01/2010, 18:06:08 CET)
                     85: +++Copyright (C) 1989 à 2009, 2010 BERTRAND Joël
                     86: Number of scalar operations per second and per core : 2383016
                     87: 
                     88: - PULPRFL does not abort on BUG() but on execution error;
                     89: - TRIM, REPL and TOKENIZE are added;
                     90: - sockets options are now set before bind();
                     91: - shutdown() is added to all connected sockets;
                     92: - minor bug is fixed in SUB intrinsic (segfault when SUB is called with
                     93: list argument and inexistant elements).
                     94: * Fri Jan 08 2010 BERTRAND Joël <rpl@systella.fr> rpl-4.0.8 (RPL/2)
                     95: - minor bug is fixed in DAEMON intrinsic. When a program was daemonized, all
                     96: signals sent to main process were not caught because DAEMON did not replace
                     97: old pid by new one;
                     98: - major bug is fixed in IFERR/THEN/ELSE/END. Only occurs in expression
                     99: evaluation when an error is reported from a subroutine in another subroutine.
                    100: For example, error was not caught in following program when it is executed with
                    101: -p option :
                    102:    TEST << iferr TEST2 then end >>
                    103:    TEST2 << 0 inv >>
                    104: - major bug is fixed in variable management. Some local variables were
                    105: seen as global ones;
                    106: - major bug is fixed in rplcore. Rplcore entered in dead lock when
                    107: script file contains a multibyte character;
                    108: - IN intrinsic is added;
                    109: - major bug is fixed in SAME intrinsic : << 1 >> DUP SAME and 'E' DUP SAME
                    110: returned false ;
                    111: - major bug is fixed in RETURN intrinsic. It only occurs in compiled
                    112: programs;
                    113: - major bug is fixed in NEG intrinsic. NEG did not make a copy of its arguments;
                    114: - regression is fixed in compilation(). "\\" was analysed as '"' '\' '\"' and
                    115: strings were never closed;
                    116: - some bugs have been fixed in file management;
                    117: - RPL/2 can now be run on EBCDIC systems (OS/390);
                    118: - major bug is fixed in -A command line option (NULL character is missing);
                    119: - minor bug is fixed in rpliconv and RECODE intrinsic. All transliterations are
                    120: made by blocks (1024 bytes). When an incomplete multibyte sequence is
                    121: encountered at end of block, subroutine aborts with an execution error;
                    122: - major bug is fixed in OPEN (TCP/IPv4 sockets).
                    123: * Mon Nov 30 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.7 (RPL/2)
                    124: - DISP now locks stdout;
                    125: - rpliconv is added to replace standard iconv provided by operating system.
                    126: Indeed, conversion between different encodages requires transliteration
                    127: that is not offered by some iconv utility;
                    128: - CURRENC and RECODE intrinsics have been written to allow strings conversions;
                    129: - bug is fixed in SYSEVAL. When execvp() returns (for example when arg[0] can
                    130: not be found), SYSEVAL enters in a dead lock;
                    131: - fprintf is replaced by some functions that allow transliterations between
                    132: locales;
                    133: - '"' can now be used in strings ("\"");
                    134: - iconv is called with -c in preprocessor stage. It is done to write
                    135: CGI scripts with RPL/2 because locale charset is set to ANSI_X3.4-1968;
                    136: - double free is fixed in liberation() (type SQL, only occurs when locale is
                    137: set);
                    138: - LOCALIZATION, UCASE and LCASE are added;
                    139: - major bug is fixed in EXIT intrinsic that was able to return a false
                    140: execution error in compiled scripts (only in DO/UNTIL and REPEAT/WHILE loops);
                    141: - major bug is fixed in wrapper_instruction_intrinseque(). When intrinsic() was
                    142: used in onLoading from shared library, USE was pushed on stack as algebraic
                    143: expression;
                    144: - libiconv is upgraded to 1.13.1;
                    145: - gnuplot is upgraded to 4.2.6;
                    146: - gsl is upgraded to 1.13.
                    147: * Mon Sep 28 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.6 (RPL/2)
                    148: - pipe() is overwritten by a macro to avoid a system error. Communication
                    149: between process are done with pipes and these pipes are managed by a
                    150: specific asynchrone thread. If a script try to create more threads than
                    151: management thread can destroy, you can quickly achieve maximum number of
                    152: opened files and pipe() shall return a system error. This macro tries to create
                    153: pipes. If pipe() function returns an error, macro waits and retries. If
                    154: number of retries is greater than a hardcoded value, macro returns an error;
                    155: - major bug (deadlock) is fixed in process and thread management. I hope
                    156: this bug shall be the last one;
                    157: - major bug is fixed in DET intrinsic (determinant was computed without LU
                    158: diagonalization);
                    159: - SWAPCNTXT is added;
                    160: - minor bug is fixed in Makefile.am (licences rule).
                    161: * Wed Sep 09 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.5 (RPL/2)
                    162: - some bugfixes are added in process management;
                    163: - all process management is rewritten to avoid usage of defunct process
                    164: or thread number;
                    165: - new major bug is fixed in interruptions.c. Sometimes, when retrait_thread()
                    166: was called before a pending interruption5 (SIGFSTOP), signal handler uses
                    167: a freed semaphore and corrupts heap;
                    168: - CLRERR is added to erase previous errors;
                    169: - ERRN and ERRM return exception message and number;
                    170: - major bug is fixed in interruptions.c. All signal are now bufferised
                    171: when semaphore_liste_threads is null to avoid deadlock. This bug only
                    172: occured when STOP was sent to a dying thread or process (when this thread or
                    173: process was running retrait_thread());
                    174: - matrix rank is computed before matrix inversion;
                    175: - file locks are added to stdin and stdout. stderr is not locked because
                    176: all messages written by signal handlers are sent to stderr;
                    177: - configure.in script is modified to test gcc version and avoid a bug in
                    178: gcc older than 4.4;
                    179: - some benchmarks have been done :
                    180: 
                    181: cauchy:[~/rpl/bench] > ./bench.rpl 
                    182: +++RPL/2 (R) version 4.0.5 (mardi 04/08/2009, 18:23:07 CEST)
                    183: +++Copyright (C) 1989 à 2008, 2009 BERTRAND Joël
                    184: Number of scalar operations per second and per core : 2109867
                    185: 
                    186: Workstation :
                    187: cauchy:[~/rpl/build] > uname -a
                    188: Linux cauchy 2.6.30.1 #1 SMP PREEMPT Thu Jul 16 09:49:46 2009 x86_64 GNU/Linux
                    189: cauchy:[~/rpl/build] > cat /proc/cpuinfo | grep "model name"
                    190: model name      : Intel(R) Core(TM)2 Duo CPU     T7500  @ 2.20GHz
                    191: model name      : Intel(R) Core(TM)2 Duo CPU     T7500  @ 2.20GHz
                    192: cauchy:[~/rpl/build] > gfortran -v 2>&1 | grep "gcc version"
                    193: gcc version 4.3.3 (Debian 4.3.3-14) 
                    194: cauchy:[~/rpl/build] >
                    195: 
                    196: - SVL and SVD are added;
                    197: - COND and RANK are added;
                    198: - DIAG-> and ->DIAG are added;
                    199: - major bug is fixed in DET intrinsic. DET is rewritten to avoid usage of
                    200: eigenvalues. In a first time, matrix rank is estimated to force determinant
                    201: to zero if matrix is rank deficient. If not, a PLU decomposition is done to
                    202: compute determinant;
                    203: - QR matrix decomposition is added;
                    204: - LQ matrix decomposition is added;
                    205: - Fortran90 files are rewritten to use Fortran2003 bind(C) statement and
                    206: Fortran preprocessor;
                    207: - default compilation options are now -Wall -Wextra -Wno-pointer-sign
                    208: -Wno-unused-parameter;
                    209: - all mathematical exceptions are now signaled by exceptions instead of
                    210: execution error;
                    211: - minor bug is fixed in both CSTOP and RSTOP intrinsics. Without this fix, you
                    212: can call twice CSTOP without RSTOP;
                    213: - named semaphore support is added (CRSMPHR, CLRSMPHR, SMHRDECR, SMPHRINCR,
                    214: SMPHRTRYDECR, SMPHGETV).
                    215: * Fri Jul 24 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.4 (RPL/2)
                    216: - semaphore is added in interruptions.c to avoid segmentation fault when STOP
                    217: signal is sent to a dying thread. Some mutexes are replaced by semaphores too
                    218: to be used in signal handlers;
                    219: - major bug (memory corruption) is fixed in COL- intrinsic;
                    220: - minor bug is fixed in ALARM and WAIT. These temporisations stopped when a
                    221: software interrupt was caught;
                    222: - rplpp man page is added.
                    223: * Fri Jul 17 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.3 (RPL/2)
                    224: - minor bug is fixed in WRITE (SIGPIPE is ignored to catch error without
                    225: process termination);
                    226: - major bug is fixed in FUSE intrinsic (FUSE kills itself and do not kill
                    227: its parent);
                    228: - a mutex to protect fork() syscall is added;
                    229: - all mutexes are unlocked after fork() in DETACH;
                    230: - minor bug (double free corruption) is fixed in CLOSE intrinsic;
                    231: - major bug is fixed in lecture_pipe when a nullified list is sent into a pipe;
                    232: - WORKDIR intrinsic is added;
                    233: - Level 0 variables are shared between all threads without copy. Indeed,
                    234: there variables are not modifiable and only contains static user definitions;
                    235: - branches prediction is added in THEN, ELSE, ELSEIF and REPEAT intrinsics;
                    236: - FORTRAN 77 file management subroutines are rewritten in pure C due to
                    237: FORTRAN string management. C/FORTRAN 77 string interfaces are broken
                    238: in some cases (gcc/gfortran/libc/OS and arch conjonction);
                    239: - a memory leak is fixed in REMOVE intrinsic;
                    240: - major bug is fixed in MySQL driver (segfault due to a bug in mysql_init()
                    241: and due to a libmysqlclient that is not thread safe).
                    242: * Wen Jun 10 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.2 (RPL/2)
                    243: - new enhanced allocator is written for regular variables, static variables and
                    244: shared variables;
                    245: - major bug is fixed in src/interruptions.c. This file did not compile
                    246: when SQL support was not enabled;
                    247: - new allocator is written for system stack and last stack;
                    248: - --enable-profile flag is added to configure script. When this flag is
                    249: enabled, rpl is built with -pg option;
                    250: - SIGFSTP (from Solaris'TERMIO) is caught. On Solaris 10, all process receive
                    251: SIGFSTP (with a nullified siginfo structure) instead of SIGHUP when control
                    252: process is killed;
                    253: - abs() macro is modified to avoid multiple evaluation. Your C compiler has to
                    254: know typeof() intrinsic function. This function is not standard but exists
                    255: under Sun Studio, gcc, and maybe some others compilers. If this function does
                    256: not exist on your compiler, you can change its definition by old one in
                    257: src/rpl.h;
                    258: - fflush() can now be interrupted by signal (SunOS);
                    259: - fflush(NULL) is called before all fork() occurrences;
                    260: - generators returned by RDGN help are sorted;
                    261: - Lapack is now 3.2.1.
                    262: * Mon May 18 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.1 (RPL/2)
                    263: - bug is fixed in src/generateurs_aleatoires.awk. It only occurs when RPL/2 is
                    264: built under Solaris.
                    265: * Wed May 5 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0 (RPL/2)
                    266: - major bug is fixed in matrix inversion (due to an inversion between pointer
                    267: and object copies);
                    268: - RDGN is added to use some different random number generators. See HELP RDGN;
                    269: - code analysis is rewritten from scratch to be more efficient and mode
                    270: expandable;
                    271: - minor bug (segfault in interruption1) is fixed. It only occurs on Solaris
                    272: that can returns a nullified siginfo pointer when SIGINT is sent by kernel
                    273: keyboard driver;
                    274: - gnuplot is now 4.2.5;
                    275: - readline is upgraded to 6.0;
                    276: - file is upgraded to 5.0;
                    277: - Signal handlers are rewritten to send signal to main thread when a signal
                    278: is send from an external process;
                    279: - configure.in is modified to avoid a libc bug on Solaris (free() can enter in
                    280: deadlock when a huge amount of threads is launched);
                    281: - minor bug is fixed in boath START and FOR intrinsic. Only occurs when
                    282: arguments types are unsupported;
                    283: - PLOT instrinsic is added (usage: LINE and MARK do not draw anything. All
                    284: data are buffered. PLOT is used to draw these objects.);
                    285: - MARK instrinsic is added;
                    286: - new allocator mechanism is written;
                    287: - some regression bugs have been fixed, some memory leaks too.
                    288: * Wed Jan 28 2009 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.9 (RPL/2)
                    289: - an estimation of future stack elements is added to avoid some costly memory
                    290: allocations. This function has a positive impact on execution speed;
                    291: - PSHPRFL and PULPRFL have been added;
                    292: - RPL/2 can be built on Solaris 64 bits with some minor scripts alterations.
                    293: See README for more explanations;
                    294: - MTXSTATUS intrinsic is added;
                    295: - YIELD intrinsic is added;
                    296: - ERRM is fixed. In some cases, ERRM uses some uninitialized pointers;
                    297: - SHARED and PRIVATE intrinsics have been added. A shared variable is a
                    298: static variable that is shared by multiple threads;
                    299: - '->' intrinsic is improved. All object copies have been avoided;
                    300: - -n flag is added to catch HUP signal. stderr and stdout are redirected
                    301: to a file, stdin is redirected to /dev/null when control process is killed;
                    302: - a mutex is added to each object (before this modification,
                    303: RPL/2 used a global mutex and performances in multithreaded programs were very
                    304: poor.);
                    305: - ALARM is now interruptible;
                    306: - both PUT and PUTI intrinsics are improved and do not copy list and table
                    307: when nombre_occurrences == 1;
                    308: - COPY intrinsic is added. Argument (that can be pointed from some objects)
                    309: is replaced by a new copy of itself;
                    310: - memory leak is fixed in sequenceur(). It only occurs when an execution error
                    311: is caught from interactive mode;
                    312: - mutexes have been added (CRMTX, CLRMTX, MTXLOCK, MTXUNLOCK);
                    313: - new mutex type is added;
                    314: - profile statistics have been added. See -P option;
                    315: - major bug is fixed in analyse_syntaxique();
                    316: - new SQL type is added;
                    317: - due to a trouble in libpq in multithreaded context, SQL intrinsic is split
                    318: in three new intrinsics : SQLCONNECT, SQLQUERY and SQLDISCONNECT. Please note
                    319: that all programs that worked with old SQL intrinsic can now work with
                    320: SQLQUERY. With all new programs, you can open a real connection to databases;
                    321: - NRPROC is added. This new intrinsic is used to catch error from child
                    322: process. Without NRPROC, any errors returned by child process cause
                    323: main process to abort;
                    324: - SPAWN is added. This new intrinsic is used to launch a new thread (DETACH
                    325: starts a new process). There are no mutexes in RPL/2 because all spawned process
                    326: use specific context. Nevertheless, shared variables and associated mutexes
                    327: should be added;
                    328: - -D flag and DAEMONIZE intrinsic have been added;
                    329: - REPEAT, THEN, ELSE and ELSEIF intrinsics are rewritten to be more efficient;
                    330: - autoconf script is modified to handle mysql and postgresql on non standard
                    331: directories;
                    332: - -t flag is fixed ('\0' is missing...);
                    333: - SWI and SEND pipes have been modified to be more robust on systems where
                    334: getpid() can return (pid_t) -1 or (pid_t) -2 value;
                    335: - major bug is fixed in REPEAT intrinsic. Only occurs in compiled mode;
                    336: - all but jump variables are removed from source. All signal handlers now
                    337: use encapsulated variables and signals are caught by thread;
                    338: - major bug is discovered in ->LCD. Both LCD-> and ->LCD have been fixed;
                    339: - NEWPLANE is added;
                    340: - LINE is added;
                    341: - DGTIZ is added;
                    342: - major bug is fixed in ROW-> intrinsic (comes from new garbage collector);
                    343: - lot of multiprocessing related bugs have been fixed; That was a huge work but
                    344: it's done. Data integrity is now respected during transmission (POKE, SEND and
                    345: SWI);
                    346: - ITRACE is added. This intrinsic is only used to debug internal structures and
                    347: should not be used in regular programs;
                    348: - SWISTATUS is written;
                    349: - WFACK is written;
                    350: - rplcore files are now able to handle compilation errors;
                    351: - rplcore files are now able to handle evaluation and interruption errors;
                    352: - SORT can now be used on table;
                    353: - tables can now be sent by POKE and SEND instrinsics;
                    354: - software interrupts do not inherit IFERR controls;
                    355: - LOGGER intrinsic is added;
                    356: - All WF* intrinsics but WFSOCK are made interruptible;
                    357: - ISWI intrinsic is added. Current interrupt is marked as 'interruptible';
                    358: - tables can be used with SAME intrinsic;
                    359: - minor bug is fixed in recherche_variable(). Only occurs when an error
                    360: is caught;
                    361: - external functions can now be used in expressions;
                    362: - major bug (deadlock) is fixed in WFPOKE intrinsic;
                    363: - some mistakes have been fixed under Solaris;
                    364: - major bug is fixed in RETURN intrinsic (only occurs when evaluation and
                    365: program modes are mixed);
                    366: - major bug (dead lock) is fixed in gestion_processus.c;
                    367: - major bug is fixed in WFPROC;
                    368: - rplc, rpllink and mkrplso manpages are added;
                    369: - rpltags tool and manpage are added;
                    370: - WFLOCK is fixed;
                    371: - RPL/2 kills now all process on error;
                    372: - major bug (segfault) is fixed in REMOVE intrinsic.
                    373: * Mon Jul 28 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.8 (RPL/2)
                    374: - configure script is modified to check mysql and postgresql libraries
                    375: on all standard locations. Tested and works on FreeBSD, Solaris and Linux
                    376: Debian;
                    377: - Tables are allowed in eval ( <[ 1 ]> 't' sto 't(1)' eval );
                    378: - ->TABLE and TABLE-> intrinsics are added;
                    379: - major bug is fixed in recherche_type(). Only occurs when rpl executes
                    380: precompiled scripts;
                    381: - new type is added: table with <[ ]> delimiters:
                    382: RPL/2> { 2 3 2 } crtab
                    383: 
                    384: 1: <[ <[ <[ { }
                    385:             { } ]>
                    386:          <[ { }
                    387:             { } ]>
                    388:          <[ { }
                    389:             { } ]> ]>
                    390:       <[ <[ { }
                    391:             { } ]>
                    392:          <[ { }
                    393:             { } ]>
                    394:          <[ { }
                    395:             { } ]> ]> ]>
                    396: 
                    397: CRTAB new intrinsic creates a regular table. By default, all elements are
                    398: nullified lists;
                    399: - rplexternals.h is modified and improved;
                    400: - GNU File (renamed as rplfile) cannot be built due to a bug in libtoolize and
                    401: configure script.
                    402: * Mon Jun 23 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.7 (RPL/2)
                    403: - libiconv is added (iconv library exists on some systems but implemantations
                    404: differ and RPL/2 can crash);
                    405: - --enable-encoding is added to configure script to force system encoding.
                    406: Enconding detection does not work on OpenBSD;
                    407: - internal file utility is shipped and used to avoid xBSD file mistakes;
                    408: - GSL 1.11 and gnuplot 4.2.3 are now used;
                    409: - src/Makefile.am is modified to built RPL/2 ons Solaris 10/sparc;
                    410: - all but user's messages are written on stderr;
                    411: - DUPCNTXT and DROPCNTXT are added to handle more efficiently contexts;
                    412: - SCHED is added. Whit SCHED, you can limit CPU ressource by RPL/2 process;
                    413: - FUSE, RFUSE and CLRFUSE have been added;
                    414: - new bug discovered on NetBSD. sigpending() does not return any signal, thus
                    415: DETACH intrinsic enters in a definitive dead lock. I have no idea to write a
                    416: workaround for this major bug. Nevertheless, all others capabilities seems to
                    417: work fine;
                    418: - '->' is modified to return error when program tries to initialiaze two
                    419: variables with the same name like
                    420: 1 0 -> I I << ... >>;
                    421: - CSTOP and RSTOP have been added (catch and release stop signal);
                    422: - CONTINUE is added to continue a pending process halted by SUSPEND;
                    423: - SUSPEND is modified to be stopped by SIGFSTOP;
                    424: - src/Makefile.am is modified to avoid //TRANSLIT flag on systems that don't
                    425: support GNU iconv;
                    426: - configure.in script is modified to avoid bugs when --with-postgresql and
                    427: --with-mysql are specified;
                    428: - TRNC is written;
                    429: - minor bug is fixed in both IFT and IFTE. Returned expression has to be
                    430: evaluated.
                    431: * Fri Apr 11 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.6 (RPL/2)
                    432: - SIGPIPE signal handler is modified to avoid abort process when POKE tries
                    433: to write data into a pipe without reader;
                    434: - major bug is fixed in RETURN intrinsic. When RETURN was called from a detached
                    435: process without -p modifier, it can send an ABORT signal instead a KILL one;
                    436: - PEEK, POKE and WFPOKE new intrinsics are written;
                    437: - major bug due to new garbage collector is fixed in rplexternals.h (double free
                    438: corruption);
                    439: - CLRCNTXT is added (clear contexts);
                    440: - VERIFY intrinsic is written;
                    441: - PSHCNTXT and PULCNTXT are added (PSHCNTXT pushes context on an
                    442: internal contexts stack, PULCNTXT pulls contexts from this internal stack).
                    443: Main usages of these intrinsics are in conjonction with IFERR or with
                    444: software interrupts;
                    445: - HEAD, TAIL and REVLIST intrinsics are added;
                    446: - function pointers have been added to function description;
                    447: - new analyse() routine is written. All instrinsics are now in a N-tree;
                    448: - software interrupts have been fixed;
                    449: - multitasking capabilities have been modified to be usable on NetBSD. All real
                    450: time signals have been removed;
                    451: - major bugs are fixed in multitasking (mutex trouble _and_ segmentation fault);
                    452: - minor bug is fixed in STR->. STR-> could return a system error instead an
                    453: execution one;
                    454: - first bug due to new garbage collector is fixed in '+' ({ } { } +) and in
                    455: '-' intrinsics;
                    456: - PostgreSQL support is written.
                    457: * Mon Mar 17 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.5 (RPL/2)
                    458: - locale can now be specified in SQL intrinsic :
                    459: { "mysql:iso-8859-1" "server" "database" ... };
                    460: - major bug is fixed un analyse_algebrique(). When DISP printed an algebraic
                    461: object, 'DISP()' was pushed in stack;
                    462: - same major bug is fixed in <, >, <=, >= and <>;
                    463: - major bug fixed in formateur() (segfault when a symbol is used without "'");
                    464: - major bug is fixed in DUPN intrinsic;
                    465: - when software interrupt (SWI) is evaluated, SWI pushs process id on stack
                    466: before starting interrupt evaluation;
                    467: - -f parameter is added when iconv is called;
                    468: - as old file program was bugged, a new option is added to configure script.
                    469: When configure is called with --disable-encoding-autodetection, make does not
                    470: try to detect source encoding. Please, do not use if RPL/2 can be built
                    471: without this option !
                    472: - new garbage collector (and more efficient) is written;
                    473: - configure script is modified to be usable on NetBSD 4.0, but as NetBSD does
                    474: not support real time signals, RPL/2 cannot use multitasking functions;
                    475: - error returned by preprocessor are now catched by RPL/2;
                    476: - -p option is added. With this option, all scripts are compiled before
                    477: RPL/2 starts evaluation. HALT cannot be used with -p, but all programs run
                    478: 40% faster;
                    479: - read and write operations in pipe() are rewritten to be sure that such
                    480: operations are atomic;
                    481: - minor bug is fixed in LOGSCALE. With {} LOGSCALE, all scales have to be
                    482: linear;
                    483: - major bug is fixed in gestion_processus.c (some pipes were not closed).
                    484: * Sat Jan 5 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.4 (RPL/2)
                    485: - major bugs have been fixed in software interrupt management.
                    486: * Fri Jan 4 2008 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.3 (RPL/2)
                    487: - JDATE and RDATE are written;
                    488: - minor bug (segfault) is fixed in EXSUB. It only occurs when EXSUB is executed
                    489: with wrong arguments;
                    490: - KILL now kills current process, ABORT kills program;
                    491: - software interrupts support is added (SWI, WFSWI, SWILOCK, SWIUNLOCK,
                    492: SWIQUEUE, STOSWI, RCLSWI, CLRSWI);
                    493: - major bug is fixed in SQL intrinsic (argument types);
                    494: - system stack is now written in core file;
                    495: - ALARM is added;
                    496: - nanosleep() now replaces sleep() and usleep() system calls;
                    497: - _GNU_SOURCE is added to rpl.h.
                    498: * Fri Nov 30 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.2 (RPL/2)
                    499: - License is changed. Now RPL/2 license is CeCILL (GPL compliant);
                    500: - EXGET adn EXSUB are added;
                    501: - minor bug is fixed in recherche_type(). { << } has to return an error.
                    502: '<<' and '>>' are both functions _and_ delimiters. Thus { IF } is
                    503: acceptable, but { >> } isn't;
                    504: - GSL is now 1.10, gnuplot 4.2.2 and units 1.87;
                    505: - OBGET and OBSUB intrinsics are added;
                    506: - src/Makefile.am minor bug is fixed (make clean deleted src/rpl.xpm);
                    507: - WAIT intrinsic is modified to use sleep() and usleep() if delay is
                    508: greater than one second. On some systems, usleep argument must be lower
                    509: than 1E6;
                    510: - numeric and character formats are now tested;
                    511: - -A flag is added. -A is used to give command line parameters to main
                    512: routine. Example:
                    513: rayleigh:[~/rpl-4.0.0.prerelease.2/examples] > ./test3.rpl -A "<< X sin >>"
                    514: +++RPL/2 version 4.0.0.prerelease.2 (vendredi 05.10.2007, 19:03:01 CEST)
                    515: +++Copyright (C) 1989 à 2006, 2007 BERTRAND Joël
                    516: << 'X' SIN >>
                    517: rayleigh:[~/rpl-4.0.0.prerelease.2/examples] > cat test3.rpl 
                    518: #!/usr/local/bin/rpl -s
                    519: 
                    520: TEST
                    521: <<
                    522:     disp
                    523: >>
                    524: - minor bug (segfault) is fixed in encart() routine (splash screen). Child
                    525: process ended with segfault due to a mistake in Motif widget cleaning
                    526: process;
                    527: - major bug is fixed in DETACH intrinsic. Child process were locked when
                    528: they were started with a locked mutex that comes from its father;
                    529: - ctrl+C can now kill all child process;
                    530: - WFPROC and WFDATA are rewritten;
                    531: - RETURN is fixed to be usable in detached process;
                    532: - HALT is not exported to child process;
                    533: - FLOW filetype is added;
                    534: - Makefiles are modified to support gcc-4.2 and gfortran-4.2;
                    535: - socket support (Unix, IPv4, IPv6, STREAM, DATAGRAM, ROBUST DATAGRAM,
                    536: SEQUENTIAL DATAGRAM, RAW) is added. Warning: IPv6 sockets have not been tested
                    537: because I don't have any IPv6 compliant server, but they should work.
                    538: * Mon Sep 10 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.1 (RPL/2)
                    539: - library management is rewritten from scratch. EXTERNAL is removed and
                    540: EXTERNALS is added. Now, all exported symbols are sent to RPL/2 when
                    541: library is loaded;
                    542: - OPEN arguments are changed;
                    543: - EXTERNAL now checks availability of external functions;
                    544: - number of arguments is verified in analyse_algebrique().
                    545: 'SIN(A+X,2)' is now refused because SIN requires only one argument;
                    546: - all but lapack symbols are exported from librpl with librpl, f77 or f90
                    547: prefix;
                    548: - minor bug is fixed in formateur() (AND and OR requires parenthesis);
                    549: - rplexternals.h header file is added; Now, it is very easy to write
                    550: external functions;
                    551: - memory leak is fixed in analyse_algebrique();
                    552: - minor bug (symbole flag) is fixed in sequenceur.c and types.c;
                    553: - temp file was not removed when an error occurs in EDIT or VISIT;
                    554: - 'name' should not returned a function ("FCT" object);
                    555: - -rdynamic is added to src/Makefile.am.
                    556: * Mon Jul 23 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.0.0.prerelease.0 (RPL/2)
                    557: - Major bug is fixed in interface_tex.c. When there are errors in latex
                    558: file, latex command waits for input on its command line;
                    559: - major bug is fixed in tex.h (multiline strings);
                    560: - examples subdir is added;
                    561: - major bug is fixed in recherche_variable(). When an expression is evaluated
                    562: in a function, all variables set in this function must be visible in
                    563: expression. Thus, << I -> 3 << << I >> eval >> must return 3, not 'I';
                    564: - LAST stack is saved in rplcore;
                    565: - major bug is fixed in ->HMS. It only occurs when argument type is not
                    566: integer or real;
                    567: - major bug (segfault) is fixed when rpl is called with empty file;
                    568: - libtool support is removed. Two new scripts (rplc and rpllink) are provided
                    569: to use librpl.a;
                    570: - automake scripts are rewritten to avoid a misconfiguration of librpl.a
                    571: when -j make option is used;
                    572: - trace output now contains PID;
                    573: - rpl-core is renamed in rpl-code-$PID;
                    574: - rplc and rpllink scripts can now sompile and build C and Fortran
                    575: executables with librpl.a;
                    576: - New classification, only a working simplification() routine is
                    577: required to announce 4.0.0.final;
                    578: - librpl entry point is modified to return results as strings array;
                    579: - -S option is added;
                    580: - due to a major bug in libtool, libtool is removed from autoconf/automake
                    581: scripts;
                    582: - VERSION is modified to return a list.
                    583: * Tue Jul 17 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8x (RPL/2)
                    584: - major regression bug is fixed in PRINT due to mistake in latex pathes;
                    585: - gnuplot does not have to be built if --disable-embedded-gnuplot is set;
                    586: - new prompt ("RPL/2> ") is used for interactive mode;
                    587: - ARCCOS, ARCSIN, ARCTG, ARGCH, ARGSH, ARGTH, CH, SH, TH and TG intrinsics
                    588: are removed, because all of these intrinsics have two forms. ARCCOS is
                    589: the same than ACOS, TAN=TG, COSH=CH. Please adapt your scripts;
                    590: - gnuplot compilation does not have to be done when disable-gnuplot is set;
                    591: - major bug is fixed in RECV that avoid usage of multitasking.
                    592: * Tue Jul 10 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8w (RPL/2)
                    593: - False error (system error) was reported by recherche_type();
                    594: - recherche_type() returns syntax error if a list is included in
                    595: an algebraic expression;
                    596: - --enable-debug is modified. Now, return can be defined to print
                    597: on stdout its position in source code (line and function);
                    598: - minor bug is fixed in recherche_type(). Don't forget that space
                    599: are not significant in algebraic expression:
                    600: '12 3+ 12    X' is the same expression than '123+12X';
                    601: - src/Makefile.am is modified to avoid double compilation process;
                    602: - --enable-final-run-path is added to configure.in script;
                    603: - STATIC is modified to declare static variables in expression. Warning: static
                    604: variables used in expressions are deleted when evaluation of this expression
                    605: ends;
                    606: - MEM does not report static variable sizes;
                    607: - minor bug is fixed in HELP intrinsic. When the last instruction was not
                    608: known, HELP function was pushed in operational stack. HELP did not work
                    609: when there were space on input line.
                    610: * Mon May 28 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8v (RPL/2)
                    611: - DATE is modified: reduced julian days is replaced by fraction part
                    612: of julian days. Old field used by julian days is now integer part of julian
                    613: days;
                    614: - CONVERT intrinsic is rewritten to accept absolute path in popen;
                    615: - automake scripts are modified to delete src/lock file if build process aborts;
                    616: - rplargs.h directly includes rpl.h;
                    617: - absolute pathes are added to all external program files (rplplot, rplpp...);
                    618: - intrinsic functions are case sensitive. External functions are case
                    619: unsensitive. A minor bug is fixed in recherche_type() because all external
                    620: functions were case unsensitive when they were evaluated from RPN expressions;
                    621: - HELP function is rewritten to be more friendly (a la OpenVMS);
                    622: - external wrapper (rplplot) is written to force usage of gnuplot provided
                    623: by RPL/2 if it is built during build process. If this build does not exist,
                    624: it tries to launch regular gnuplot;
                    625: - gnuplot is added to source tree to avoid some trouble between preinstalled
                    626: gnuplot and release used by RPL/2. This addition to source tree is
                    627: required by some incompatibility between gnuplot releases;
                    628: - Lapack is upgraded to 3.1.1 release;
                    629: - GSL is upgraded to 1.9 revision;
                    630: - RPL_TMP_PATH env variable is added to specify the path of tempfiles. If
                    631: it is not set, /tmp is used. If /tmp is not writable, /var/tmp is used. If
                    632: not, ./ but RPL/2 can hang with a fatal error if this last location is
                    633: not writable;
                    634: - major regression is fixed in SYSEVAL intrinsic due to introduction of
                    635: error scrutation.
                    636: * Sat Mar 24 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8u (RPL/2)
                    637: - SYSEVAL is modified to return an error when execvp() syscall cannot
                    638: execute its arguments;
                    639: - -hard-float sparc option is remove from mkrplso;
                    640: - major bug is fixed in SQL intrinsic that hangs when query did not return
                    641: any values (for exemple INSERT);
                    642: - escape sequences can be used in SYSEVAL argument like "echo \"string\""
                    643: SYSEVAL;
                    644: - graphic and PostScript outputs are now cleared in child process;
                    645: - locales are now used by preprocessor;
                    646: - major bug is fixed in impression_tex(). PRINT did not work due to a bug
                    647: introduced by multitasking code;
                    648: - SORT can now use name as its argument.
                    649: * Sun Jan 21 2007 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8t (RPL/2)
                    650: - Variable management has been rewritten and some tests have been done. Now,
                    651: it is possible to execute:
                    652: 
                    653: #!/usr/local/bin/rpl -sc
                    654: 
                    655: TEST
                    656: <<
                    657:     1 1000 start VAR_S VAR_S2 next
                    658: >>
                    659: 
                    660: VAR_S
                    661: <<
                    662:     static 3 -> C << C disp 'C' incr if C 10 > then 'C' volatile end >>
                    663: >>
                    664: 
                    665: VAR_S2
                    666: <<
                    667:     static 3 -> C << C disp 'C' decr >>
                    668: >>
                    669: 
                    670: - configure.in script is added in lapack subtree;
                    671: - VARS is modified to display variables status (LOCKED/UNLOCKED and
                    672: STATIC/VOLATILE/PARAMETER/VARIABLE);
                    673: - STATIC and VOLATILE intrinsics are added to specify static variables. A
                    674: static variable can be transformed into volatile with VOLATILE.
                    675: With STATIC, next variables created by '->' are static;
                    676: - PROTECT and UNPROTECT are added to protect variables against write
                    677: or purge actions. New PARAMETER and VARIABLE intrinsics are modified
                    678: versions of PROTECT and UNPROTECT that only deal with global variables
                    679: (see RCL/SAVE);
                    680: - variable management routines have been rewritten. The new ones are
                    681: uncompatible with the old ones. Before these changes, a local variable
                    682: was exported to a child subroutine, but cannot be modified into this
                    683: child subroutine. Now, a local variable is accessible only in its subroutine;
                    684: - SAVE intrinsic is added to manipulate global variables;
                    685: - SUSPEND is written. RPL/2 waits for a SIGCONT signal;
                    686: - SORT, COL->, ->COL, ROW->, ROW-> intrinsics are written;
                    687: - Makefile.am are improved;
                    688: - minor bug is fixed in ->list and ->array. Without any argument, these
                    689: intrinsic only send a SIGSEGV;
                    690: - ncurses is updated to release 5.6;
                    691: - lapack is updated to 3.1.0.
                    692: * Sun Dec 31 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8s (RPL/2)
                    693: - default CFLAGS/FFLAGS/FCFLAGS are modified due to a bug in gcc-sparc64
                    694: that avoid a complete build;
                    695: - CTRL+Z and CTRL+C signals only perform actions on main process;
                    696: - major bugs are fixed in multitasking capabilities (some mistakes with
                    697: mutexes and several terminated child process cannot be closed by the
                    698: operating system);
                    699: - minor bug fixed in SCLS (mistake between main and auxiliary axes);
                    700: - variables are now written in rpl-core file;
                    701: - NEG is modified to return 0 instead -0 when its argument is real or complex
                    702: number;
                    703: - ROW+ intrinsic can now be used on empty matrix without dimension error:
                    704: [[]] 1 [[ 1 2 ]] row+;
                    705: - major bug is fixed in SUB intrinsic. It only occurs with lists when
                    706: it tries to returns invalid elements like { } 1 2 sub;
                    707: - major bug is fixed in ROW- intrinsic;
                    708: - major bug is fixed in ROW+ intrinsic.
                    709: * Sat Dec 02 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8r (RPL/2)
                    710: - creation_nom_fichier() is rewritten to force all process to create
                    711: different file names;
                    712: - RANLUX is removed to use GSL library and avoid a bug in gfortran-4.1;
                    713: - readline-5.2 and units-1.86 are now used;
                    714: - SEQUENCE statement is added in fonctions_speciales.f90 to fix a build
                    715: failure.
                    716: * Mon Oct 23 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8q (RPL/2)
                    717: - wfproc is rewritten to avoid a dead lock;
                    718: - major mistake is fixed in both sommation_vecteur_reel() and
                    719: sommation_vecteur_complexe();
                    720: - multitasking is rewritten from scratch to fix some mistakes with
                    721: multithreading. DETACH, SEND and RECV now use four real time signals to
                    722: perform a better task synchronization;
                    723: - some bugs introduced by locales specific compilations are fixed;
                    724: - major memory corruption is fixed in DEPND;
                    725: - HELP intrinsic is modified to print a classified output.
                    726: * Mon Aug 12 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8p (RPL/2)
                    727: - major memory leak is fixed in DETACH intrinsic. Files were closed by
                    728: both childs and parent;
                    729: - bug that avoids usage of Motif is fixed in configure.in;
                    730: - makefile's are modified to build RPL/2 with other locale than ISO-8859;
                    731: - db is removed from source tree due to some compilation troubles (db's
                    732: autoconf script is broken);
                    733: - sdb is removed from source tree due to some memory leaks and some troubles
                    734: with its configure script. New SQL routines are written, but only MYSQL
                    735: subsystem is available. Now, SQL can be used without memory leak;
                    736: - major bug is fixed in evaluation() subroutine. Value of error flag
                    737: was not returned in some cases;
                    738: - FACT intrinsic does not accept real arguments anymore due to the new intrinsic
                    739: GAMMA;
                    740: - GAMMA intrinsic is added (complex function) ;
                    741: - autoconf/automake scripts are modified to compile F90 sources;
                    742: - src/distributions.f is replaced by src/distributions.f90. All Numerical
                    743: Recipes references are avoided to use GSL;
                    744: - GSL is upgraded to 1.8 release;
                    745: - -lz is added in src/Makefile.am to fix a mistake in sparc32.
                    746: * Mon Apr 10 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8o (RPL/2)
                    747: - fft.f is removed. Now FFT intrinsic uses dft subroutine;
                    748: - Sparc64 optimizations are modified. Now gcc-4.0 can be used to build RPL/2 on
                    749: Sparc64. Same modifications are done on sparc32;
                    750: - major bug are fixed in both PLOTTER and HISTOGRAM intrinsics
                    751: (interface with GNUplot).
                    752: - major bugs are fixed in USE/REMOVE intrinsics (system stack corruption);
                    753: - corruption of last stack is fixed in mclrin (only occurs when an error is
                    754: caught);
                    755: - major bug (in a malloc condition) is fixed in derivation().
                    756: * Tue Jan 07 2006 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8n (RPL/2)
                    757: - configure script and makefiles are modified to be usable with automake
                    758: 1.9.6 (GNU), libtool 1.5.20 (GNU) and autoconf 2.59 (GNU).
                    759: - gestion_fichiers() prototype is modified to be built by gfortran. Now,
                    760: gfortran is the default compiler for FORTRAN code included in RPL/2;
                    761: - libdb is added to perform indexed file access;
                    762: - SQL interfaces are added (SQL intrinsic). Only mysql is supported;
                    763: - minor bug is discovered and fixed in matrix multiplication (precision);
                    764: - rpl.spec.in and debian directory are deleted due to some mistakes in the
                    765: scripts required to build packages.
                    766: * Tue Nov 15 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8m (RPL/2)
                    767: - major bug is fixed in IFERR/THEN/(ELSE)/END structure. It occured when an
                    768: error is caught before a regular IF/THEN/(ELSE)/END structure in
                    769: IFERR/THEN/(ELSE)/END structure;
                    770: - chmod 755 debian/rules is done by makefile;
                    771: - major bug is fixed in recherche_instruction_suivante():
                    772: +++"123 " str->
                    773: +++Erreur : Argument invalide pour la commande << "123 " str-> >>
                    774: Before this fix, it was impossible to use a command line that ends with spaces.
                    775: * Sat Oct 29 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8l (RPL/2)
                    776: - SELECT/CASE/DEFAULT/END is modified. Now, it is impossible to write:
                    777: SELECT
                    778:    <case>
                    779:    CASE <test> THEN <expr> END
                    780:    ...
                    781:    DEFAULT
                    782:    DEFAULT <- two DEFAULT's
                    783: END
                    784: 
                    785: or
                    786: 
                    787: SELECT
                    788:    <case>
                    789:    CASE <test> THEN <expr> END
                    790:    ...
                    791:    DEFAULT
                    792:    ...
                    793:    CASE <test> THEN <expr> END <- CASE statement after DEFAULT
                    794: END
                    795: - major bug is fixed (in (unsigned char) getc()). It only occurs when RPL/2 is
                    796: built with gcc-4.0.
                    797: - configure.in is modified to be usable with gcc-4.0.
                    798: * Mon Oct 3 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8k (RPL/2)
                    799: - segmentation fault occurs in both PROMPT and INPUT when readline returns
                    800: NULL (ctrl^D). This trouble is now fixed;
                    801: - major bug is fixed in DATE intrinsic (julian days and reduced julian days);
                    802: - stderr of rplpp is now caught;
                    803: - SYSEVAL is modified to use stdin, stdout and stderr:
                    804: ESSAI
                    805: <<
                    806:    // Only stdout and stderr
                    807:     "ls" dup disp syseval
                    808:     clmf
                    809:    // Now with stdin ("zer\naze\n")
                    810:     { "cat" "zer" "aze" } dup disp syseval
                    811:     clmf
                    812: >>
                    813: - GSL is upgraded to 1.7.
                    814: * Thu Sep 29 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8j (RPL/2)
                    815: - SYSEVAL is modified. It now returns stdout and stderr in a list;
                    816: - minor memory leak is fixed in recherche_instruction_suivante() subroutine.
                    817: * Thu Aug 4 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8i (RPL/2)
                    818: - internal file descriptors are modified to be usable with DUMP intrinsic;
                    819: - VARS intrinsic is modified and now prints value of variables.
                    820: * Thu Jul 21 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8h (RPL/2)
                    821: - units is upgraded to 1.85 release;
                    822: - -d flag is added in command line. Don't use this flag if you don't know
                    823: what you do! It is only used to debug internal memory allocations;
                    824: - internal pointers (ADR objects) are printed as 64 bits pointers to be usable
                    825: on 64 bits wide architectures.
                    826: * Sat apr 16 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8g (RPL/2)
                    827: - DUMP is rewritten to be portable. It works, but without shared libraries,
                    828: printer file, graphic files and last error. Support for this kind of objects
                    829: shall be available as soon as possible. Warning: DUMP cannot be used in
                    830: multiprocessing;
                    831: - configure.in script is modified to return an error when g77 is not found;
                    832: - a new internal type is used to handle shared libraries;
                    833: - a major bug is discovered and fixed in recherche_type(). It only occurs
                    834: in interactive mode ([[ 1 ]] returns a syntax error);
                    835: - a major bug is found in simplification_arbre(). Subroutine is disabled.
                    836: * Thu mar 17 2005 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8f (RPL/2)
                    837: - option -r is added to restart a process from a dump file;
                    838: - DUMP intrinsic is added. It performs synchronous checkpointing;
                    839: - GSL is upgraded to release 1.6.
                    840: * Wed dec 22 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8e (RPL/2)
                    841: - Result types of PERM and COMB instrinsic are fixed;
                    842: - RPL/2 now uses a new preprocessor due to a new 'feature' in gcc/cpp;
                    843: - RPL/2 can now use all processors on multiprocessor workstations with
                    844: DETACH, SEND, RECV and WFPROC new intrinsics. The first test program was:
                    845: 
                    846: #!/usr/local/bin/rpl -cs
                    847: 
                    848: MULTIPROCESSUS
                    849: <<
                    850:     'FONCTION' detach
                    851:     do "B" disp until false end
                    852: >>
                    853: 
                    854: FONCTION
                    855: <<
                    856:     do "A" disp until false end
                    857: >>
                    858: 
                    859: * Sun dec 12 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8d (RPL/2)
                    860: - major bug is discovered and fixed in analyse_notation_algebrique :
                    861: +++'A-B-C' returned
                    862: 1: 'A-(B-C)' instead of 1: 'A-B-C'. It is now fixed;
                    863: - recherche_type() routine is improved to cast in name 1E5E-6 or 1.23.4.5.
                    864: * Fri dec 7 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8c (RPL/2)
                    865: - major bug is fixed in formateur_fichier(). Now, it is possible to use
                    866: lists in a file record. Note that only sequential and formatted files
                    867: are supported;
                    868: - major bug is fixed in BACKSPACE intrinsic. It only occurs on large
                    869: records.
                    870: * Fri nov 26 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8b (RPL/2)
                    871: - minor bug is fixed in IP intrinsic: when argument was real without
                    872: fraction part, IP returned a real, not an integer;
                    873: - minor bug is fixed in recherche_type(): it is now possible
                    874: to enter +++<NB3 + return. RPL/2 returns a syntax error, not a acces
                    875: violation;
                    876: - MCLRIN (MacLaurin series) intrinsic is added;
                    877: - TAYLR (Taylor series) instrinsic is added;
                    878: - very minor bug is fixed in evaluation(). Sometimes, when evaluation()
                    879: is stopped by ^C, EXIT intrinsic did not work due to a mistake in
                    880: the internal system stack;
                    881: - minor bug is fixed in encart.c. System error messages returned by
                    882: this subroutine were only available in french;
                    883: - internal RPL/2 system stack corruption is fixed. This bug only affects
                    884: interactive and debug modes when evaluation routine returns an error;
                    885: - symbolic derivation subroutine is now able to derivate functions;
                    886: - minor bug is fixed in instruction_multiplication: now 'X' 1. * returns
                    887: 'X' and not 'X*1'.
                    888: * Thu nov 18 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8a (RPL/2)
                    889: - ctags in src/Makefile.am is fixed;
                    890: - first derivation subroutines are written;
                    891: - major bug is fixed in analyse_algebrique() :
                    892: before this patch, '3-5+4' was understand as '3-(5+4)' !
                    893: - instruction_division() is improved and returns 0 when it evaluates
                    894: '0/X';
                    895: - instruction_moins() is improved and returns 'NEG(X)' when it evaluates
                    896: '0-X'.
                    897: * Fri nov 5 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre8 (RPL/2)
                    898: - interface_gnuplot is modified and do not use any deprecated gnuplot
                    899: commands. Warning, you must use gnuplot 4.0;
                    900: - graphic output is improved. Now, it is possible to use two separated
                    901: scales on the same 2D graph (with "main" and "auxiliary" option of SCALE
                    902: intrinsic). For example:
                    903: 
                    904: #!/usr/local/bin/rpl -c
                    905: 
                    906: TEST
                    907: <<
                    908:    'X' indep
                    909:    { X Y } autoscale
                    910:    'SIN(X)' steq draw
                    911:    { "auxiliary" } axes
                    912:    { X Y } autoscale
                    913:    'COS(X)+2' steq draw
                    914:    { { "ticsonly" "automatic" } { "ticsonly" "automatic" } } axes
                    915:    drax persist
                    916: >>
                    917: 
                    918: - a major bug is fixed in encart.c;
                    919: - ncurses is patched.
                    920: * Mon nov 1 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7o (RPL/2)
                    921: - configure script is updated;
                    922: - splash screen is added;
                    923: - minor bug is fixed in SYSEVAL (only occurs with SIGINT signal).
                    924: * Sun oct 24 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7n (RPL/2)
                    925: - stack overflows are caught.
                    926: * Fri oct 8 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7m (RPL/2)
                    927: - minor bug is fixed in both << and >> intrinsics. It only occurs when
                    928: "<<" HELP or ">>" help is called;
                    929: - DFT and IDFT are added;
                    930: - minor bug is fixed in FFT (explicit length has to be positive);
                    931: - MOD can be used with vectors and matrices arguments;
                    932: - major bugs are fixed in FFT and IFFT (trouble in the computation of the
                    933: default length of FFT). Only occur with matrices.
                    934: * Sat aug 14 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7l (RPL/2)
                    935: - readline is upgraded to 5.0;
                    936: - gsl is upgraded to 1.5;
                    937: - corrections in HELP functions.
                    938: * Fri aug 7 2004 BERTRAND Joël <rpl@systella.fr> rpl-4.00pre7k (RPL/2)
                    939: - HELP is added;
                    940: - statistic matrix SIGMA is renamed as SDAT;
                    941: - rpl.h is modified to workaround a bug in Cygwin environment
                    942: (SA_NOMASK is not defined in include files);
                    943: - overflows are tested in HMS+ and HMS-;
                    944: - CEIL, FLOOR and IP are modified to return a correct result with huge
                    945: arguments that cannot be stored as integers;
                    946: - fix a minor bug in ->LIST. The LAST stack now contains all arguments
                    947: of this intrinsic;
                    948: - flag 32 is used with DISP;
                    949: - major bug is fixed in ->Q intrinsic (type of argument and memory leak).
                    950: * Fri may 21 2004 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7j (RPL/2)
                    951: - major bug is fixed in analyse(). CHR intrinsic cannot be called because
                    952: I have erased a 'break' in a case statement;
                    953: - major bug is fixed in AXES intrinsic. It only occurs when AXES is used
                    954: with "main" or "auxiliary" option;
                    955: - major bug is fixed in recherche_types(). With this patch, 'sin(X)' is
                    956: now well analysed as 'SIN(X)'.
                    957: * Thu apr 22 2004 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7i (RPL/2)
                    958: - major bug is discovered and fixed in formateur(). It only occurs when
                    959: an algebraic expression is displayed with '='. In some cases, parenthesis
                    960: are missing. Same fix in formateur_fichier();
                    961: - a minor bug is fixed in evaluation.c that does not return any error when
                    962: it tries to execute 'a=z' e = ;
                    963: - new code is written in each intrinsic functions to return their required
                    964: arguments.
                    965: * Sun apr 14 2004 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7h (RPL/2)
                    966: - a minor bug is fixed in recherche_type: 1.E90 is now a real;
                    967: - minor bug is fixed in formateur_reel(). It only occurs in STD mode:
                    968: 1E90 was printed as 1.00000000000000E90;
                    969: - HELP is added;
                    970: - formateur() is fixed to properly print matrices and lists;
                    971: - a lot of warnings due to deprecated syntax are fixed;
                    972: - DFT is modified but not usable;
                    973: - cosmetic bug is fixed in formateur_tex.c;
                    974: - minor bug is fixed in FFT intrinsic (segfault when FFT is called without
                    975: any argument).
                    976: * Sun Jan 25 2004 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7g (RPL/2)
                    977: - included ncurses is updated to 5.4;
                    978: - included units is updated to 1.83c;
                    979: - major bug is fixed in recherche_type() function. With this bug, RPL/2
                    980: prints 'A/INV(Z+E)+R' when you enter A Z E + inv R + /;
                    981: - DFT intrinsic is added. It returns the discrete Fourier transform of an
                    982: array. When the length of each line is 2**n, the result is the same as
                    983: the result of FFT;
                    984: - minor bug is discovered and fixed in PUT and PUTI intrinsics when these
                    985: instructions verify arguments types. It does not affect the result when
                    986: all arguments are correct.
                    987: * Sun Oct 19 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7f (RPL/2)
                    988: - major bug is fixed in evaluation of both EXIT and CYCLE intrinsics. Now,
                    989: EXIT can be used (as ABORT and KILL) to quit interactive mode of RPL/2;
                    990: - units is updated to 1.83a release;
                    991: - formateur_fichier.c is modified to handle unformatted files. This task
                    992: is not completed.
                    993: * Mon Aug 25 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7e (RPL/2)
                    994: - CLUSR is written. It purges all global variables;
                    995: - BESSEL intrinsic is fixed to allow the use of expressions as arguments;
                    996: - a major bug was introduced with rpl-4.00pre7d in formateur.c. It appears
                    997: when an algebraic expression is displayed or printed but does not affect
                    998: computations. It is now fixed;
                    999: - gsl is upgraded to 1.4.
                   1000: * Mon Aug 18 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7d (RPL/2)
                   1001: - algebraic expressions are now more readable when they are displayed
                   1002: (less parenthesis);
                   1003: - rplpp is modified to workaround a mistake in 'which' function (seems to appear
                   1004: on Debian distribution, but since cpp is in the default path, RPL/2 works
                   1005: fine...);
                   1006: - NOT is not correctly formatted in formateur.c:
                   1007: Z NOT -> 'NOT Z' but 'A+Z' NOT -> 'NOT A+Z' and 'NOT Z+A' -> 'NOTZ+A'
                   1008: with a NOTZ function !
                   1009: * Sun Aug 10 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7c (RPL/2)
                   1010: - CYCLE is fixed. Now, it is possible to use CYCLE in an expression even
                   1011: if the main loop is in a program;
                   1012: - RPL/2 is tested with efence and valgrind;
                   1013: - configure.in script is modified;
                   1014: - units.c is modified to be built by gcc-3.3. I only have removed a #if 0/#endif
                   1015: structure. I don't know why this code was compiled by gcc-3.3... Maybe
                   1016: another gcc bug...
                   1017: * Fri Jul 25 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7b (RPL/2)
                   1018: - EXIT is fixed. Now, it is possible to use EXIT in an expression when the
                   1019: main loop is in a program;
                   1020: - RPL/2 can take its arguments (and command) on the standard input. Try
                   1021: echo "1 2 3 + *" | rpl -i | grep "^1:" | cut -d ':' -f2
                   1022: - a minor bug in vim syntax file is fixed (CYCLE and EXIT intrinsics);
                   1023: - a minor bug is discovered in analyse_algebrique(). Now, expression
                   1024: such as 'A+Z AND 2' or '(A+Z) AND 2' are correctly parsed.
                   1025: * Mon Jun 16 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7a (RPL/2)
                   1026: - Major bug is fixed in evaluation subroutine. This one only occurs
                   1027: when an error in a user definition called by an expression is caught
                   1028: by an IFERR structure;
                   1029: - EXIT intrinsic can now be used in DO/UNTIL/END or WHILE/REPEAT/END loops;
                   1030: - sequenceur() is now uninterruptible with STOP signal in recherche_type()
                   1031: subroutine;
                   1032: - major bug is fixed in types.c (# xxxxxb) and recherche_instruction_suivante();
                   1033: - GSL exception (underflow) is now caught;
                   1034: - tools/Makefile.am is fixed;
                   1035: - Debian buildpackage script is fixed.
                   1036: * Tue Jun 10 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre7 (RPL/2)
                   1037: All memory leaks issued from the pre6 beta releases seem to be fixed.
                   1038: Build process is improved and vim syntax file and manual pages are updated.
                   1039: * Mon Jun 9 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6l (RPL/2)
                   1040: - RCI and RCIJ intrinsic are added;
                   1041: - BESSEL intrinsic is added. Syntax:
                   1042: 3: type ("J", "K", "I", "Y", "j", "k", "i", "y")
                   1043: 2: order (integer or real)
                   1044: 1: x;
                   1045: - ->Q intrinsic is added;
                   1046: - major bug is fixed in C->R intrinsic;
                   1047: - ROW+ and ROW- are added and tested;
                   1048: - COL+ and COL- are added and tested. Syntax:
                   1049: 3: matrix
                   1050: 2: integer (number of column to be inserted)
                   1051: 1: column matrix to be inserted;
                   1052: - major bug was discovered in interface_gnuplot(). It only occurs when
                   1053: the subroutine reduces the graphical depth. It is now fixed;
                   1054: - Some mistakes are been fixed in vim syntax file;
                   1055: - SX2, SY2 and SXY are added;
                   1056: - SX and SY statistical intrinsics are added;
                   1057: - DEBIAN control file is fixed;
                   1058: - PAPER intrinsic is added. Supported paper formats are now : a4, a5, b5,
                   1059: letter, legal, executive;
                   1060: - PPAR is modified to include current graphic type.
                   1061: * Sun Jun 1 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6k (RPL/2)
                   1062: - SLICESCALE intrinsic is added. Its syntax is
                   1063: { "automatic" nb_of_levels }
                   1064: { "discrete" l1 l2 l3 ... }
                   1065: { "incremental" start incr }
                   1066: { "incremental" start incr end }
                   1067: { "automatic" } (default);
                   1068: - a minor bug (in last stack) is fixed in AXES intrinsic
                   1069: - flag 52 is used to automatically update graphics;
                   1070: - man pages are updated;
                   1071: - evaluation() is modified to perform evaluation of expressions that contain
                   1072: '=';
                   1073: - a minor bug is fixed in AXES intrinsic;
                   1074: - a minor bug is fixed in DRAW intrinsic (2D and 3D graphics were able to
                   1075: appear on the same figure). The same mistake is fixed in DRWS intrinsic;
                   1076: - LAST is disabled in evaluation subroutine (EVAL and ->NUM intrinsics).
                   1077: * Sun May 18 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6j (RPL/2)
                   1078: - SLICE intrinsic is added. It is used to draw 3D graphics as contour lines;
                   1079: - PLOTTER is added to draw statistical clouds with lines;
                   1080: - C and H source files now include vim parameters;
                   1081: - vim syntax file is modified to include new intrinsics;
                   1082: - static archive is modified to include all required libraries needed by
                   1083: RPL/2.
                   1084: * Sun May 4 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6i (RPL/2)
                   1085: - '=' is added and tested;
                   1086: - XCOL and YCOL are added;
                   1087: - a minor bug in analyse_syntaxique() is fixed;
                   1088: - THEN is modified to return an error when ELSE appears in a CASE/THEN/END
                   1089: structure. ELSE is modified to return an error when ELSE appears in
                   1090: an ELSE/END structure;
                   1091: - a major bug is fixed in CYCLE;
                   1092: - EXIT is written. When EXIT appears in a defined loop (FOR or START), the
                   1093: sequencer continues after the end of this loop;
                   1094: - SCLS is added;
                   1095: - DRWS now uses COLS to draw 2D graphics;
                   1096: - PPAR and SPAR are written. SPAR returns a list that contains the
                   1097: size of the statistical matrix (or "UNAVALAIBLE" if there is any
                   1098: statistical variable, or "DISABLED" if its type is not one of the type of
                   1099: a statistical matrix.) and XCOL and YCOL parameters. Warning: [[]] SIZE
                   1100: returns { 1 0 } and it is not a bug, because a null matrix contains _one_
                   1101: null line ! Thus, [[]] STOS SPAR returns { { 1 0 } 1 2 };
                   1102: - EXTERNAL intrinsic is added. Warning: by default, extern functions are
                   1103: disabled. Arguments of EXTERNAL are case sensitive because the external
                   1104: interface is written in C. { ext_sinus } EXTERNAL does not replace the list
                   1105: of known external functions but add the new list to the last. { "all" }
                   1106: EXTERNAL allows all external functions and { "none" } EXTERNAL removes all
                   1107: external names of the known functions;
                   1108: - mkrplso.in is modified.
                   1109: * Sun Apr 20 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6h (RPL/2)
                   1110: - vim syntax file is upgraded;
                   1111: - a minor mistake is fixed in recherche_instruction_suivante();
                   1112: - some minor memory leaks are fixed in recherche_type() function. They only
                   1113: occurs when a syntax error is detected;
                   1114: - #error and #warning preprocessor macros are added;
                   1115: - INCR and DECR are written (with integer or variable argument);
                   1116: - CSWP and RSWP are added and tested;
                   1117: - a minor bug is fixed in analyse.c;
                   1118: - DEBIAN/control is added to build debian package;
                   1119: - SCALE is fixed and improved ("automatic" keyword);
                   1120: - PUTC and PUTR new intrinsics are added.
                   1121: * Sun Apr 13 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6g (RPL/2)
                   1122: - a very minor bug is fixed in VISIT intrinsic. It only occurs when
                   1123: VISIT does not find a name in level 1;
                   1124: - configure.in script is modified to add a new test (--enable-debug
                   1125: flag). Configured with this fleg, RPL/2 will be built with electric-fences;
                   1126: - GETR (get row[s]) and GETC (get column[s]) are added. These new instructions
                   1127: extract a part of a matrix. Syntax: [[ 1 2 3 ][ 2 3 4 ]] { 1 } GETR or
                   1128: 'MATRIX' { 2 2 3 } GETR;
                   1129: - LOGSCALE intrinsic is improved and now, it can be used as
                   1130: { "main" "auxiliary" X Y } LOGSCALE;
                   1131: - SCALE intrinsic is used to fix the limits of a graphic. Its syntax is the
                   1132: same than AXES:
                   1133: { { 60 "ticsonly" 2 } { "automatic" "ticsonly" 10 } } axes
                   1134: { "auxiliary" { 60 "ticsonly" "default" } { "automatic" } } axes
                   1135: { { -10 10 } "automatic" } SCALE.
                   1136: Warning, it is not possible to ask a logarithmic scale with this intrinsic
                   1137: because it changes only the dimension of the screen. To have a logarithmic
                   1138: scale, you must use LOGSCALE intrinsic:
                   1139: { X } LOGSCALE gives a semi-log screen, { "auxiliary" X Y } gives a log-log
                   1140: screen on second scale;
                   1141: - { X X } autoscale and { Y Y } logscale are now invalid;
                   1142: - *D is added (depth multiplication, for 3D graphics);
                   1143: - a new intrinsic (*S) is added. It changes the scale of a graphic (X, Y
                   1144: and Z axes). The result of *S is the same than DUP DUP *H *W *D;
                   1145: - a major bug is fixed in GETI instrinsic when it is used with a name
                   1146: that contains a matrix or a vector (bad upper bounds conditions in
                   1147: incrementation);
                   1148: - DISP intrinsic now uses the 33-th flag. When it is not set
                   1149: (default), a final carriage return is sent to the terminal;
                   1150: - AXES intrinsic only takes a list that can contains the keywork
                   1151: "main" or "auxiliary". Before this modification, this keyword was in
                   1152: the first stack level;
                   1153: - vim syntax file is upgraded;
                   1154: - in appel_gnuplot(), stdin is closed when gnuplot is called with -raise
                   1155: option;
                   1156: - LAST is now disabled in the main loop of INT intrinsic;
                   1157: - expm1 and lnp1 are rewritten to use expm1 and log1p from math.h.
                   1158: * Sun Apr 6 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6f (RPL/2)
                   1159: - a major bug is fixed in evaluation() subroutine. It occurs with DRAW
                   1160: intrinsic when the equation cannot be evaluated (for example 'SIN(X)/X'
                   1161: in 0);
                   1162: - LAST is disabled in the main loop of DRAW intrinsic;
                   1163: - a major bug is fixed in DRAW intrinsic. When an error occurs in the
                   1164: evaluation of an equation, the system stack is returned corrupted to the
                   1165: sequencer;
                   1166: - the same minor bug is fixed in FOR and START. It only occurs when the limits
                   1167: of a loop are not integer or real.
                   1168: * Sun Mar 31 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6e (RPL/2)
                   1169: - the compilation stage aborts with an error message when two definitions
                   1170: have the same name. To improve the compilation() subroutine, I have to
                   1171: add some tests in gestion_variables.c;
                   1172: - recherche_type() subroutine ad some other connex subroutines are improved.
                   1173: Now, some syntax errors about object are caught and do not perform sequencer
                   1174: hangup;
                   1175: - readline is upgraded (minor compilation bug with recent gcc);
                   1176: - Makefile.am's and configure.in scripts are improved.
                   1177: * Fri Mar 14 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6d (RPL/2)
                   1178: - DRWS intrinsic is written. Two datastyles are associated: SCATTER (2D
                   1179: and 3D) and HISTOGRAM (only 2D, but 3 columns are accepted, the third shown
                   1180: the boxwidth, 1 by default);
                   1181: - recherche_type() is rewritten to be faster;
                   1182: - gsl is upgraded (release 1.3);
                   1183: - ncurses is upgraded and patched (release 5.3);
                   1184: - recherche_instruction_suivante() is fixed (string research with included
                   1185: '"') and rewritten to be faster;
                   1186: - appel_gnuplot() is fixed. When no graphic was available, it returned a
                   1187: segfault.
                   1188: * Sun Mar 9 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6c (RPL/2)
                   1189: - RPL/2 is compiled by gcc-3.2.2 and seems to work;
                   1190: - the same minor bug is fixed in REDRAW and DRAX functions;
                   1191: - a minor fix is written in DRAW function (2D and 3D);
                   1192: - AXES intrinsic is improved. Now { { pi "ticsonly" 4 } "automatic" } DRAX
                   1193: is accepted;
                   1194: - a minor bug is fixed in VISIT intrinsic.
                   1195: * Sun Jan 26 2003 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6b (RPL/2)
                   1196: - a minor bug is fixed in evaluation subroutine;
                   1197: - vim syntax file is improved;
                   1198: - DRAW (wireframe section) is fixed. When an error occurs in the evaluation
                   1199: of a 3D-graphic (for example 'SIN(R)/R' with 'R=SQRT(X**2+Y**2)' in X=0 and
                   1200: Y=0), no graph was procuced (it results from a bug in gnuplot, and this fix
                   1201: is a quick and dirty workaround...);
                   1202: - RETURN intrinsic is modified to fix a trouble in interactive mode;
                   1203: - rplconvert is improved.
                   1204: * Sun Dec 22 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6a (RPL/2)
                   1205: - a memory leak is fixed in formateur.c that only occurs when RPL/2 try
                   1206: to print a list that contains a name;
                   1207: - a major bug is fixed in -> intrinsic that only occurs in evaluation case with
                   1208: a algebraic expression (<< 1 -> X 'X+1' >> eval);
                   1209: - vim syntax file is improved;
                   1210: - RPL/2 can now be built by gcc 3.2.1;
                   1211: - "**" can be used in algebraic expression;
                   1212: - DRAW can now plot wireframe (3D) graphics.
                   1213: * Sun Dec 8 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre6 (RPL/2)
                   1214: - ncurses is patched to be compiled by gcc 3.2;
                   1215: - purification_chaine is rewritten to fix a major bug (when 'chaine' is empty);
                   1216: - a major bug is fixed in recherche_instruction_suivante();
                   1217: - minor bug is fixed in rpl-core file. The error message is now correctly
                   1218: written;
                   1219: - minor bug is fixed in analyse_notation_algebrique.c and types.c.
                   1220: Now, an expression such as 'A+' returns an error when it is analyzed;
                   1221: - VISIT intrinsic is added;
                   1222: - a major memory leak is fixed in evaluation.c. This bug rarely occurs in
                   1223: normal mode.
                   1224: * Sun Aug 25 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5e (RPL/2)
                   1225: - an EDIT intrinsic is added;
                   1226: - PRMD intrinsic returns french or english messages;
                   1227: - rpl-core now call LAST intrinsic if the last stack is avalaible. It
                   1228: contains the error message too;
                   1229: - new syntax, ftplugin and indent files are written for vim text editor;
                   1230: - major bug is found and fixed in RCL intrinsic;
                   1231: - major bug is found and fixed in OR intrinsic.
                   1232: * Mon Jul 29 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5d (RPL/2)
                   1233: - ncurses is updated;
                   1234: - minor bug is fixed on PURGE instruction (an error no caught was
                   1235: returned in interactive mode).
                   1236: * Mon Jul 21 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5c (RPL/2)
                   1237: - ASL (arithm. shift left) is added.
                   1238: * Thu Jul 11 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5b (RPL/2)
                   1239: - ncurses is patched;
                   1240: - gsl is added to perform arithmetic operations;
                   1241: - units is patched;
                   1242: - some very minor bugs have been fixed.
                   1243: * Wed May 15 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5a (RPL/2)
                   1244: - ncurses is patched;
                   1245: - RPL/2 can now be built by gcc 3.1;
                   1246: - RDZ is fixed (minor bug).
                   1247: * Sun Apr 21 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre5 (RPL/2)
                   1248: - RPL/2 can now be called from other languages (librpl libraries).
                   1249: * Sun Mar 24 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4h (RPL/2)
                   1250: - ERRN and ERRM can now be used with errors returned by external functions;
                   1251: - readline and ncurses have been updated;
                   1252: - no more bugs have been reported since the rpl-4.00pre4g release.
                   1253: * Wed Feb 20 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4g (RPL/2)
                   1254: - ERRN and ERRM intrinsic functions are written. They return the last
                   1255: error number or message even if errors are caught by an IFERR structure;
                   1256: - a minor bug is fixed in EPSILON intrinsic. Now, 'EPSILON(0)' returns
                   1257: a non null value;
                   1258: - Ncurses is updated.
                   1259: * Mon Feb 18 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4f (RPL/2)
                   1260: Arithmetic intrinsic instructions (- +, -, *, / and **) are improved :
                   1261: 'X' 0 + and 0 'X' + return 'X';
                   1262: 'X' 0 - returns 'X';
                   1263: 'X' 1 * and 1 'X' * return 'X';
                   1264: 'X' 0 * and 0 'X' * returns 0; 
                   1265: 'X' 1 / returns 'X';
                   1266: 'X' 1 ** returns 'X';
                   1267: 'NEG(X)' NEG returns 'X';
                   1268: - autoconf/automake scripts are improved: now, the size of the different types
                   1269: found by configure are used in rpltypes.h (rplconfig.h is written by configure);
                   1270: - rdynamic flag is added in src/Makefile.am. This flag is used in the first
                   1271: makefile, but forgotten in the new process;
                   1272: - Flag 31 is tested before saving any arguments in bibliotheques_externes.c;
                   1273: - POS can now be used on lists;
                   1274: - ELSILON is written. This function returns the smallest real e(x) such as
                   1275: e+abs(x) != abs(x).
                   1276: * Mon Feb 11 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4e (RPL/2)
                   1277: - now, INT intrinsic function can be interrupted;
                   1278: - precision of sommation_vecteur_xxx() subroutines is improved;
                   1279: - new vim syntax file written for vim 6.0.
                   1280: * Mon Feb 04 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4d (RPL/2)
                   1281: - explicit error messages are now printed when the RPL/2 is used in
                   1282: interactive mode;
                   1283: - major bug is fixed in OPEN intrinsic: with 'REPLACE' status, file lock was
                   1284: tested after the file is opened, thus, when the file was locked, it was
                   1285: deleted too!;
                   1286: - configure script is improved (and it seems to be good ;-) );
                   1287: - An --disable-experimental flag is added to the configure script. Thus, even
                   1288: if you compile a beta release, you can compile a stable RPL/2;
                   1289: - new syntax and ftplugin written for vim 6.0.
                   1290: * Wed Jan 30 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4c (RPL/2)
                   1291: - configure script is improved.
                   1292: * Sun Jan 27 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4b (RPL/2)
                   1293: - ncurses now replaces termcap;
                   1294: - Côme DESPLATS has written a configure script.
                   1295: * Fri Jan 18 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4a (RPL/2)
                   1296: - KIND is added and returns the type of the numerical argument ;
                   1297: - history file is added.
                   1298: * Tue Jan 15 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre4 (RPL/2)
                   1299: - Stable release. Unformatted files are disabled in this release.
                   1300: * Mon Jan 14 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3h (RPL/2)
                   1301: - SIGTSTP (CTRL+Z) is added. In a script, a SIGTSTP signal signifies
                   1302: that the RPL/2 seqencer must stop and must give a prompt. This
                   1303: signal is an asynchonous "HALT" command;
                   1304: - SIGINT (CTRL+C) variables stack corruption is fixed;
                   1305: - IFERR seems to be fixed (in equation evaluation routine);
                   1306: - Memory leak is fixed (ADR object type);
                   1307: - DATE returns both date and hours;
                   1308: - TIME now returns user and system CPU times;
                   1309: - MEM is added.
                   1310: * Thu Jan 10 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3g (RPL/2)
                   1311: - Makefile is improved to support sparc v7 (sun4c), sparc v8 (sun4m) and
                   1312: sparc v9 (sun4u). Now, RPL/2 can be built on i386 (i486 is known as i386),
                   1313: i586, i686, K6, K7, alpha ev4, alpha ev5, alpha ev56, alpha ev6, sparc v7,
                   1314: sparc v8 and sparc v9. Compilation of RPL/2 on my Sun Sparc 2 (sun4c,
                   1315: CPU 4/75, 64 MB, 40 MHz with FPU) is a very great mission :
                   1316: 
                   1317: Newton:[~/rpl/rpl] > time make install
                   1318: ...
                   1319: real    338m39.623s
                   1320: user    324m32.290s
                   1321: sys     10m47.380s
                   1322: Newton:[~/rpl/rpl] >
                   1323: 
                   1324: I don't know if you will compile this language on old worstations, but
                   1325: it is usable ;-) ;
                   1326: - SYSEVAL is improved. An external program can be called without any shell.
                   1327: Thus, even if the sticky bit is set, RPL/2 can not give a shell root when
                   1328: a SYSEVAL command crashes;
                   1329: - minor bug is fixed in recherche_type() (# xxxxb parsing);
                   1330: - presence of bootstrap entry point is verified before launching the
                   1331: sequencer;
                   1332: - minor bug is fixed in formateur_tex() (underscore in mathematical
                   1333: expression);
                   1334: - Lapack is updated.
                   1335: * Thu Jan 3 2002 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3f (RPL/2)
                   1336: - IFERR is now known in an expression, but not usable.
                   1337: * Mon Dec 31 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3e (RPL/2)
                   1338: - several bugs are fixed.
                   1339: * Mon Dec 17 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3d (RPL/2)
                   1340: - major bugfix in file locking.
                   1341: * Fri Dec 14 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3c (RPL/2)
                   1342: - minor fixes is system() call.
                   1343: * Fri Nov 30 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3b (RPL/2)
                   1344: - automatic limitation of the graphical depth due to a limitation (bug ?)
                   1345: of gnuplot.
                   1346: * Mon Nov 19 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3a (RPL/2)
                   1347: - new file temp management.
                   1348: * Sun Nov 18 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre3 (RPL/2)
                   1349: - memory leak is fixed in STO instruction;
                   1350: - minor bug in file management is fixed;
                   1351: - BACKSPACE is added;
                   1352: - VARS is added;
                   1353: - file locks are improved.
                   1354: * Wed Nov 14 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2l (RPL/2)
                   1355: - major bug is fixed (on sparc architecture) and RPL/2 can now run
                   1356: on sparc stations;
                   1357: - INDEP and DEPND are improved;
                   1358: - AXES is added;
                   1359: - WRITE, APPEND and REWIND are added.
                   1360: * Sun Nov 11 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2k (RPL/2)
                   1361: - write is improved ;
                   1362: - major bug is found and fixed in copie_objet() with struct_fichier;
                   1363: - minor bug is fixed in OPEN function;
                   1364: - minor bug is fixed in analyse_syntaxique() subroutine. All commands
                   1365: are analysed before starting their executions.
                   1366: * Thu Nov 8 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2j (RPL/2)
                   1367: - minor bug is fixed in appel_gnuplot();
                   1368: - RPL/2 can work without LANG variable.
                   1369: * Wed Oct 31 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2i (RPL/2)
                   1370: - WAIT function is improved (removing the polling function);
                   1371: - LAST stack is not active (default) when rpl is called without the option -i.
                   1372: In all other cases, LAST stack is active;
                   1373: - Labels can be added on a gnuplot output (function LABEL);
                   1374: - LCD-> and ->LCD are added.
                   1375: * Sun Oct 21 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2h (RPL/2)
                   1376: - minor bug is fixed in TeX output (pi);
                   1377: - new english manual is added.
                   1378: * Wed Oct 16 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2g (RPL/2)
                   1379: - LOCK, WFLOCK and UNLOCK are added. A file is locked when it is opened;
                   1380: - VERSION function is added. It returns the version number of the interpreter;
                   1381: - minor bug is fixed in evaluation subroutine;
                   1382: - english error messages are been fixed.
                   1383: * Tue Oct 09 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2f (RPL/2)
                   1384: - interrupt subroutine is added;
                   1385: - formatted files support is continued.
                   1386: * Sun Sep 30 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2e (RPL/2)
                   1387: - formateur_fichier.c is added to perform formatted files write.
                   1388: * Thu Sep 27 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2d (RPL/2)
                   1389: - minors bugfixes in FIX format in formateur_reel() subroutine;
                   1390: - new manual page in english;
                   1391: - FORMAT intrinsic is added and can read any format for "formatted" file.
                   1392: * Sun Sep 23 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2c (RPL/2)
                   1393: - OPEN, CLOSE, SYNC, INQUIRE, CREATE and DELETE are tested;
                   1394: - a man page in the first manual section is written.
                   1395: * Thu Sep 20 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2b (RPL/2)
                   1396: - major bugfixes in recherche_type() subroutine: sometimes in interactive mode,
                   1397: this routine was be able to forget the last element of a list, a vector or
                   1398: a matrix.
                   1399: * Mon Sep 17 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2a (RPL/2)
                   1400: - OPEN, CLOSE and DELETE are known by the language but not very usable;
                   1401: - minor bugfixes in evaluation routine.
                   1402: * Sun Sep 16 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre2 (RPL/2)
                   1403: - major bugfixes in evaluation routine.
                   1404: * Sat Sep 15 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1d (RPL/2)
                   1405: - conditional structures can be used in equations.
                   1406: * Fri Sep 14 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1c (RPL/2)
                   1407: - Minor bugfixes in makefile.
                   1408: * Sat Sep  8 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1b (RPL/2)
                   1409: - CONVERT is written;
                   1410: - CYCLE, FOR/NEXT, FOR/STEP, START/NEXT, START/STEP, DO/UNTIL/END and
                   1411: WHILE/REPEAT/END can now be used in an equation;
                   1412: - I fix some troubles with evaluation subroutine;
                   1413: - db3 library is added.
                   1414: * Thu Sep  6 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1a (RPL/2)
                   1415: - add rplconvert and rplunits sources;
                   1416: - add CONVERT definition (but it does not work).
                   1417: * Mon Sep  3 2001 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre1 (RPL/2)
                   1418: - initial public release (GPL).
                   1419: * Thu Apr  2 1998 BERTRAND Joël <rpl2@systella.fr> rpl-4.00pre0 (RPL/2)
                   1420: - RPL is rewritten from scratch and named RPL/2.
                   1421: #* 1992 BERTRAND Joël rpl-3.02 (RPL-387)
                   1422: #- minor bugfixes.
                   1423: #* 1991 BERTRAND Joël rpl-3.01 (RPL-387)
                   1424: #- arithmetic processor support is added to improve global performances.
                   1425: #* 1991 BERTRAND Joël rpl-3.00 (RPL-386)
                   1426: #- idem... but on an i386DX...
                   1427: #* 1990 BERTRAND Joël rpl-2 (RPL-6809)
                   1428: #- a new release on a more powerfull processor and with new functions and an
                   1429: #built-in editor. It has been written on a SMT-Goupil G3-6809 running
                   1430: #Flex9 (320 KB of RAM and a graphic card used to draw 512*256 graphics in
                   1431: #8 colors)
                   1432: #* 1989 BERTRAND Joël rpl-1 (RPL-6502)
                   1433: #- initial release (only an historic interest) written on an ORIC Atmos 48K.
                   1434: #No graphic was provided.

CVSweb interface <joel.bertrand@systella.fr>