source: git/libpolys/misc/options.c @ 42a81e

fieker-DuValspielwiese
Last change on this file since 42a81e was 07e272, checked in by Hans Schoenemann <hannes@…>, 9 years ago
porting: force si_opt_1 to be initialized
  • Property mode set to 100644
File size: 497 bytes
Line 
1// the following initialization is needed for linkage on Mac OS X,
2// since initialized variables will be "D" (uninit. go to "C") segments
3// also, initialization must not be 0, as that goes to "B" (ubuntu)
4#include <misc/options.h>
5unsigned si_opt_1 = Sy_bit(OPT_FASTHC);
6unsigned si_opt_2 = Sy_bit(V_QUIET)
7                   //| Sy_bit(V_QRING) // not default, as speed drops by 10 %
8                   | Sy_bit(V_REDEFINE)
9                   | Sy_bit(V_LOAD_LIB)
10                   | Sy_bit(V_SHOW_USE)
11                   | Sy_bit(V_PROMPT)
12                   ;
13
Note: See TracBrowser for help on using the repository browser.