|
@@ -188,8 +188,9 @@ Options:\n\
|
|
" -S disable sctp\n\
|
|
" -S disable sctp\n\
|
|
-Q Number of sctp child processes (default: equal to `-n')\n"
|
|
-Q Number of sctp child processes (default: equal to `-n')\n"
|
|
#endif /* USE_SCTP */
|
|
#endif /* USE_SCTP */
|
|
-" -V Version number\n\
|
|
|
|
|
|
+" -v (-V) Version number\n\
|
|
-h This help message\n\
|
|
-h This help message\n\
|
|
|
|
+ -I Print more internal compile flags and options\n\
|
|
-b nr Maximum receive buffer size which will not be exceeded by\n\
|
|
-b nr Maximum receive buffer size which will not be exceeded by\n\
|
|
auto-probing procedure even if OS allows\n\
|
|
auto-probing procedure even if OS allows\n\
|
|
-m nr Size of shared memory allocated in Megabytes\n\
|
|
-m nr Size of shared memory allocated in Megabytes\n\
|
|
@@ -200,6 +201,7 @@ Options:\n\
|
|
-g gid Change gid \n\
|
|
-g gid Change gid \n\
|
|
-P file Create a pid file\n\
|
|
-P file Create a pid file\n\
|
|
-G file Create a pgid file\n\
|
|
-G file Create a pgid file\n\
|
|
|
|
+ -Y dir Runtime dir\n\
|
|
-O nr Script optimization level (debugging option)\n\
|
|
-O nr Script optimization level (debugging option)\n\
|
|
-a mode Auto aliases mode: enable with yes or on,\n\
|
|
-a mode Auto aliases mode: enable with yes or on,\n\
|
|
disable with no or off\n\
|
|
disable with no or off\n\
|
|
@@ -1858,7 +1860,7 @@ int main(int argc, char** argv)
|
|
dprint_init_colors();
|
|
dprint_init_colors();
|
|
|
|
|
|
/* command line options */
|
|
/* command line options */
|
|
- options= ":f:cm:M:dVIhEeb:l:L:n:vKrRDTN:W:w:t:u:g:P:G:SQ:O:a:A:x:X:"
|
|
|
|
|
|
+ options= ":f:cm:M:dVIhEeb:l:L:n:vKrRDTN:W:w:t:u:g:P:G:SQ:O:a:A:x:X:Y:"
|
|
#ifdef STATS
|
|
#ifdef STATS
|
|
"s:"
|
|
"s:"
|
|
#endif
|
|
#endif
|
|
@@ -2051,6 +2053,7 @@ int main(int argc, char** argv)
|
|
case 'Q':
|
|
case 'Q':
|
|
case 'a':
|
|
case 'a':
|
|
case 's':
|
|
case 's':
|
|
|
|
+ case 'Y':
|
|
break;
|
|
break;
|
|
case '?':
|
|
case '?':
|
|
if (isprint(optopt)) {
|
|
if (isprint(optopt)) {
|
|
@@ -2270,6 +2273,9 @@ try_again:
|
|
case 'w':
|
|
case 'w':
|
|
working_dir=optarg;
|
|
working_dir=optarg;
|
|
break;
|
|
break;
|
|
|
|
+ case 'Y':
|
|
|
|
+ runtime_dir=optarg;
|
|
|
|
+ break;
|
|
case 't':
|
|
case 't':
|
|
chroot_dir=optarg;
|
|
chroot_dir=optarg;
|
|
break;
|
|
break;
|