diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2014-06-26 21:43:14 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2014-06-26 21:43:14 -0300 |
commit | c318a9a6a55ad0c50dc9ec99dbf3aa750ad5021b (patch) | |
tree | b11a596a8d17b5239e68aac02d42dcd059b64cbf /configure | |
parent | ee69f76118b6c834e2217a0d178e9dee263bfaf1 (diff) | |
download | luarocks-c318a9a6a55ad0c50dc9ec99dbf3aa750ad5021b.tar.gz luarocks-c318a9a6a55ad0c50dc9ec99dbf3aa750ad5021b.tar.bz2 luarocks-c318a9a6a55ad0c50dc9ec99dbf3aa750ad5021b.zip |
HTTPS support for downloading and uploading rocks.
HTTPS is set as default for uploading.
HTTP is still default for downloading to keep dependencies low and because the
HTTPS code is new; might be changed in the future.
See #273 and #240.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,7 +50,7 @@ system's package manager. | |||
50 | --with-lua-lib=DIR You can also specify Lua's libraries dir. | 50 | --with-lua-lib=DIR You can also specify Lua's libraries dir. |
51 | Default is \$LUA_DIR/lib | 51 | Default is \$LUA_DIR/lib |
52 | --with-downloader=TOOL Which tool to use as a downloader. | 52 | --with-downloader=TOOL Which tool to use as a downloader. |
53 | Valid options are: wget, curl. | 53 | Valid options are: curl, wget. |
54 | Default is to auto-detect. | 54 | Default is to auto-detect. |
55 | --with-md5-checker=TOOL Which tool to use as a downloader. | 55 | --with-md5-checker=TOOL Which tool to use as a downloader. |
56 | Valid options are: md5sum, openssl | 56 | Valid options are: md5sum, openssl |
@@ -349,7 +349,7 @@ fi | |||
349 | 349 | ||
350 | if [ "$LUAROCKS_DOWNLOADER_SET" != "yes" ] | 350 | if [ "$LUAROCKS_DOWNLOADER_SET" != "yes" ] |
351 | then | 351 | then |
352 | find_helper "downloader helper program" wget curl fetch | 352 | find_helper "downloader helper program" curl wget fetch |
353 | LUAROCKS_DOWNLOADER=$HELPER | 353 | LUAROCKS_DOWNLOADER=$HELPER |
354 | fi | 354 | fi |
355 | 355 | ||