1 /* PR optimization/11320 */
2 /* Origin: Andreas Schwab <schwab@suse.de> */
4 /* Verify that the scheduler correctly computes the dependencies
5 in the presence of conditional instructions. */
7 int strcmp (const char *, const char *);
10 const char *ap_check_cmd_context (void *a
, int b
)
15 const char *server_type (void *a
, void *b
, char *arg
)
17 const char *err
= ap_check_cmd_context (a
, 0x01|0x02|0x04|0x08|0x10);
21 if (!strcmp (arg
, "inetd"))
23 else if (!strcmp (arg
, "standalone"))
26 return "ServerType must be either 'inetd' or 'standalone'";
33 server_type (0, 0, "standalone");