aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/config.in b/src/config.in
index efc6fb71834..c1da6bedbb5 100644
--- a/src/config.in
+++ b/src/config.in
@@ -37,6 +37,10 @@ and this notice must be preserved on all copies. */
37#define MULTI_FRAME 37#define MULTI_FRAME
38#endif 38#endif
39 39
40/* Define USE_TEXT_PROPERTIES to support visual and other properties
41 on text. */
42/* #define USE_TEXT_PROPERTIES */
43
40/* Define USER_FULL_NAME to return a string 44/* Define USER_FULL_NAME to return a string
41 that is the user's full name. 45 that is the user's full name.
42 It can assume that the variable `pw' 46 It can assume that the variable `pw'
@@ -86,6 +90,13 @@ and this notice must be preserved on all copies. */
86#define GLYPH unsigned char 90#define GLYPH unsigned char
87#endif 91#endif
88 92
93/* If using GNU, then support inline function declarations. */
94#ifdef __GNUC__
95#define INLINE __inline__
96#else
97#define INLINE
98#endif
99
89/* The configuration script replaces the string @opsystem@ with the 100/* The configuration script replaces the string @opsystem@ with the
90 name of the s/*.h file that describes the system type you are 101 name of the s/*.h file that describes the system type you are
91 using; an option of the form "-opsystem=OPSYS" says to use 102 using; an option of the form "-opsystem=OPSYS" says to use