summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/cdrtools/cdrtools-native/glibc-conflict-rename.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/cdrtools/cdrtools-native/glibc-conflict-rename.patch')
-rw-r--r--meta/recipes-devtools/cdrtools/cdrtools-native/glibc-conflict-rename.patch236
1 files changed, 0 insertions, 236 deletions
diff --git a/meta/recipes-devtools/cdrtools/cdrtools-native/glibc-conflict-rename.patch b/meta/recipes-devtools/cdrtools/cdrtools-native/glibc-conflict-rename.patch
deleted file mode 100644
index 2fd5696561..0000000000
--- a/meta/recipes-devtools/cdrtools/cdrtools-native/glibc-conflict-rename.patch
+++ /dev/null
@@ -1,236 +0,0 @@
1This patch fixes collisions between locally defined functions
2and glibc's fexecve() and getline() functions.
3
4Upstream-Status: Inappropriate [Other]
5Upstream no longer maintains a GPL version of this utility.
6
7Signed-off-by: Scott Garman <scott.a.garman@intel.com>
8
9Index: cdrtools-2.01/include/schily.h
10===================================================================
11--- cdrtools-2.01.orig/include/schily.h 2009-06-18 11:30:45.000000000 +0100
12+++ cdrtools-2.01/include/schily.h 2009-06-18 11:31:22.000000000 +0100
13@@ -108,7 +108,7 @@
14 /* 6th arg not const, fexecv forces av[ac] = NULL */
15 extern int fexecv __PR((const char *, FILE *, FILE *, FILE *, int,
16 char **));
17-extern int fexecve __PR((const char *, FILE *, FILE *, FILE *,
18+extern int fexecve_schily __PR((const char *, FILE *, FILE *, FILE *,
19 char * const *, char * const *));
20 extern int fspawnv __PR((FILE *, FILE *, FILE *, int, char * const *));
21 extern int fspawnl __PR((FILE *, FILE *, FILE *,
22@@ -187,7 +187,7 @@
23 extern char *findbytes __PR((const void *, int, char));
24 extern int findline __PR((const char *, char, const char *,
25 int, char **, int));
26-extern int getline __PR((char *, int));
27+extern int getline_schily __PR((char *, int));
28 extern int getstr __PR((char *, int));
29 extern int breakline __PR((char *, char, char **, int));
30 extern int getallargs __PR((int *, char * const**, const char *, ...));
31Index: cdrtools-2.01/libscg/scsitransp.c
32===================================================================
33--- cdrtools-2.01.orig/libscg/scsitransp.c 2009-06-18 11:33:57.000000000 +0100
34+++ cdrtools-2.01/libscg/scsitransp.c 2009-06-18 11:34:24.000000000 +0100
35@@ -323,7 +323,7 @@
36
37 js_printf("%s", msg);
38 flush();
39- if (getline(okbuf, sizeof (okbuf)) == EOF)
40+ if (getline_schily(okbuf, sizeof (okbuf)) == EOF)
41 exit(EX_BAD);
42 if (streql(okbuf, "y") || streql(okbuf, "yes") ||
43 streql(okbuf, "Y") || streql(okbuf, "YES"))
44Index: cdrtools-2.01/libschily/fexec.c
45===================================================================
46--- cdrtools-2.01.orig/libschily/fexec.c 2009-06-18 11:29:29.000000000 +0100
47+++ cdrtools-2.01/libschily/fexec.c 2009-06-18 11:30:36.000000000 +0100
48@@ -159,7 +159,7 @@
49 } while (p != NULL);
50 va_end(args);
51
52- ret = fexecve(name, in, out, err, av, env);
53+ ret = fexecve_schily(name, in, out, err, av, env);
54 if (av != xav)
55 free(av);
56 return (ret);
57@@ -173,11 +173,11 @@
58 char *av[];
59 {
60 av[ac] = NULL; /* force list to be null terminated */
61- return (fexecve(name, in, out, err, av, environ));
62+ return (fexecve_schily(name, in, out, err, av, environ));
63 }
64
65 EXPORT int
66-fexecve(name, in, out, err, av, env)
67+fexecve_schily(name, in, out, err, av, env)
68 const char *name;
69 FILE *in, *out, *err;
70 char * const av[], * const env[];
71Index: cdrtools-2.01/libschily/stdio/fgetline.c
72===================================================================
73--- cdrtools-2.01.orig/libschily/stdio/fgetline.c 2009-06-18 11:28:14.000000000 +0100
74+++ cdrtools-2.01/libschily/stdio/fgetline.c 2009-06-18 11:28:55.000000000 +0100
75@@ -64,7 +64,7 @@
76 }
77
78 EXPORT int
79-getline(buf, len)
80+getline_schily(buf, len)
81 char *buf;
82 int len;
83 {
84Index: cdrtools-2.01/readcd/io.c
85===================================================================
86--- cdrtools-2.01.orig/readcd/io.c 2009-06-18 11:33:57.000000000 +0100
87+++ cdrtools-2.01/readcd/io.c 2009-06-18 11:34:38.000000000 +0100
88@@ -138,7 +138,7 @@
89 (*prt)(s, *lp, mini, maxi, dp);
90 flush();
91 line[0] = '\0';
92- if (getline(line, 80) == EOF)
93+ if (getline_schily(line, 80) == EOF)
94 exit(EX_BAD);
95
96 linep = skipwhite(line);
97@@ -205,7 +205,7 @@
98 printf("%r", form, args);
99 va_end(args);
100 flush();
101- if (getline(okbuf, sizeof(okbuf)) == EOF)
102+ if (getline_schily(okbuf, sizeof(okbuf)) == EOF)
103 exit(EX_BAD);
104 if (okbuf[0] == '?') {
105 printf("Enter 'y', 'Y', 'yes' or 'YES' if you agree with the previous asked question.\n");
106Index: cdrtools-2.01/readcd/readcd.c
107===================================================================
108--- cdrtools-2.01.orig/readcd/readcd.c 2009-06-18 11:33:58.000000000 +0100
109+++ cdrtools-2.01/readcd/readcd.c 2009-06-18 11:35:03.000000000 +0100
110@@ -1651,7 +1651,7 @@
111 error("Copy from SCSI (%d,%d,%d) disk to file\n",
112 scg_scsibus(scgp), scg_target(scgp), scg_lun(scgp));
113 error("Enter filename [%s]: ", defname); flush();
114- (void) getline(filename, sizeof (filename));
115+ (void) getline_schily(filename, sizeof (filename));
116 }
117
118 if (askrange) {
119@@ -1820,7 +1820,7 @@
120 error("Copy from file to SCSI (%d,%d,%d) disk\n",
121 scg_scsibus(scgp), scg_target(scgp), scg_lun(scgp));
122 error("Enter filename [%s]: ", defname); flush();
123- (void) getline(filename, sizeof (filename));
124+ (void) getline_schily(filename, sizeof (filename));
125 error("Notice: reading from file always starts at file offset 0.\n");
126
127 getlong("Enter starting sector for copy:", &addr, 0L, end-1);
128Index: cdrtools-2.01/scgcheck/dmaresid.c
129===================================================================
130--- cdrtools-2.01.orig/scgcheck/dmaresid.c 2009-06-18 11:33:59.000000000 +0100
131+++ cdrtools-2.01/scgcheck/dmaresid.c 2009-06-18 11:35:43.000000000 +0100
132@@ -64,7 +64,7 @@
133 printf("Ready to start test for working DMA residual count? Enter <CR> to continue: ");
134 fprintf(logfile, "**********> Testing for working DMA residual count.\n");
135 flushit();
136- (void) getline(abuf, sizeof (abuf));
137+ (void) getline_schily(abuf, sizeof (abuf));
138
139 printf("**********> Testing for working DMA residual count == 0.\n");
140 fprintf(logfile, "**********> Testing for working DMA residual count == 0.\n");
141@@ -95,7 +95,7 @@
142 printf("Ready to start test for working DMA residual count == DMA count? Enter <CR> to continue: ");
143 fprintf(logfile, "**********> Testing for working DMA residual count == DMA count.\n");
144 flushit();
145- (void) getline(abuf, sizeof (abuf));
146+ (void) getline_schily(abuf, sizeof (abuf));
147 passed = TRUE;
148 dmacnt = cnt;
149 ret = xtinquiry(scgp, 0, dmacnt);
150@@ -130,7 +130,7 @@
151 printf("Ready to start test for working DMA residual count == 1? Enter <CR> to continue: ");
152 fprintf(logfile, "**********> Testing for working DMA residual count == 1.\n");
153 flushit();
154- (void) getline(abuf, sizeof (abuf));
155+ (void) getline_schily(abuf, sizeof (abuf));
156 passed = TRUE;
157 dmacnt = cnt+1;
158 ret = xtinquiry(scgp, cnt, dmacnt);
159Index: cdrtools-2.01/scgcheck/scgcheck.c
160===================================================================
161--- cdrtools-2.01.orig/scgcheck/scgcheck.c 2009-06-18 11:33:59.000000000 +0100
162+++ cdrtools-2.01/scgcheck/scgcheck.c 2009-06-18 11:35:31.000000000 +0100
163@@ -189,7 +189,7 @@
164 break;
165 error("Enter SCSI device name for bus scanning [%s]: ", device);
166 flushit();
167- (void) getline(device, sizeof (device));
168+ (void) getline_schily(device, sizeof (device));
169 if (device[0] == '\0')
170 strcpy(device, "0,6,0");
171
172@@ -227,7 +227,7 @@
173 do {
174 error("Enter SCSI device name [%s]: ", device);
175 flushit();
176- (void) getline(device, sizeof (device));
177+ (void) getline_schily(device, sizeof (device));
178 if (device[0] == '\0')
179 strcpy(device, "0,6,0");
180
181@@ -256,7 +256,7 @@
182
183 printf("Ready to start test for second SCSI open? Enter <CR> to continue: ");
184 flushit();
185- (void) getline(abuf, sizeof (abuf));
186+ (void) getline_schily(abuf, sizeof (abuf));
187 #define CHECK_SECOND_OPEN
188 #ifdef CHECK_SECOND_OPEN
189 if (!streql(abuf, "n")) {
190@@ -344,7 +344,7 @@
191
192 printf("Ready to start test for succeeded command? Enter <CR> to continue: ");
193 flushit();
194- (void) getline(abuf, sizeof (abuf));
195+ (void) getline_schily(abuf, sizeof (abuf));
196 scgp->verbose++;
197 ret = inquiry(scgp, buf, sizeof (struct scsi_inquiry));
198 scg_vsetup(scgp);
199Index: cdrtools-2.01/scgcheck/sense.c
200===================================================================
201--- cdrtools-2.01.orig/scgcheck/sense.c 2009-06-18 11:33:58.000000000 +0100
202+++ cdrtools-2.01/scgcheck/sense.c 2009-06-18 11:35:54.000000000 +0100
203@@ -66,7 +66,7 @@
204 printf("Ready to start test for failing command? Enter <CR> to continue: ");
205 fprintf(logfile, "**********> Testing for failed SCSI command.\n");
206 flushit();
207- (void)getline(abuf, sizeof(abuf));
208+ (void)getline_schily(abuf, sizeof(abuf));
209 /* scgp->verbose++;*/
210 fillbytes(buf, sizeof(struct scsi_inquiry), '\0');
211 fillbytes((caddr_t)scgp->scmd, sizeof(*scgp->scmd), '\0');
212@@ -82,13 +82,13 @@
213 printf("the test utility. Otherwise remove any medium from the drive.\n");
214 printf("Ready to start test for failing command? Enter <CR> to continue: ");
215 flushit();
216- (void)getline(abuf, sizeof(abuf));
217+ (void)getline_schily(abuf, sizeof(abuf));
218 ret = test_unit_ready(scgp);
219 if (ret >= 0 || !scg_cmd_err(scgp)) {
220 printf("Test Unit Ready did not fail.\n");
221 printf("Ready to eject tray? Enter <CR> to continue: ");
222 flushit();
223- (void)getline(abuf, sizeof(abuf));
224+ (void)getline_schily(abuf, sizeof(abuf));
225 scsi_unload(scgp, (cdr_t *)0);
226 ret = test_unit_ready(scgp);
227 }
228@@ -127,7 +127,7 @@
229 printf("Ready to start test for sense data count? Enter <CR> to continue: ");
230 fprintf(logfile, "**********> Testing for SCSI sense data count.\n");
231 flushit();
232- (void)getline(abuf, sizeof(abuf));
233+ (void)getline_schily(abuf, sizeof(abuf));
234 printf("Testing if at least CCS_SENSE_LEN (%d) is supported...\n", CCS_SENSE_LEN);
235 fprintf(logfile, "**********> Testing if at least CCS_SENSE_LEN (%d) is supported...\n", CCS_SENSE_LEN);
236 ret = sensecount(scgp, CCS_SENSE_LEN);