rpmbuild
Flag
|
Meaning
|
POPT_CONTEXT_NO_EXEC
|
Ignore executable expansions
|
POPT_CONTEXT_KEEP_FIRST
|
Treat argv[0], the command name, as an option
|
POPT_CONTEXT_POSIXMEHARDER
|
Do not allow options to follow arguments
|
Type
|
Value
|
Meaning
|
POPT_ARG_NONE
|
0
|
No argument data, just the option such as -v
|
POPT_ARG_STRING
|
1
|
arg treated as string
|
POPT_ARG_INT
|
2
|
arg treated as int
|
POPT_ARG_LONG
|
3
|
arg treated as long
|
POPT_ARG_INCLUDE_TABLE
|
4
|
arg points to a table
|
POPT_ARG_CALLBACK
|
5
|
arg points to a callback function
|
POPT_ARG_INTL_DOMAIN
|
6
|
sets translation domain
|
POPT_ARG_VAL
|
7
|
use value of val field for arg
|
POPT_ARG_FLOAT
|
8
|
arg treated as float
|
POPT_ARG_DOUBLE
|
9
|
arg treated as double
|