freebsd-ports/korean/eterm/files/patch-ah
Hye-Shik Chang 81d7ca74e8 o Fix build on 5 [1]
o Don't hardcode /usr/local in patches

PR:		50153 [1]
Submitted by:	JunSeon Oh <hollywar@holywar.net> [1]
2003-03-24 05:13:33 +00:00

21 lines
434 B
Text

--- utils/Etbg.c.orig Sat Mar 27 10:13:46 1999
+++ utils/Etbg.c Mon Mar 24 14:03:40 2003
@@ -26,12 +26,15 @@
#include <stdio.h>
#include <string.h>
+#ifndef FALSE
+#define FALSE (0)
+#define TRUE (1)
+#endif
+
int
main(int argc, char **argv)
{
- enum {
- FALSE, TRUE
- } scale = FALSE, trans = FALSE;
+ int scale = FALSE, trans = FALSE;
unsigned int i, pic = 0, tint = 0, shade = 0;
for (i = 1; i < argc; i++) {