aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-05-21 08:08:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-05-21 08:08:48 +0000
commitd5043133e63290e0abedc34ddd1889bbd4bb953e (patch)
tree50ff25c5d923a49b999cd078bdfae19439b4d1a6 /src/main.c
parent509f69a45769bf3fa3ae6d08daeab944b051beb4 (diff)
Gisle Vanem made curl build with djgpp on DOS.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 62348df3e..7a56882e6 100644
--- a/src/main.c
+++ b/src/main.c
@@ -411,6 +411,9 @@ static void help(void)
" Overrides -n and --netrc-optional\n"
" -U/--proxy-user <user[:password]> Specify Proxy authentication\n"
" -v/--verbose Makes the operation more talkative\n"
+#ifdef DJGPP
+ " Also enables Watt-32 debugging\n"
+#endif
" -V/--version Outputs version number then quits");
puts(" -w/--write-out [format] What to output after completion\n"
" -x/--proxy <host[:port]> Use proxy. (Default port is 1080)\n"
@@ -1670,6 +1673,9 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
cleanarg(nextarg);
break;
case 'v':
+#ifdef DJGPP
+ dbug_init();
+#endif
config->conf ^= CONF_VERBOSE; /* talk a lot */
break;
case 'V':