bjh 01/08/17 09:16:49
Modified: build aplibtool.c
Log:
OS/2: -Zstack takes a parameter which must also be removed when "linking" a
static library.
Revision Changes Path
1.5 +4 -0 apr/build/aplibtool.c
Index: aplibtool.c
===================================================================
RCS file: /home/cvs/apr/build/aplibtool.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- aplibtool.c 2001/04/29 07:19:40 1.4
+++ aplibtool.c 2001/08/17 16:16:49 1.5
@@ -435,6 +435,10 @@
cmd_data->arglist[a+1] = NULL;
}
+ if (strcmp(arg, "-Zstack") == 0 && a+1 <
cmd_data->num_args) {
+ cmd_data->arglist[a+1] = NULL;
+ }
+
if (strcmp(arg, "-o") == 0) {
a++;
}