Mercurial > hg > xemacs-beta
annotate src/m/tekxd88.h @ 1365:02909207294a
[xemacs-hg @ 2003-03-20 13:19:56 by youngs]
2003-03-20 Steve Youngs <youngs@xemacs.org>
* menubar-items.el (default-menubar): Add a "Pre-Release Download
Sites" submenu to "Tools -> Packages" menu.
Filter the package download sites menus through
`menu-split-long-menu'.
* obsolete.el (pui-add-install-directory): New.
(package-get-download-menu): New.
* package-admin.el: (package-admin-add-single-file-package):
Removed.
(package-admin-get-install-dir): Don't rely on an installed
xemacs-base package to guess where a package needs to be installed
to.
(package-admin-get-manifest-file): Whitespace clean up.
(package-admin-check-manifest): Use `directory-sep-char' to
compute regexp.
Only search 'lisp' and 'man' directories to determine package
name.
Don't error is xemacs-base package isn't installed, just don't
sort the MANIFEST file and issue a warning.
(package-admin-add-binary-package): Whitespace clean up.
(package-admin-get-lispdir): Ditto.
(package-admin-delete-binary-package): Use `with-temp-buffer'
instead of creating a temporary buffer manually.
* package-get.el: (package-get-remote): Change custom type so that
only either a single directory or remote host:directory can be
selected.
(package-get-download-sites): Put the sites into alphabetical
order of country.
Make the description element be "Country (site)" instead of the
other way around.
(package-get-pre-release-download-sites): New.
(package-get-require-signed-base-updates): Default to t.
(package-get-download-menu): Removed.
(package-get-locate-file): Change to reflect new format of
'package-get-remote'.
(package-get-update-base-from-buffer): Whitespace clean up and
remove an unneccessary 'when'.
(package-get-interactive-package-query): Whitespace clean up.
(package-get-update-all): Ditto.
(package-get-all): Ditto.
(package-get-init-package): Ditto.
(package-get-info): New.
(package-get): Bring into line with new format of
'package-get-remote'.
Error if non-Mule XEmacsen try to install Mule packages.
Don't rely on a Mule package having 'mule-base' in its
"REQUIRES" to determine if it is a Mule package or not,
instead we test "CATEGORY".
Better handling of the situation where a partial package tarball
exists on the local hard drive from a previous interupted
download.
Clean up after a failed package install.
(package-get-set-version-prop): Removed.
(package-get-installedp): Whitespace clean up.
* package-ui.el: Whitespace clean up.
(pui-info-buffer): Make it a defcustom.
(pui-directory-exists): Removed.
(pui-package-dir-list): Removed.
(pui-add-install-directory): Removed.
(package-ui-download-menu): New.
(package-ui-pre-release-download-menu): New.
(pui-set-local-package-get-directory): New.
(pui-package-symbol-char): Whitespace clean up.
(pui-update-package-display): Ditto.
(pui-toggle-package): Ditto.
(pui-toggle-package-key): Ditto.
(pui-toggle-package-delete): Ditto.
(pui-toggle-package-delete-key): Ditto.
(pui-toggle-package-event): Ditto.
(pui-toggle-verbosity-redisplay): Ditto.
(pui-install-selected-packages): Ditto.
(pui-help-echo): Ditto.
(pui-display-info): Ditto.
(pui-list-packages): Ditto.
* packages.el: Whitespace clean up.
author | youngs |
---|---|
date | Thu, 20 Mar 2003 13:19:59 +0000 |
parents | 4542b72c005e |
children | ecf1ebac70d8 |
rev | line source |
---|---|
428 | 1 /* Configuration file for the Tektronix XD88 running UTekV 3.2e, |
2 contributed by Kaveh Ghazi (ghazi@caip.rutgers.edu) 1/15/93. | |
3 You probably need to use gnu make (version 3.63 or higher.) | |
4 Copyright (C) 1993 Free Software Foundation, Inc. | |
5 | |
6 This file is part of GNU Emacs. | |
7 | |
8 GNU Emacs is free software; you can redistribute it and/or modify | |
9 it under the terms of the GNU General Public License as published by | |
10 the Free Software Foundation; either version 2, or (at your option) | |
11 any later version. | |
12 | |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with XEmacs; see the file COPYING. If not, write to | |
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 Boston, MA 02111-1307, USA. */ | |
22 | |
23 /* Synched up with: FSF 19.31. */ | |
24 | |
25 /* Now define a symbol for the cpu type, if your compiler | |
26 does not define it automatically: | |
27 Ones defined so far include vax, m68000, ns16000, pyramid, | |
28 orion, tahoe, APOLLO and many others */ | |
29 #ifndef m88000 /* Some 88k C compilers already define this */ | |
30 #define m88000 | |
31 #endif | |
32 | |
33 /* Data type of load average, as read out of kmem. */ | |
34 /* #define LOAD_AVE_TYPE double */ /* No load average on XD88. */ | |
35 /* Convert that into an integer that is 100 for a load average of 1.0 */ | |
36 /* #define LOAD_AVE_CVT(x) ((int) ((x) * 100.0)) */ | |
37 | |
38 /* Define NO_REMAP if memory segmentation makes it not work well | |
39 to change the boundary between the text section and data section | |
40 when Emacs is dumped. If you define this, the preloaded Lisp | |
41 code will not be sharable; but that's better than failing completely. */ | |
42 #define NO_REMAP | |
43 | |
44 /* Define C_ALLOCA if this machine does not support a true alloca | |
45 and the one written in C should be used instead. | |
46 Define HAVE_ALLOCA to say that the system provides a properly | |
47 working alloca function and it should be used. | |
48 Define neither one if an assembler-language alloca | |
49 in the file alloca.s should be used. */ | |
50 #ifdef __GNUC__ | |
51 # define alloca __builtin_alloca /* Use the gcc builtin alloca() ... */ | |
52 # define HAVE_ALLOCA /* ... and be sure that no other ones are tried out. */ | |
53 # undef C_ALLOCA | |
54 # define C_OPTIMIZE_SWITCH "-O2" | |
55 #else /* not __GNUC__ */ | |
56 # undef HAVE_ALLOCA | |
57 # define C_ALLOCA /* Use the alloca() supplied in alloca.c. */ | |
58 # define STACK_DIRECTION -1 /* The stack grows towards lower addresses. */ | |
59 # define C_OPTIMIZE_SWITCH "-O" | |
60 #endif /* __GNUC__ */ | |
61 | |
62 #undef LIB_X11_LIB /* Don't use shared libraries defined in usg5-3.h */ | |
63 #undef LIBX11_SYSTEM | |
64 | |
65 #ifdef ghs /* Stands for "Green Hills Software", defined only in /bin/cc */ | |
66 /* -X18 means do not allocate programmer-defined local variables to a | |
67 register unless they are declared register. (Copied from perl-4.036 | |
68 Green Hills C hints file. Might be needed for setjmp, I don't know.) */ | |
69 # define C_SWITCH_MACHINE "-X18" | |
70 /* We need /lib/default.ld so that /bin/ld can read its link directives. */ | |
71 # define LD_SWITCH_SYSTEM "/lib/default.ld" | |
72 #endif /* ghs */ | |
73 | |
74 /* We need this to get dumping to work */ | |
75 #define KEEP_OLD_TEXT_SCNPTR |