This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] to libiberty: #include "libiberty.h" in md5.c


Hi there,

Below is a patch to libiberty. The recently added md5.c source file doesn't
#include "libiberty.h", breaking building on 4.3BSD due to undefined const.
This patch fixes it.

--
Michael Sokolov		Harhan Engineering Laboratory
Public Service Agent	International Free Computing Task Force
			International Engineering and Science Task Force
			615 N GOOD LATIMER EXPY STE #4
			DALLAS TX 75204-5852 USA

Phone: +1-214-824-7693 (Harhan Eng Lab office)
E-mail: msokolov@ivan.Harhan.ORG (ARPA TCP/SMTP) (UUCP coming soon)

2000-08-30  Michael Sokolov  <msokolov@ivan.Harhan.ORG>

	* md5.c: #include "libiberty.h".

Index: md5.c
===================================================================
RCS file: /cvs/gcc/egcs/libiberty/md5.c,v
retrieving revision 1.1
diff -c -r1.1 md5.c
*** md5.c	2000/08/29 00:29:26	1.1
--- md5.c	2000/08/30 18:40:31
***************
*** 35,40 ****
--- 35,41 ----
  # endif
  #endif
  
+ #include "libiberty.h"
  #include "md5.h"
  
  #ifdef _LIBC

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]