*****************************************************************

 LiDIA -  A system for computational number theory - version 1.1


                  LiDIA Group

                  Universit"at des Saarlandes
	          Fachbereich 14 - Informatik
		  Lehrstuhl Prof. Buchmann
	          Postfach 151150
	          D - 66041 Saarbr"ucken


            Copyright (c) 1995 by the LiDIA Group 

*****************************************************************

"I  may  not  be totally perfect, but parts of me are excellent."


                         ***********
                         * Buglist *
                         ***********

This file contains the list of approved LiDIA bugs. You can get
this file also by anonymous ftp from

            crypt1.cs.uni-sb.de:pub/systems/LiDIA/Bugs

Format of bug description

*****************************************************************
Number      : ascending numbering
Date        : 
File        : file(s) which has to be changed
Reported by : the user 
Fixed by    : the developer
*****************************************************************

BUG: the user report

WHY: developer's description of the reason

FIX: developer's fix





*****************************************************************
Number      : 01
Date        : 24.02.95
File        : LiDIA/config/configure
Reported by : John Cremona (cremona@maths.exeter.ac.uk)
Fixed by    : Thomas Papanikolaou (TP) (lidia-bugs@cs.uni-sb.de)

John Cremona reports:

BUG: During "make configure" I got the following error messages:
     (...)
     sys.c:44: conflicting types for `main'
     sys.c:13: previous declaration of `main'
     ./configure: ./sys: No such file or directory

WHY: "LIDIA/config/configure" creates a sys.c file which is compiled
     to retrieve ordering information for doubles, i.e it print
     DOUBLES_HIGH_LOW or DOUBLES_LOW_HIGH. sys.c contains a void
     main() function which is not understand by Linux (it expects int
     main()).

FIX: 1) Edit "LIDIA/config/configure", search for sys.c and change the
	line
     
	void main()

	by 

	int main()

     2) If the file LIDIA/config/sys.c exists, remove it.

     3) Rerun make configure.
*****************************************************************
