- make the features output more portable

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.11-ssl-fixes@1305 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.12
Marcus Rückert 2006-09-15 13:23:07 +00:00
parent 08c093b940
commit d9cb387859
1 changed files with 4 additions and 5 deletions

View File

@ -286,9 +286,7 @@ static void show_version (void) {
}
static void show_features (void) {
show_version();
printf("\nEvent Handlers:\n\n%s",
const char features[] = ""
#ifdef USE_SELECT
"\t+ select (generic)\n"
#else
@ -405,8 +403,9 @@ static void show_features (void) {
#else
"\t- GDBM support\n"
#endif
"\n"
);
"\n";
show_version();
printf("\nEvent Handlers:\n\n%s", features);
}
static void show_help (void) {