new version.
[feisty_meow.git] / production / prototype_config.ini
1 #\
2 [version]
3 # specifies the version of the code that is being constructed here.
4 major=2
5 minor=108
6 revision=1
7 build=0
8
9 # NOTE: this is an example of a build configuration file in the required format for a
10 # build using the CLAM makefile system.
11
12 # specifies the remainder of the version record info.
13 company=Feisty Meow Concerns, Ltd.
14 copyright=(C) 1987-$now Chris Koeritz & Others, under GNU GPL License
15 legal_info=This software is free to copy under the terms of the GNU GPL (or the GNU Library License if you prefer).  See http://www.gnu.org/licenses/gpl.html for more info.  We suggest peaceful purposes that help all sentient beings.
16 product_name=feisty_meow
17 web_site=http://feistymeow.org
18
19 # some settings that affect how the code is generated.
20
21 # if DEBUG or NOISY are non-empty, the libraries are built with more debugging information.
22 DEBUG=t
23 #NOISY=t
24
25 # if this is turned on, then all warnings are turned on and they are
26 # considered errors.
27 STRICT_WARNINGS=t
28
29 # if this is enabled, then the source dependencies are only generated if
30 # they're missing or if this file has changed.  non-lax dependencies get
31 # rebuilt whenever a header involved changes, or dependent libraries have
32 # changed.
33 LAX_DEPENDENCIES=t
34
35 # when this is enabled, a previously built precompiled header file will be
36 # used for speeding up usage of windows system and mfc headers.
37 #PRECOMPILED_HEADERS=t
38
39 # if this is non-empty, the generated binaries are optimized primarily for
40 # speed.  we turn this flag off for debugging mode, since optimization can
41 # interfere with tracing the running program.
42 OPTIMIZE=t
43 ifneq "$(DEBUG)" ""
44   OPTIMIZE=
45 endif
46
47 # at home or for personal builds, it seems silly to create the whole build
48 # package.
49 #NO_BUILD_PACK=t
50
51 # macros that control which features are enabled in the software.
52
53 # if this is defined, then errors (such as out of range array accesses) will
54 # be caught and a message will be sent to the runtime issues log file.
55 DEFINITIONS += CATCH_ERRORS=t
56
57 # when this is defined, any errors that are caught cause the program to exit.
58 DEFINITIONS += ERRORS_ARE_FATAL=t
59
60 # this turns on intensive checks on the integrity of data structures and will
61 # cause the software to run more slowly but more carefully.  this should only
62 # be used when seeking logic errors in the low-level code.
63 ifeq "$(BOOT_STRAPPING)" ""
64 #  DEFINITIONS += EXTREME_CHECKING=t
65 endif
66
67 # this flag selects whether to build with unicode enabled.  this mainly affects
68 # win32 OSes, and right now we know it affects them badly if this is enabled.
69 # unix may build slightly differently too, such as for WX widgets.
70 ifeq "$(OP_SYSTEM)" "WIN32"
71 ###
72 ### do not enable on win32 right now.
73 ###  DEFINITIONS += UNICODE=t
74 ###
75 else
76   DEFINITIONS += UNICODE=t
77 endif
78
79 # if this flag is turned on, then memory allocations will be trapped for
80 # analysis.  memory leaks will be reported at program end, and the memory
81 # state can also be queried during runtime.
82 ifeq "$(BOOT_STRAPPING)" ""
83 #  DEFINITIONS += ENABLE_MEMORY_HOOK
84 endif
85
86 # if the callstack flag below is made available, hoople will trace the stack
87 # invocations that occur during runtime.  this provides really low-level
88 # methods with a way to know how they were invoked.  to get this information.
89 # the invoker must be fitted with FUNCDEF macros.
90 ifeq "$(BOOT_STRAPPING)" ""
91 #  DEFINITIONS += ENABLE_CALLSTACK_TRACKING
92 endif
93