aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoseph Arceneaux1992-10-05 19:03:02 +0000
committerJoseph Arceneaux1992-10-05 19:03:02 +0000
commitb81450127da14d8f882dcf1fe61842045394b154 (patch)
tree2a42fbf5962246a39cc1819fb72f98b212f1cbf7 /src
parentbcd4064a21f5b0b8d40554f3848f1c2e91cb7010 (diff)
downloademacs-b81450127da14d8f882dcf1fe61842045394b154.tar.gz
emacs-b81450127da14d8f882dcf1fe61842045394b154.zip
* config.h.in: Added a slot for definition of USE_TEXT_PROPERTIES,
controlling compilation of interval code. If using GNUC, support inline functions.
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