mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
43801110c6
port can be maintained: previously there were multifile patches and several patches for the same file, now it is a lot cleaner. 2. I also merged a memory leak fix and some fixes from spice3f5-spaghetti. 4. MFB and removed GNUREADLINE support 5. honor CFLAGS and CC. 6. Add documentation. 7. Maho didn't change the name of port spice to spice3. because spice4 might :) appear in the future. version number should be listed on *only* PORTVERSION. 8. drom maintainership PR: 54603 Submitted by: "Pedro F. Giffuni" <giffunip@yahoo.com>
32 lines
656 B
Plaintext
32 lines
656 B
Plaintext
*** src/include/misc.h.orig Thu Dec 1 09:17:02 1994
|
|
--- src/include/misc.h Sun Mar 31 12:32:58 1996
|
|
***************
|
|
*** 86,92 ****
|
|
--- 86,94 ----
|
|
extern char *realloc();
|
|
extern char *getenv();
|
|
extern int errno;
|
|
+ #ifndef __FreeBSD__
|
|
extern char *sys_errlist[];
|
|
+ #endif
|
|
extern char *getenv();
|
|
extern char *getwd();
|
|
extern int rand();
|
|
***************
|
|
*** 111,122 ****
|
|
--- 111,124 ----
|
|
# endif /* clearerr */
|
|
# endif /* HAS_CLEARERR */
|
|
|
|
+ #ifndef __FreeBSD__
|
|
# ifndef bzero
|
|
extern int bzero();
|
|
# endif
|
|
# ifndef bcopy
|
|
extern void bcopy();
|
|
# endif
|
|
+ #endif /* __FreeBSD__ */
|
|
|
|
# ifndef index
|
|
# ifdef HAS_INDEX
|