View | Details | Raw Unified | Return to bug 42454
Collapse All | Expand All

(-)Makefile (+2 lines)
Lines 25-30 Link Here
25
25
26
MAN1=		ddd.1
26
MAN1=		ddd.1
27
27
28
CFLAGS+= -Wno-deprecated
29
28
.if defined(MOTIFLIB)
30
.if defined(MOTIFLIB)
29
.if defined(MOTIF_STATIC)
31
.if defined(MOTIF_STATIC)
30
LIBXMDIR!=	${ECHO_CMD} ${MOTIFLIB} | ${SED} -e 's/\/libXm\.a//g' | ${AWK} '{print $$1}'
32
LIBXMDIR!=	${ECHO_CMD} ${MOTIFLIB} | ${SED} -e 's/\/libXm\.a//g' | ${AWK} '{print $$1}'
(-)files/patch-02 (+3 lines)
Lines 6-11 Link Here
6
@@ -1961 +1961 @@
6
@@ -1961 +1961 @@
7
-for ac_prog in 'bison -y' byacc
7
-for ac_prog in 'bison -y' byacc
8
+for ac_prog in byacc
8
+for ac_prog in byacc
9
@@ -6168 +6168 @@
10
-#include <iostream.h>
11
+#include <fstream.h>
9
@@ -13358 +13358 @@
12
@@ -13358 +13358 @@
10
-  egrep "${ice_re_word}ioctl *\(" >/dev/null 2>&1; then
13
-  egrep "${ice_re_word}ioctl *\(" >/dev/null 2>&1; then
11
+  egrep "${ice_re_word}\(?ioctl\)? *\(" >/dev/null 2>&1; then
14
+  egrep "${ice_re_word}\(?ioctl\)? *\(" >/dev/null 2>&1; then
(-)files/patch-strerror.c (+17 lines)
Added Link Here
1
--- libiberty/strerror.c.orig	Wed Sep  4 12:56:21 2002
2
+++ libiberty/strerror.c	Wed Sep  4 12:56:45 2002
3
@@ -454,7 +454,7 @@
4
    We don't export it for use in other modules because even though it has the
5
    same name, it differs from other implementations in that it is dynamically
6
    initialized rather than statically initialized. */
7
-
8
+#ifndef __FreeBSD__
9
 #ifndef HAVE_SYS_ERRLIST
10
 
11
 static int sys_nerr;
12
@@ -465,6 +465,7 @@
13
 extern int sys_nerr;
14
 extern char *sys_errlist[];
15
 
16
+#endif
17
 #endif
(-)files/patch-strsignal.c (+17 lines)
Added Link Here
1
--- libiberty/strsignal.c.orig	Wed Sep  4 12:32:03 2002
2
+++ libiberty/strsignal.c	Wed Sep  4 12:32:52 2002
3
@@ -236,6 +236,7 @@
4
    same name, it differs from other implementations in that it is dynamically
5
    initialized rather than statically initialized. */
6
 
7
+#ifndef __FreeBSD__
8
 #ifndef HAVE_SYS_SIGLIST
9
 
10
 static int sys_nsig;
11
@@ -252,6 +253,7 @@
12
 #endif
13
 extern const char * const sys_siglist[];
14
 
15
+#endif
16
 #endif
17

Return to bug 42454