Commit ae2a2c99 authored by Yang Tse's avatar Yang Tse
Browse files

curl tool: renaming hugehelp files to tool_hugehelp

parent eb5aa12c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -48,9 +48,9 @@ installed:
 o nroff + perl

   If you don't have nroff and perl and you for some reason don't want to
   install them, you can rename the source file src/hugehelp.c.cvs to
   src/hugehelp.c and avoid having to generate this file. This will give you
   a stubbed version of the file that doesn't contain actual content.
   install them, you can rename the source file src/tool_hugehelp.c.cvs to
   src/tool_hugehelp.c and avoid having to generate this file. This will
   give you a stubbed version of the file that doesn't contain actual content.

MAC OS X

+3 −3
Original line number Diff line number Diff line
@@ -12,9 +12,9 @@ ECHO ERROR: This file shall only be used with a curl git tree checkout.
goto end_all
:start_doing

REM create hugehelp.c
if not exist src\hugehelp.c.cvs goto end_hugehelp_c
copy /Y src\hugehelp.c.cvs src\hugehelp.c
REM create tool_hugehelp.c
if not exist src\tool_hugehelp.c.cvs goto end_hugehelp_c
copy /Y src\tool_hugehelp.c.cvs src\tool_hugehelp.c
:end_hugehelp_c

REM create Makefile
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ Current flaws in the curl CMake build
   Missing features in the cmake build:

   - Builds libcurl without large file support
   - It doesn't build src/hugehelp.c which creates the --manual output
   - It doesn't build src/tool_hugehelp.c which creates the --manual output
   - Can't select which SSL library to build with, only OpenSSL
   - Doesn't build with SCP and SFTP support (libssh2)
   - Doesn't allow different resolver backends (no c-ares build support)
+4 −4
Original line number Diff line number Diff line
@@ -413,10 +413,10 @@ Client

 main() resides in src/main.c together with most of the client code.

 src/hugehelp.c is automatically generated by the mkhelp.pl perl script to
 display the complete "manual" and the src/urlglob.c file holds the functions
 used for the URL-"globbing" support. Globbing in the sense that the {} and []
 expansion stuff is there.
 src/tool_hugehelp.c is automatically generated by the mkhelp.pl perl script
 to display the complete "manual" and the src/urlglob.c file holds the
 functions used for the URL-"globbing" support. Globbing in the sense that
 the {} and [] expansion stuff is there.

 The client mostly messes around to setup its 'config' struct properly, then
 it calls the curl_easy_*() functions of the library and when it gets back
+2 −2
Original line number Diff line number Diff line
@@ -512,7 +512,7 @@ to provide the data to send.
17.1 roffit

 Consider extending 'roffit' to produce decent ASCII output, and use that
 instead of (g)nroff when building src/hugehelp.c
 instead of (g)nroff when building src/tool_hugehelp.c

18. Test suite

Loading