diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-28 14:58:07 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-28 14:58:07 +0000 |
commit | 1e5e0f9a2647e2c8ccae30aee31c9a0ba346a62f (patch) | |
tree | 0e6266ba6dbaf6103ca9a40d9393126e2e2d2250 /curl-config.in | |
parent | ac3ae8f7751436b6f77e1a65415d0093c38c9f5d (diff) | |
download | curl-1e5e0f9a2647e2c8ccae30aee31c9a0ba346a62f.tar.gz |
added 'curl-config --vernum' for hardcore hex version output
Diffstat (limited to 'curl-config.in')
-rw-r--r-- | curl-config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/curl-config.in b/curl-config.in index d2d984212..7de459318 100644 --- a/curl-config.in +++ b/curl-config.in @@ -62,6 +62,11 @@ while test $# -gt 0; do exit 0 ;; + --vernum) + echo @VERSIONNUM@ + exit 0 + ;; + --help) usage 0 ;; |