MKHELP=$(top_srcdir)/src/mkhelp.pl
HUGE=hugehelp.c
+if USE_MANUAL
+# Here are the stuff to create a built-in manual
+
if HAVE_LIBZ
# This generates the hugehelp.c file in both uncompressed and compressed formats
$(HUGE): $(README) $(MANPAGE) mkhelp.pl
echo '#else' >> $(HUGE)
$(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) -c $(README) >> $(HUGE)
echo '#endif /* HAVE_LIBZ */' >> $(HUGE)
-else
+else # HAVE_LIBZ
# This generates the hugehelp.c file uncompressed only
$(HUGE): $(README) $(MANPAGE) mkhelp.pl
$(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) $(README) > $(HUGE)
endif
+
+else # USE_MANUAL
+# built-in manual has been disabled, make a blank file
+$(HUGE):
+ echo "/* explicitly disabled */" >$(HUGE)
+endif
#include "writeout.h"
#include "getpass.h"
#include "homedir.h"
+#ifdef USE_MANUAL
#include "hugehelp.h"
+#endif
#ifdef USE_ENVIRONMENT
#include "writeenv.h"
#endif
char *userpwd;
char *proxyuserpwd;
char *proxy;
- bool configread;
bool proxytunnel;
long conf;
/* global variable to hold info about libcurl */
static curl_version_info_data *curlinfo;
-static int parseconfig(const char *filename,
- struct Configurable *config);
+static void parseconfig(const char *filename,
+ struct Configurable *config);
static char *my_get_line(FILE *fp);
static int create_dir_hierarchy(char *outfile);
char subletter=0; /* subletters can only occur on long options */
const char *parse=NULL;
- int res;
unsigned int j;
time_t now;
int hit=-1;
config->insecure_ok ^= TRUE;
break;
case 'K': /* parse config file */
- res = parseconfig(nextarg, config);
- config->configread = TRUE;
- if(res)
- return res;
+ parseconfig(nextarg, config);
break;
case 'l':
config->conf ^= CONF_FTPLISTONLY; /* only list the names of the FTP dir */
return PARAM_BAD_NUMERIC;
break;
case 'M': /* M for manual, huge help */
+#ifdef USE_MANUAL
hugehelp();
return PARAM_HELP_REQUESTED;
+#else
+ helpf("built-in manual was disabled and build-time!\n");
+ return PARAM_OPTION_UNKNOWN;
+#endif
case 'n':
switch(subletter) {
case 'o': /* CA info PEM file */
}
-static int parseconfig(const char *filename,
- struct Configurable *config)
+static void parseconfig(const char *filename,
+ struct Configurable *config)
{
int res;
FILE *file;
if(file != stdin)
fclose(file);
}
- return 0;
}
static void go_sleep(long ms)
;
}
else {
- res = parseconfig(NULL, config);
- if(res)
- return res;
+ parseconfig(NULL, config);
}
if ((argc < 2) && !config->url_list) {