summaryrefslogtreecommitdiff
path: root/build/jlibtool.c
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2004-11-12 16:34:10 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2004-11-12 16:34:10 +0000
commita628dbd7778dc216061b78cc0b3d0798bdfbccb8 (patch)
tree3458799c901615d96dfc8cf5ca7451f3a991633b /build/jlibtool.c
parentfdc81f8eba34567f605401107c3ce38ef3ed1288 (diff)
downloadapr-a628dbd7778dc216061b78cc0b3d0798bdfbccb8.tar.gz
Get jlibtool to build httpd-2.1 successfully as mod_ssl now require
-export-symbols-regexp option to be handled... git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@65367 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/jlibtool.c')
-rw-r--r--build/jlibtool.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/build/jlibtool.c b/build/jlibtool.c
index 051648da6..5f38b6db6 100644
--- a/build/jlibtool.c
+++ b/build/jlibtool.c
@@ -1095,7 +1095,7 @@ void parse_args(int argc, char *argv[], command_t *cmd_data)
char *arg;
int argused;
- for (a=1; a < argc; a++) {
+ for (a = 1; a < argc; a++) {
arg = argv[a];
argused = 1;
@@ -1121,6 +1121,10 @@ void parse_args(int argc, char *argv[], command_t *cmd_data)
/* Store for later deciphering */
cmd_data->version_info = argv[++a];
argused = 1;
+ } else if (strcmp(arg+1, "export-symbols-regex") == 0) {
+ /* Skip the argument. */
+ ++a;
+ argused = 1;
}
}
} else {