aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Choi2002-05-01 04:30:59 +0000
committerAndrew Choi2002-05-01 04:30:59 +0000
commite3ba1015a28b20635514da8ce1f2c10c1f9ab87a (patch)
tree2c6e33a6a61e63c61305fb817ab8b7331df027a4 /src
parent39e2c94978b4964e662e26326c3791d33224c15f (diff)
downloademacs-e3ba1015a28b20635514da8ce1f2c10c1f9ab87a.tar.gz
emacs-e3ba1015a28b20635514da8ce1f2c10c1f9ab87a.zip
2002-04-30 Andrew Choi <akochoi@shaw.ca>
* configure.in: Provide documentation string when defining variable HAVE_CARBON. Also define HAVE_WINDOW_SYSTEM, HAVE_MOUSE, and HAVE_MENUS in AH_BOTTOM if HAVE_CARBON is defined.
Diffstat (limited to 'src')
-rw-r--r--src/config.in23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/config.in b/src/config.in
index e54ecc659a1..52ae7052744 100644
--- a/src/config.in
+++ b/src/config.in
@@ -89,6 +89,9 @@ Boston, MA 02111-1307, USA. */
89/* Define to 1 if you have the `bcopy' function. */ 89/* Define to 1 if you have the `bcopy' function. */
90#undef HAVE_BCOPY 90#undef HAVE_BCOPY
91 91
92/* Define to 1 if you are using the Carbon API on Mac OS X. */
93#undef HAVE_CARBON
94
92/* Define to 1 if you have the `cbrt' function. */ 95/* Define to 1 if you have the `cbrt' function. */
93#undef HAVE_CBRT 96#undef HAVE_CBRT
94 97
@@ -717,18 +720,6 @@ Boston, MA 02111-1307, USA. */
717/* Define as `fork' if `vfork' does not work. */ 720/* Define as `fork' if `vfork' does not work. */
718#undef vfork 721#undef vfork
719 722
720/* Define if we should use the Carbon API on Mac OS X. */
721#undef HAVE_CARBON
722
723#ifdef HAVE_CARBON
724#define HAVE_WINDOW_SYSTEM
725#define HAVE_MOUSE
726#define HAVE_MENUS
727#endif
728
729/* Define if we have the session management (SM) library. */
730#undef HAVE_X_SM
731
732/* Define to empty if the keyword `volatile' does not work. Warning: valid 723/* Define to empty if the keyword `volatile' does not work. Warning: valid
733 code using `volatile' can become incorrect without. Disable with care. */ 724 code using `volatile' can become incorrect without. Disable with care. */
734#undef volatile 725#undef volatile
@@ -741,6 +732,14 @@ Boston, MA 02111-1307, USA. */
741#define HAVE_MOUSE 732#define HAVE_MOUSE
742#endif 733#endif
743 734
735/* If we're using the Carbon API on Mac OS X, define a few more
736 variables as well. */
737#ifdef HAVE_CARBON
738#define HAVE_WINDOW_SYSTEM
739#define HAVE_MOUSE
740#define HAVE_MENUS
741#endif
742
744/* Define USER_FULL_NAME to return a string 743/* Define USER_FULL_NAME to return a string
745 that is the user's full name. 744 that is the user's full name.
746 It can assume that the variable `pw' 745 It can assume that the variable `pw'