1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/deskutils/xrolo/files/patch-ad
Steve Price 97b24974af Initial import of xrolo version 2.6.
This is an Xview port of Ron Hitchens rolo tool.

PR:		9409
Submitted by:	Lars Koeller <lkoeller@cc.fh-lippe.de>
1999-01-18 04:16:22 +00:00

44 lines
829 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

*** panel.c.orig Wed Dec 4 01:38:09 1991
--- panel.c Sat Jan 9 22:49:59 1999
***************
*** 35,40 ****
--- 35,48 ----
*/
+ #ifdef HAVE_SYS_PARAM_H
+ #include <sys/param.h>
+ #endif
+
+ #if (defined(BSD) && (BSD >= 199306))
+ #include <stdlib.h>
+ #endif
+
#include <stdio.h>
#include <strings.h>
#include <xview/xview.h>
***************
*** 46,52 ****
#include <xview/svrimage.h>
#include <sys/param.h>
#include <ctype.h>
! #if !defined (sgi)
#include <alloca.h>
#endif
#include <string.h>
--- 54,60 ----
#include <xview/svrimage.h>
#include <sys/param.h>
#include <ctype.h>
! #if !defined (sgi) && !(defined(BSD) && (BSD >= 199306))
#include <alloca.h>
#endif
#include <string.h>
***************
*** 2462,2465 ****
return(--s1);
return( NULL );
}
-
--- 2470,2472 ----