diff options
author | Eduardo Chappa <chappa@washington.edu> | 2020-07-04 02:42:52 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2020-07-04 02:42:52 -0600 |
commit | c566cd0e4a7d9424a95c7d7c16f861e458bee8f1 (patch) | |
tree | b2c604c2e35621be166e0e8a902cc0dd291e4948 /pith/state.h | |
parent | f720e89f631da58c355ead60b35225e43d0d9d33 (diff) | |
download | alpine-c566cd0e4a7d9424a95c7d7c16f861e458bee8f1.tar.xz |
* When building Alpine, the option --disable-debug will only affect if
its binary is compiled with debug, and not the ability of alpine to
generate internal debug. Alpine will not write debug files unless
started with the option -d, so for example "alpine -d 2" will generate
a debug file at level 2, but just issuing the alpine command will not
write any debug to a file.
Diffstat (limited to 'pith/state.h')
-rw-r--r-- | pith/state.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pith/state.h b/pith/state.h index 3fec3691..24bc8909 100644 --- a/pith/state.h +++ b/pith/state.h @@ -130,6 +130,7 @@ struct pine { char *html_dir; HTML_LOG_S *html_dir_list; + unsigned write_debug_file:1; /* should we write debug to a file */ unsigned signal_in_progress:1; /* we are handling a signal */ unsigned mangled_footer:1; /* footer needs repainting */ unsigned mangled_header:1; /* header needs repainting */ |