WL#4738: streamline/simplify @@variable creation process

Affects: Server-5.5   —   Status: Complete

now to add a new system variable one needs to
1. create an instance of a appropriate sys_var_xxx class (or write a new class
if there is no one)
2. add it to a list of variables visible in SELECT @@xxx
3. add it to the list of mysqld --command-line-options
4. add it to the list for SHOW VARIABLES

steps 2,3,4 should be eliminated.

one of the possible approaches - in a constructor each variable adds itself to
the above mentioned lists.

See also WL#1160