Mercurial > hg > xemacs-beta
comparison configure @ 5228:5efbd1253905
Remove all support for InfoDock.
src/ChangeLog addition:
2010-06-02 Aidan Kehoe <kehoea@parhasard.net>
* lread.c (vars_of_lread):
* emacs.c:
(shut_down_emacs, vars_of_emacs, complex_vars_of_emacs):
* device-x.c (get_device_from_display)
(have_xemacs_resources_in_xrdb):
* device-gtk.c (Fgtk_init):
* config.h.in:
Remove all checks for InfoDock.
lisp/ChangeLog addition:
2010-06-02 Aidan Kehoe <kehoea@parhasard.net>
* version.el:
(emacs-version):
* startup.el (command-line):
* simple.el (display-warning, emacs-name):
* packages.el (packages-package-hierarchy-directory-names):
* loadup.el (Dumping):
* dumped-lisp.el (preloaded-file-list):
Remove all InfoDock-specific code.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 07 Jun 2010 18:42:10 +0100 |
parents | b72f27a08ed5 |
children | 3889ef128488 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
5227:fbd1485af104 | 5228:5efbd1253905 |
---|---|
1003 with_bignum | 1003 with_bignum |
1004 enable_workshop | 1004 enable_workshop |
1005 with_workshop | 1005 with_workshop |
1006 enable_sparcworks | 1006 enable_sparcworks |
1007 with_sparcworks | 1007 with_sparcworks |
1008 enable_infodock | |
1009 with_infodock | |
1010 enable_debug | 1008 enable_debug |
1011 with_debug | 1009 with_debug |
1012 enable_error_checking | 1010 enable_error_checking |
1013 with_error_checking | 1011 with_error_checking |
1014 enable_assertions | 1012 enable_assertions |
1950 ------------------------- | 1948 ------------------------- |
1951 | 1949 |
1952 --with-workshop Support the Sun WorkShop (formerly Sparcworks) | 1950 --with-workshop Support the Sun WorkShop (formerly Sparcworks) |
1953 development environment. | 1951 development environment. |
1954 --with-sparcworks Alias for --with-workshop | 1952 --with-sparcworks Alias for --with-workshop |
1955 --with-infodock Support the Infodock version of XEmacs. Infodock is | |
1956 a SourceForge project). | |
1957 | 1953 |
1958 Debugging options | 1954 Debugging options |
1959 ----------------- | 1955 ----------------- |
1960 | 1956 |
1961 --with-debug Enable additional debugging information. No | 1957 --with-debug Enable additional debugging information. No |
5188 if test "${with_sparcworks+set}" = set; then | 5184 if test "${with_sparcworks+set}" = set; then |
5189 enableval="$with_sparcworks" | 5185 enableval="$with_sparcworks" |
5190 withval="$with_sparcworks" | 5186 withval="$with_sparcworks" |
5191 | 5187 |
5192 fi; | 5188 fi; |
5193 # If --with-infodock or --without-infodock were given then copy the value to the | |
5194 # equivalent enable_infodock variable. | |
5195 if test "${with_infodock+set}" = set; then | |
5196 enable_infodock="$with_infodock" | |
5197 fi; | |
5198 # If -enable-infodock or --disable-infodock were given then copy the value to the | |
5199 # equivalent with_infodock variable. | |
5200 if test "${enable_infodock+set}" = set; then | |
5201 with_infodock="$enable_infodock" | |
5202 fi; | |
5203 # Check whether --with-infodock or --without-infodock was given. | |
5204 if test "${with_infodock+set}" = set; then | |
5205 enableval="$with_infodock" | |
5206 withval="$with_infodock" | |
5207 | |
5208 fi; | |
5209 | 5189 |
5210 # If --with-debug or --without-debug were given then copy the value to the | 5190 # If --with-debug or --without-debug were given then copy the value to the |
5211 # equivalent enable_debug variable. | 5191 # equivalent enable_debug variable. |
5212 if test "${with_debug+set}" = set; then | 5192 if test "${with_debug+set}" = set; then |
5213 enable_debug="$with_debug" | 5193 enable_debug="$with_debug" |
5714 cat >>confdefs.h <<_ACEOF | 5694 cat >>confdefs.h <<_ACEOF |
5715 #define EMACS_VERSION "$version" | 5695 #define EMACS_VERSION "$version" |
5716 _ACEOF | 5696 _ACEOF |
5717 | 5697 |
5718 | 5698 |
5719 if test "$with_infodock" = "yes"; then | 5699 PROGNAME=xemacs |
5720 if test ! -f ../../ID-INSTALL; then | 5700 SHEBANG_PROGNAME=xemacs-script |
5721 echo "Cannot build InfoDock without InfoDock sources" | |
5722 with_infodock=no | |
5723 fi | |
5724 fi | |
5725 | |
5726 if test "$with_infodock" = "yes"; then | |
5727 cat >>confdefs.h <<_ACEOF | |
5728 #define INFODOCK_MAJOR_VERSION $infodock_major_version | |
5729 _ACEOF | |
5730 | |
5731 cat >>confdefs.h <<_ACEOF | |
5732 #define INFODOCK_MINOR_VERSION $infodock_minor_version | |
5733 _ACEOF | |
5734 | |
5735 cat >>confdefs.h <<_ACEOF | |
5736 #define INFODOCK_BUILD_VERSION $infodock_build_version | |
5737 _ACEOF | |
5738 | |
5739 version=${infodock_major_version}.${infodock_minor_version}.${infodock_build_version} | |
5740 PROGNAME=infodock | |
5741 SHEBANG_PROGNAME=infodock-script | |
5742 CPPFLAGS="$CPPFLAGS -DINFODOCK" | |
5743 else | |
5744 PROGNAME=xemacs | |
5745 SHEBANG_PROGNAME=xemacs-script | |
5746 fi | |
5747 | 5701 |
5748 | 5702 |
5749 | 5703 |
5750 cat >>confdefs.h <<_ACEOF | 5704 cat >>confdefs.h <<_ACEOF |
5751 #define EMACS_PROGNAME "$PROGNAME" | 5705 #define EMACS_PROGNAME "$PROGNAME" |