Mercurial > hg > xemacs-beta
annotate ChangeLog @ 5353:38e24b8be4ea
Improve the lexical scoping in #'block, #'return-from.
lisp/ChangeLog addition:
2011-02-07 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el:
* bytecomp.el (byte-compile-initial-macro-environment):
Shadow `block', `return-from' here, we implement them differently
when byte-compiling.
* bytecomp.el (byte-compile-active-blocks): New.
* bytecomp.el (byte-compile-block-1): New.
* bytecomp.el (byte-compile-return-from-1): New.
* bytecomp.el (return-from-1): New.
* bytecomp.el (block-1): New.
These are two aliases that exist to have their own associated
byte-compile functions, which functions implement `block' and
`return-from'.
* cl-extra.el (cl-macroexpand-all):
Fix a bug here when macros in the environment have been compiled.
* cl-macs.el (block):
* cl-macs.el (return):
* cl-macs.el (return-from):
Be more careful about lexical scope in these macros.
* cl.el:
* cl.el ('cl-block-wrapper): Removed.
* cl.el ('cl-block-throw): Removed.
These aren't needed in code generated by this XEmacs. They
shouldn't be needed in code generated by XEmacs 21.4, but if it
turns out the packages do need them, we can put them back.
2011-01-30 Mike Sperber <mike@xemacs.org>
* font-lock.el (font-lock-fontify-pending-extents): Don't fail if
`font-lock-mode' is unset, which can happen in the middle of
`revert-buffer'.
2011-01-23 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (delete):
* cl-macs.el (delq):
* cl-macs.el (remove):
* cl-macs.el (remq):
Don't use the compiler macro if these functions were given the
wrong number of arguments, as happens in lisp-tests.el.
* cl-seq.el (remove, remq): Removed.
I added these to subr.el, and forgot to remove them from here.
2011-01-22 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el (byte-compile-setq, byte-compile-set):
Remove kludge allowing keywords' values to be set, all the code
that does that is gone.
* cl-compat.el (elt-satisfies-test-p):
* faces.el (set-face-parent):
* faces.el (face-doc-string):
* gtk-font-menu.el:
* gtk-font-menu.el (gtk-reset-device-font-menus):
* msw-font-menu.el:
* msw-font-menu.el (mswindows-reset-device-font-menus):
* package-get.el (package-get-installedp):
* select.el (select-convert-from-image-data):
* sound.el:
* sound.el (load-sound-file):
* x-font-menu.el (x-reset-device-font-menus-core):
Don't quote keywords, they're self-quoting, and the
win from backward-compatibility is sufficiently small now that the
style problem overrides it.
2011-01-22 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (block, return-from): Require that NAME be a symbol
in these macros, as always documented in the #'block docstring and
as required by Common Lisp.
* descr-text.el (unidata-initialize-unihan-database):
Correct the use of non-symbols in #'block and #'return-from in
this function.
2011-01-15 Aidan Kehoe <kehoea@parhasard.net>
* cl-extra.el (concatenate): Accept more complicated TYPEs in this
function, handing the sequences over to #'coerce if we don't
understand them here.
* cl-macs.el (inline): Don't proclaim #'concatenate as inline, its
compiler macro is more useful than doing that.
2011-01-11 Aidan Kehoe <kehoea@parhasard.net>
* subr.el (delete, delq, remove, remq): Move #'remove, #'remq
here, they don't belong in cl-seq.el; move #'delete, #'delq here
from fns.c, implement them in terms of #'delete*, allowing support
for sequences generally.
* update-elc.el (do-autoload-commands): Use #'delete*, not #'delq
here, now the latter's no longer dumped.
* cl-macs.el (delete, delq): Add compiler macros transforming
#'delete and #'delq to #'delete* calls.
2011-01-10 Aidan Kehoe <kehoea@parhasard.net>
* dialog.el (make-dialog-box): Correct a misplaced parenthesis
here, thank you Mats Lidell in 87zkr9gqrh.fsf@mail.contactor.se !
2011-01-02 Aidan Kehoe <kehoea@parhasard.net>
* dialog.el (make-dialog-box):
* list-mode.el (display-completion-list):
These functions used to use cl-parsing-keywords; change them to
use defun* instead, fixing the build. (Not sure what led to me
not including this change in d1b17a33450b!)
2011-01-02 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (define-star-compiler-macros):
Make sure the form has ITEM and LIST specified before attempting
to change to calls with explicit tests; necessary for some tests
in lisp-tests.el to compile correctly.
(stable-union, stable-intersection): Add compiler macros for these
functions, in the same way we do for most of the other functions
in cl-seq.el.
2011-01-01 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (dolist, dotimes, do-symbols, macrolet)
(symbol-macrolet):
Define these macros with defmacro* instead of parsing the argument
list by hand, for the sake of style and readability; use backquote
where appropriate, instead of calling #'list and and friends, for
the same reason.
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
* x-misc.el (device-x-display):
Provide this function, documented in the Lispref for years, but
not existing previously. Thank you Julian Bradfield, thank you
Jeff Mincy.
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
* cl-seq.el:
Move the heavy lifting from this file to C. Dump the
cl-parsing-keywords macro, but don't use defun* for the functions
we define that do take keywords, dynamic scope lossage makes that
not practical.
* subr.el (sort, fillarray): Move these aliases here.
(map-plist): #'nsublis is now built-in, but at this point #'eql
isn't necessarily available as a test; use #'eq.
* obsolete.el (cl-delete-duplicates): Make this available for old
compiler macros and old code.
(memql): Document that this is equivalent to #'member*, and worse.
* cl.el (adjoin, subst): Removed. These are in C.
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
* simple.el (assoc-ignore-case): Remove a duplicate definition of
this function (it's already in subr.el).
* iso8859-1.el (char-width):
On non-Mule, make this function equivalent to that produced by
(constantly 1), but preserve its docstring.
* subr.el (subst-char-in-string): Define this in terms of
#'substitute, #'nsubstitute.
(string-width): Define this using #'reduce and #'char-width.
(char-width): Give this a simpler definition, it makes far more
sense to check for mule at load time and redefine, as we do in
iso8859-1.el.
(store-substring): Implement this in terms of #'replace, now
#'replace is cheap.
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
* update-elc.el (lisp-files-needed-for-byte-compilation)
(lisp-files-needing-early-byte-compilation):
cl-macs belongs in the former, not the latter, it is as
fundamental as bytecomp.el.
2010-12-30 Aidan Kehoe <kehoea@parhasard.net>
* cl.el:
Provde the Common Lisp program-error, type-error as error
symbols. This doesn't nearly go far enough for anyone using the
Common Lisp errors.
2010-12-29 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (delete-duplicates):
If the form has an incorrect number of arguments, don't attempt a
compiler macroexpansion.
2010-12-29 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (cl-safe-expr-p):
Forms that start with the symbol lambda are also safe.
2010-12-29 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (= < > <= >=):
For these functions' compiler macros, the optimisation is safe
even if the first and the last arguments have side effects, since
they're only used the once.
2010-12-29 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (inline-side-effect-free-compiler-macros):
Unroll a loop here at macro-expansion time, so these compiler
macros are compiled. Use #'eql instead of #'eq in a couple of
places for better style.
2010-12-29 Aidan Kehoe <kehoea@parhasard.net>
* cl-extra.el (notany, notevery): Avoid some dynamic scope
stupidity with local variable names in these functions, when they
weren't prefixed with cl-; go into some more detail in the doc
strings.
2010-12-29 Aidan Kehoe <kehoea@parhasard.net>
* byte-optimize.el (side-effect-free-fns): #'remove, #'remq are
free of side-effects.
(side-effect-and-error-free-fns):
Drop dot, dot-marker from the list.
2010-11-17 Aidan Kehoe <kehoea@parhasard.net>
* cl-extra.el (coerce):
In the argument list, name the first argument OBJECT, not X; the
former name was always used in the doc string and is clearer.
Handle vector type specifications which include the length of the
target sequence, error if there's a mismatch.
* cl-macs.el (cl-make-type-test): Handle type specifications
starting with the symbol 'eql.
2010-11-14 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (eql): Don't remove the byte-compile property of this
symbol. That was necessary to override a bug in bytecomp.el where
#'eql was confused with #'eq, which bug we no longer have.
If neither expression is constant, don't attempt to handle the
expression in this compiler macro, leave it to byte-compile-eql,
which produces better code anyway.
* bytecomp.el (eq): #'eql is not the function associated with the
byte-eq byte code.
(byte-compile-eql): Add an explicit compile method for this
function, for cases where the cl-macs compiler macro hasn't
reduced it to #'eq or #'equal.
2010-10-25 Aidan Kehoe <kehoea@parhasard.net>
Add compiler macros and compilation sanity-checking for various
functions that take keywords.
* byte-optimize.el (side-effect-free-fns): #'symbol-value is
side-effect free and not error free.
* bytecomp.el (byte-compile-normal-call): Check keyword argument
lists for sanity; store information about the positions where
keyword arguments start using the new byte-compile-keyword-start
property.
* cl-macs.el (cl-const-expr-val): Take a new optional argument,
cl-not-constant, defaulting to nil, in this function; return it if
the expression is not constant.
(cl-non-fixnum-number-p): Make this into a separate function, we
want to pass it to #'every.
(eql): Use it.
(define-star-compiler-macros): Use the same code to generate the
member*, assoc* and rassoc* compiler macros; special-case some
code in #'add-to-list in subr.el.
(remove, remq): Add compiler macros for these two functions, in
preparation for #'remove being in C.
(define-foo-if-compiler-macros): Transform (remove-if-not ...) calls to
(remove ... :if-not) at compile time, which will be a real win
once the latter is in C.
(define-substitute-if-compiler-macros)
(define-subst-if-compiler-macros): Similarly for these functions.
(delete-duplicates): Change this compiler macro to use
#'plists-equal; if we don't have information about the type of
SEQUENCE at compile time, don't bother attempting to inline the
call, the function will be in C soon enough.
(equalp): Remove an old commented-out compiler macro for this, if
we want to see it it's in version control.
(subst-char-in-string): Transform this to a call to nsubstitute or
nsubstitute, if that is appropriate.
* cl.el (ldiff): Don't call setf here, this makes for a load-time
dependency problem in cl-macs.el
2010-06-14 Stephen J. Turnbull <stephen@xemacs.org>
* term/vt100.el:
Refer to XEmacs, not GNU Emacs, in permissions.
* term/bg-mouse.el:
* term/sup-mouse.el:
Put copyright notice in canonical "Copyright DATE AUTHOR" form.
Refer to XEmacs, not GNU Emacs, in permissions.
* site-load.el:
Add permission boilerplate.
* mule/canna-leim.el:
* alist.el:
Refer to XEmacs, not APEL/this program, in permissions.
* mule/canna-leim.el:
Remove my copyright, I've assigned it to the FSF.
2010-06-14 Stephen J. Turnbull <stephen@xemacs.org>
* gtk.el:
* gtk-widget-accessors.el:
* gtk-package.el:
* gtk-marshal.el:
* gtk-compose.el:
* gnome.el:
Add copyright notice based on internal evidence.
2010-06-14 Stephen J. Turnbull <stephen@xemacs.org>
* easymenu.el: Add reference to COPYING to permission notice.
* gutter.el:
* gutter-items.el:
* menubar-items.el:
Fix typo "Xmacs" in permissions notice.
2010-06-14 Stephen J. Turnbull <stephen@xemacs.org>
* auto-save.el:
* font.el:
* fontconfig.el:
* mule/kinsoku.el:
Add "part of XEmacs" text to permission notice.
2010-10-14 Aidan Kehoe <kehoea@parhasard.net>
* byte-optimize.el (side-effect-free-fns):
* cl-macs.el (remf, getf):
* cl-extra.el (tailp, cl-set-getf, cl-do-remf):
* cl.el (ldiff, endp):
Tighten up Common Lisp compatibility for #'ldiff, #'endp, #'tailp;
add circularity checking for the first two.
#'cl-set-getf and #'cl-do-remf were Lisp implementations of
#'plist-put and #'plist-remprop; change the names to aliases,
changes the macros that use them to using #'plist-put and
#'plist-remprop directly.
2010-10-12 Aidan Kehoe <kehoea@parhasard.net>
* abbrev.el (fundamental-mode-abbrev-table, global-abbrev-table):
Create both these abbrev tables using the usual
#'define-abbrev-table calls, rather than attempting to
special-case them.
* cl-extra.el: Force cl-macs to be loaded here, if cl-extra.el is
being loaded interpreted. Previously other, later files would
redundantly call (load "cl-macs") when interpreted, it's more
reasonable to do it here, once.
* cmdloop.el (read-quoted-char-radix): Use defcustom here, we
don't have any dump-order dependencies that would prevent that.
* custom.el (eval-when-compile): Don't load cl-macs when
interpreted or when byte-compiling, rely on cl-extra.el in the
former case and the appropriate entry in bytecomp-load-hook in the
latter. Get rid of custom-declare-variable-list, we have no
dump-time dependencies that would require it.
* faces.el (eval-when-compile): Don't load cl-macs when
interpreted or when byte-compiling.
* packages.el: Remove some inaccurate comments.
* post-gc.el (cleanup-simple-finalizers): Use #'delete-if-not
here, now the order of preloaded-file-list has been changed to
make it available.
* subr.el (custom-declare-variable-list): Remove. No need for it.
Also remove a stub define-abbrev-table from this file, given the
current order of preloaded-file-list there's no need for it.
2010-10-10 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el (byte-compile-constp) Forms quoted with FUNCTION are
also constant.
(byte-compile-initial-macro-environment): In #'the, if FORM is
constant and does not match TYPE, warn at byte-compile time.
2010-10-10 Aidan Kehoe <kehoea@parhasard.net>
* backquote.el (bq-vector-contents, bq-list*): Remove; the former
is equivalent to (append VECTOR nil), the latter to (list* ...).
(bq-process-2): Use (append VECTOR nil) instead of using
#'bq-vector-contents to convert to a list.
(bq-process-1): Now we use list* instead of bq-list
* subr.el (list*): Moved from cl.el, since it is now required to
be available the first time a backquoted form is encountered.
* cl.el (list*): Move to subr.el.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* test-harness.el (Check-Message):
Add an omitted comma here, thank you the buildbot.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* hash-table.el (hash-table-key-list, hash-table-value-list)
(hash-table-key-value-alist, hash-table-key-value-plist):
Remove some useless #'nreverse calls in these files; our hash
tables have no order, it's not helpful to pretend they do.
* behavior.el (read-behavior):
Do the same in this file, in some code evidently copied from
hash-table.el.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* info.el (Info-insert-dir):
* format.el (format-deannotate-region):
* files.el (cd, save-buffers-kill-emacs):
Use #'some, #'every and related functions for applying boolean
operations to lists, instead of rolling our own ones that cons and
don't short-circuit.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el (byte-compile-initial-macro-environment):
* cl-macs.el (the):
Rephrase the docstring, make its implementation when compiling
files a little nicer.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* descr-text.el (unidata-initialize-unicodedata-database)
(unidata-initialize-unihan-database, describe-char-unicode-data)
(describe-char-unicode-data):
Wrap calls to the database functions with (with-fboundp ...),
avoiding byte compile warnings on builds without support for the
database functions.
(describe-char): (reduce #'max ...), not (apply #'max ...), no
need to cons needlessly.
(describe-char): Remove a redundant lambda wrapping
#'extent-properties.
(describe-char-unicode-data): Call #'nsubst when replacing "" with
nil in the result of #'split-string, instead of consing inside
mapcar.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* x-faces.el (x-available-font-sizes):
* specifier.el (let-specifier):
* package-ui.el (pui-add-required-packages):
* msw-faces.el (mswindows-available-font-sizes):
* modeline.el (modeline-minor-mode-menu):
* minibuf.el (minibuf-directory-files):
Replace the O2N (delq nil (mapcar (lambda (W) (and X Y)) Z)) with
the ON (mapcan (lambda (W) (and X (list Y))) Z) in these files.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* cl-macs.el (= < > <= >=):
When these functions are handed more than two arguments, and those
arguments have no side effects, transform to a series of two
argument calls, avoiding funcall in the byte-compiled code.
* mule/mule-cmds.el (finish-set-language-environment):
Take advantage of this change in a function called 256 times at
startup.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* bytecomp.el (byte-compile-function-form, byte-compile-quote)
(byte-compile-quote-form):
Warn at compile time, and error at runtime, if a (quote ...) or a
(function ...) form attempts to quote more than one object.
2010-09-16 Aidan Kehoe <kehoea@parhasard.net>
* byte-optimize.el (byte-optimize-apply): Transform (apply 'nconc
(mapcar ...)) to (mapcan ...); warn about use of the first idiom.
* update-elc.el (do-autoload-commands):
* packages.el (packages-find-package-library-path):
* frame.el (frame-list):
* extents.el (extent-descendants):
* etags.el (buffer-tag-table-files):
* dumped-lisp.el (preloaded-file-list):
* device.el (device-list):
* bytecomp-runtime.el (proclaim-inline, proclaim-notinline)
Use #'mapcan, not (apply #'nconc (mapcar ...) in all these files.
* bytecomp-runtime.el (eval-when-compile, eval-and-compile):
In passing, mention that these macros also evaluate the body when
interpreted.
tests/ChangeLog addition:
2011-02-07 Aidan Kehoe <kehoea@parhasard.net>
* automated/lisp-tests.el:
Test lexical scope for `block', `return-from'; add a
Known-Bug-Expect-Failure for a contorted example that fails when
byte-compiled.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 07 Feb 2011 12:01:24 +0000 (2011-02-07) |
parents | 99006e0b3a84 |
children | 3889ef128488 24c67faf4be6 |
rev | line source |
---|---|
5298 | 1 2010-11-02 Mats Lidell <matsl@xemacs.org> |
2 | |
3 * netinstall: removed | |
4 | |
5290
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5228
diff
changeset
|
5 2010-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5228
diff
changeset
|
6 |
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5228
diff
changeset
|
7 * aclocal.m4: Add standard permission boilerplate. |
e6508b64ee08
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5228
diff
changeset
|
8 |
5228
5efbd1253905
Remove all support for InfoDock.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5197
diff
changeset
|
9 2010-06-02 Aidan Kehoe <kehoea@parhasard.net> |
5efbd1253905
Remove all support for InfoDock.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5197
diff
changeset
|
10 |
5efbd1253905
Remove all support for InfoDock.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5197
diff
changeset
|
11 * version.sh.in: |
5efbd1253905
Remove all support for InfoDock.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5197
diff
changeset
|
12 * configure.ac (XE_COMPLEX_ARG, XE_EXPAND_VARIABLE): |
5efbd1253905
Remove all support for InfoDock.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5197
diff
changeset
|
13 Remove conditionals and information for InfoDock. |
5efbd1253905
Remove all support for InfoDock.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5197
diff
changeset
|
14 |
5197
ce8ffb95bbe3
finish up CHANGES-beta -- all changes thru Apr 9, 2010
Ben Wing <ben@xemacs.org>
parents:
5185
diff
changeset
|
15 2010-04-09 Ben Wing <ben@xemacs.org> |
ce8ffb95bbe3
finish up CHANGES-beta -- all changes thru Apr 9, 2010
Ben Wing <ben@xemacs.org>
parents:
5185
diff
changeset
|
16 |
ce8ffb95bbe3
finish up CHANGES-beta -- all changes thru Apr 9, 2010
Ben Wing <ben@xemacs.org>
parents:
5185
diff
changeset
|
17 * CHANGES-beta: |
ce8ffb95bbe3
finish up CHANGES-beta -- all changes thru Apr 9, 2010
Ben Wing <ben@xemacs.org>
parents:
5185
diff
changeset
|
18 Update with my changes to the trunk since the release of 21.5.29 |
ce8ffb95bbe3
finish up CHANGES-beta -- all changes thru Apr 9, 2010
Ben Wing <ben@xemacs.org>
parents:
5185
diff
changeset
|
19 in 2009 up through April 9, 2010. |
ce8ffb95bbe3
finish up CHANGES-beta -- all changes thru Apr 9, 2010
Ben Wing <ben@xemacs.org>
parents:
5185
diff
changeset
|
20 |
5185
e785e579b084
Update CHANGES-beta with my changes to the trunk since 2009-09-20.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5159
diff
changeset
|
21 2010-04-02 Aidan Kehoe <kehoea@parhasard.net> |
e785e579b084
Update CHANGES-beta with my changes to the trunk since 2009-09-20.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5159
diff
changeset
|
22 |
e785e579b084
Update CHANGES-beta with my changes to the trunk since 2009-09-20.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5159
diff
changeset
|
23 * CHANGES-beta: |
e785e579b084
Update CHANGES-beta with my changes to the trunk since 2009-09-20.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5159
diff
changeset
|
24 Update with my changes to the trunk since 2009-09-20. |
e785e579b084
Update CHANGES-beta with my changes to the trunk since 2009-09-20.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5159
diff
changeset
|
25 |
5155 | 26 2010-03-18 Ben Wing <ben@xemacs.org> |
27 | |
28 * CHANGES-beta: | |
29 Partially updated with last couple of months worth of changes. | |
30 | |
5149
b72f27a08ed5
Reflect --with-datadir setting in late-package directories.
Mike Sperber <sperber@deinprogramm.de>
parents:
5050
diff
changeset
|
31 2010-03-18 Mike Sperber <mike@xemacs.org> |
b72f27a08ed5
Reflect --with-datadir setting in late-package directories.
Mike Sperber <sperber@deinprogramm.de>
parents:
5050
diff
changeset
|
32 |
5150
0353d546dc1e
Reflect change from `lib' to `share' in INSTALL.
Mike Sperber <sperber@deinprogramm.de>
parents:
5149
diff
changeset
|
33 * INSTALL: Reflect change from `lib' to `share'; also, document |
0353d546dc1e
Reflect change from `lib' to `share' in INSTALL.
Mike Sperber <sperber@deinprogramm.de>
parents:
5149
diff
changeset
|
34 how to invoke configure to get the old setting. |
0353d546dc1e
Reflect change from `lib' to `share' in INSTALL.
Mike Sperber <sperber@deinprogramm.de>
parents:
5149
diff
changeset
|
35 |
5149
b72f27a08ed5
Reflect --with-datadir setting in late-package directories.
Mike Sperber <sperber@deinprogramm.de>
parents:
5050
diff
changeset
|
36 * configure.ac: Set LATE_PACKAGE_DIRECTORIES_USER_DEFINED if |
b72f27a08ed5
Reflect --with-datadir setting in late-package directories.
Mike Sperber <sperber@deinprogramm.de>
parents:
5050
diff
changeset
|
37 `datadir' was changed; set `with_late_packages' to something |
b72f27a08ed5
Reflect --with-datadir setting in late-package directories.
Mike Sperber <sperber@deinprogramm.de>
parents:
5050
diff
changeset
|
38 sensible for this case. |
b72f27a08ed5
Reflect --with-datadir setting in late-package directories.
Mike Sperber <sperber@deinprogramm.de>
parents:
5050
diff
changeset
|
39 |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
40 2010-02-20 Ben Wing <ben@xemacs.org> |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
41 |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
42 * configure.ac (XE_COMPLEX_ARG): |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
43 Correct doc of --quick-build: It also doesn't check for Lisp shadows. |
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5016
diff
changeset
|
44 |
5016
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
45 2010-02-08 Ben Wing <ben@xemacs.org> |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
46 |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
47 * configure: |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
48 * configure.ac (TAB): |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
49 Various warnings that used to be present had mistakenly gotten |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
50 turned off. Turn them back on. |
2ade80e8c640
enable more warnings and fix them
Ben Wing <ben@xemacs.org>
parents:
4991
diff
changeset
|
51 |
4991
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
52 2010-02-06 Ben Wing <ben@xemacs.org> |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
53 |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
54 * configure: |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
55 * configure.ac (AC_LANG): |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
56 * configure.ac (TAB): |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
57 Add AC_LANG(C++) defs in a way very similar to AC_LANG(C), inserting |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
58 our own flags, compiler, etc. |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
59 |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
60 When using g++, if we found ndbm, check whether we can compile a |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
61 file using g++ and ndbm.h, calling some DBM routines. Currently, this |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
62 fails because the prototypes in ndbm.h are incomplete, omitting the |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
63 arguments, which doesn't work with g++. When ndbm.h is bad, we don't |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
64 include it and instead provide our own prototypes; otherwise, we |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
65 define TRUST_NDBM_H_PROTOTYPES, which signals to use the ones in |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
66 ndbm.h. |
97c45e3ad810
implement configure test for whether ndbm.h prototypes are broken
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
67 |
4961
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
68 2010-01-31 Ben Wing <ben@xemacs.org> |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
69 |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
70 * configure.ac (TAB): |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
71 Say "This Xft feature" rather than just "This feature" to make it |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
72 possible to more safely filter out the warning in my `runcc' |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
73 script without the possibility of filtering out genuinely |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
74 important warnings. |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
75 * configure: Regenerate. |
b90f8cf474e0
Change Xft warning in configure.ac to make filtering it more safe
Ben Wing <ben@xemacs.org>
parents:
4957
diff
changeset
|
76 |
4944
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
77 2010-01-23 Ben Wing <ben@xemacs.org> |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
78 |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
79 * configure: |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
80 * configure.ac (XE_COMPLEX_ARG): |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
81 Expand the help for --with-debug to describe more specifically what |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
82 exactly gets turned on. Expand the help for --with-error-checking |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
83 to describe all the possible arguments, including `all', `none', |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
84 `noFOO', multiple arguments, etc. |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
85 |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
86 Change so that `--with-error-checking' is the same as |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
87 `--with-error-checking=all'. Currently, `--with-error-checking' has |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
88 no effect at all! It just means "leave all error-checking for |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
89 specific classes to their default values", which are "maybe", and |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
90 get converted to "yes" or "no" depending on whether we are running |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
91 a beta XEmacs. |
6af9b2e79451
Fixes to configure so --with-error-checking=yes works
Ben Wing <ben@xemacs.org>
parents:
4943
diff
changeset
|
92 |
4943 | 93 2010-01-24 Ben Wing <ben@xemacs.org> |
94 | |
95 * configure: Rebuild. | |
96 | |
4932 | 97 2010-01-24 Ben Wing <ben@xemacs.org> |
98 | |
99 * aclocal.m4 (XE_SHLIB_STUFF): | |
100 Use -export-all-symbols instead of -export-dynamic on PE targets | |
101 (Cygwin and MinGW). | |
102 | |
103 * configure.ac (XE_EXPAND_VARIABLE): | |
104 * configure.ac (TAB): | |
105 Create variable XEMACS_CC_GPP to check whether we're running g++. | |
106 Don't just check for an executable called `g++' -- it might be | |
107 called g++-4 or whatever. Instead, check for either named `g++*' | |
108 or claiming to be g++ when called with --version. Rewrite code do | |
109 use the variable. | |
110 | |
111 Add -fno-strict-aliasing to optimization flags when GCC and | |
112 optimized, and in all cases with g++, since under these circumstances | |
113 strict aliasing is otherwise assumed, and XEmacs can't easily be | |
114 made to respect its restrictions. | |
115 | |
116 * configure: Regenerate. | |
117 | |
118 | |
119 | |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
120 2010-02-01 Ben Wing <ben@xemacs.org> |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
121 |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
122 * configure: |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
123 * configure.ac (TAB): |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
124 USE_XFT* -> HAVE_XFT*. |
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4887
diff
changeset
|
125 |
4878
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
126 2010-01-14 Ben Wing <ben@xemacs.org> |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
127 |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
128 * PROBLEMS: |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
129 Add description of crash on recent Cygwin 1.7 when using C++, NEWGC |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
130 and optimization. |
3a4e815c821d
commit ChangeLog for PROBLEMS change
Ben Wing <ben@xemacs.org>
parents:
4851
diff
changeset
|
131 |
4865
6c0bb4d2c23a
Always use our rint(), for rounding consistency with the bignum code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4851
diff
changeset
|
132 2010-01-16 Aidan Kehoe <kehoea@parhasard.net> |
6c0bb4d2c23a
Always use our rint(), for rounding consistency with the bignum code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4851
diff
changeset
|
133 |
6c0bb4d2c23a
Always use our rint(), for rounding consistency with the bignum code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4851
diff
changeset
|
134 * configure: Regenerate, now we no longer look for rint(). |
6c0bb4d2c23a
Always use our rint(), for rounding consistency with the bignum code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4851
diff
changeset
|
135 |
4939
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
136 2010-01-20 Ben Wing <ben@xemacs.org> |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
137 |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
138 * Makefile.in.in: |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
139 * Makefile.in.in (GENERATED_HEADERS): |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
140 * Makefile.in.in (.PHONY): |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
141 * Makefile.in.in (src/.gdbinit): |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
142 * configure: |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
143 * configure.ac (TAB): |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
144 etc/gdbinit.in has been moved to src/.gdbinit.in.in. Reflect |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
145 this -- generate src/.gdbinit.in from src/.gdbinit.in.in, and |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
146 use the normal mechanism for doing so instead of copying it |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
147 specially. |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
148 |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
149 Add target for `config-changed' and pass down to `src'. |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
150 Move some PHONY declarations to just before the actual targets. |
349f01075eb7
build fixes for gdbinit and config-dependent elc files
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
151 |
4957 | 152 2010-01-16 Aidan Kehoe <kehoea@parhasard.net> |
153 | |
154 * configure: Regenerate, now we no longer look for rint(). | |
155 | |
4848
bde90bc762f2
Remove support for non-pdump on Cygwin.
Jerry James <james@xemacs.org>
parents:
4842
diff
changeset
|
156 2010-01-13 Jerry James <james@xemacs.org> |
bde90bc762f2
Remove support for non-pdump on Cygwin.
Jerry James <james@xemacs.org>
parents:
4842
diff
changeset
|
157 |
bde90bc762f2
Remove support for non-pdump on Cygwin.
Jerry James <james@xemacs.org>
parents:
4842
diff
changeset
|
158 * configure.ac: Update comment about Cygwin and pdump. |
bde90bc762f2
Remove support for non-pdump on Cygwin.
Jerry James <james@xemacs.org>
parents:
4842
diff
changeset
|
159 |
4842
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
160 2010-01-13 Ben Wing <ben@xemacs.org> |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
161 |
4850
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4842
diff
changeset
|
162 * Makefile.in.in (fix-perms): |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4842
diff
changeset
|
163 Add target for fix-perms. Run it to correct permissions. |
2727d0d8ef07
Fix executable permissions on source files
Ben Wing <ben@xemacs.org>
parents:
4842
diff
changeset
|
164 |
4842
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
165 * INSTALL: |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
166 * PROBLEMS: |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
167 * configure: |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
168 * configure.ac (XE_COMPLEX_ARG): |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
169 * configure.ac (XE_EXPAND_VARIABLE): |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
170 * configure.ac (TAB): |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
171 Rename all instances of enable-FOO to with-FOO. enable-FOO has long |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
172 been aliased to with-FOO and we still preserve this, but formerly |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
173 we randomly used enable-FOO but with-BAR. |
1d775c6304d1
Use with-FOO consistently instead of enable-FOO
Ben Wing <ben@xemacs.org>
parents:
4835
diff
changeset
|
174 |
4835
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
175 2010-01-11 Ben Wing <ben@xemacs.org> |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
176 |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
177 * configure: |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
178 * configure.ac (TAB): |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
179 Add check for cygwin_conv_path(). |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
180 |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
181 2010-01-11 Ben Wing <ben@xemacs.org> |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
182 |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
183 * configure: |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
184 * configure.ac (TAB): |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
185 Define USE_GPLUSPLUS when compiling with g++. |
1e90dc478938
imported patch changelog-changes-1-11-10
Ben Wing <ben@xemacs.org>
parents:
4803
diff
changeset
|
186 |
4803
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
187 2010-01-06 Jerry James <james@xemacs.org> |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
188 |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
189 * configure.ac: Add --with-valgrind option. |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
190 * configure: Regenerate. |
5d120deb60ca
Enable rudimentary support for valgrind, including functions that tell valgrind
Jerry James <james@xemacs.org>
parents:
4790
diff
changeset
|
191 |
4790
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
192 2009-12-21 Jerry James <james@xemacs.org> |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
193 |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
194 * INSTALL: Remove references to OffiX. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
195 * configure.ac: Remove support for OffiX drag-and-drop. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
196 * configure: Regenerate. |
bc4f2511bbea
Remove support for the OffiX drag-and-drop protocol. See xemacs-patches
Jerry James <james@xemacs.org>
parents:
4785
diff
changeset
|
197 |
4785
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
198 2009-12-21 Jerry James <james@xemacs.org> |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
199 |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
200 * INSTALL: Replace reference to yow. |
d6cfba1cc388
Remove the lib-src/yow binary, which is currently unused anyway. See message
Jerry James <james@xemacs.org>
parents:
4782
diff
changeset
|
201 |
4782
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
202 2009-12-18 Jerry James <james@xemacs.org> |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
203 |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
204 * INSTALL: Remove reference to rcs-checkin. |
1523f1d28be1
Remove more obsolete files. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4781
diff
changeset
|
205 |
4781
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
206 2009-12-18 Jerry James <james@xemacs.org> |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
207 |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
208 * build-msw-release.sh: Add copyright and GPL v2 or later header |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
209 with permission of Andy Piper. |
8a653fbe5c27
Add copyright and GPL v2 or later notices to Andy Piper's contributions, with
Jerry James <james@xemacs.org>
parents:
4769
diff
changeset
|
210 |
4769
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
211 2009-12-09 Jerry James <james@xemacs.org> |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
212 |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
213 * INSTALL: Remove description of --without-xmu option. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
214 * configure.ac: Remove --with[out]-xmu option. Issue informative |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
215 error message if libXmu cannot be found. Change all Xmu-related |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
216 tests to assume Xmu is present. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
217 * configure: Regenerate. |
5460287a3327
Remove support for pre-X11R5 systems, including systems without Xmu. See
Jerry James <james@xemacs.org>
parents:
4762
diff
changeset
|
218 |
4762
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
219 2009-12-01 Mike Alexander <mta@umich.edu> |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
220 |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
221 * configure.ac: Make --with-database={dbm|gdbm} work again, it's |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
222 testing $ndbm_h_found which is never set. |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
223 * configure: ditto |
53f27fcd3cd9
Make configure --with-database={dbm|gdbm} work again.
Mike Alexander <mta@umich.edu>
parents:
4759
diff
changeset
|
224 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
225 2009-11-10 Jerry James <james@xemacs.org> |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
226 |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
227 * Makefile.in.in: Remove dynodump support. Delete out-of-date comment |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
228 about Xenix. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
229 * aclocal.m4: Remove support for old operating systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
230 * configure.ac: Remove support for old machines and operating systems. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
231 Remove support for dynodump. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
232 (COFF_ENCAPSULATE) Remove, unused. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
233 * configure: Regenerate. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
234 * dynodump: Remove. |
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
235 |
4753
dd933a82720c
Describe duplicate symbols warning.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4738
diff
changeset
|
236 2009-11-18 Stephen J. Turnbull <stephen@xemacs.org> |
dd933a82720c
Describe duplicate symbols warning.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4738
diff
changeset
|
237 |
dd933a82720c
Describe duplicate symbols warning.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4738
diff
changeset
|
238 * PROBLEMS: Describe duplicate symbol warnings on Mac OS X. |
dd933a82720c
Describe duplicate symbols warning.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4738
diff
changeset
|
239 |
4738
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
240 2009-11-11 Stephen Turnbull <stephen@xemacs.org> |
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
241 |
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
242 * configure.ac (SYSTEM_MALLOC): Use system malloc on darwin. |
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
243 (USE_PARAM_H): #include <sys/param.h> to do needed #defines. |
a6f27e2b3d84
Move functionality of s/darwin.h to configure.ac and config.h.in.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4735
diff
changeset
|
244 |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
245 2009-11-09 Jerry James <james@xemacs.org> |
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
246 |
4759
aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
Jerry James <james@xemacs.org>
parents:
4753
diff
changeset
|
247 * configure.ac: Don't define GNU_MALLOC, as there is no longer an |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
248 "old" GNU malloc. |
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4708
diff
changeset
|
249 |
4708
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
250 2009-10-05 Jerry James <james@xemacs.org> |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
251 |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
252 * configure.ac: Check for external giflib instead of using builtin |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
253 gif support. Remove "(builtin)" from relevant strings. |
1cecc3e9f0a0
Use giflib or libungif to provide GIF support, instead of using internal
Jerry James <james@xemacs.org>
parents:
4699
diff
changeset
|
254 |
4699
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
255 2009-07-31 Stephen Turnbull <stephen@xemacs.org> |
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
256 |
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
257 * configure.ac (HAVE_DBM): Use gdbm/ndbm.h if needed. |
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
258 Thanks to Karl Kleinpaste for the report. |
0e1461b592ce
Check for gdbm/ndbm.h, too.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4663
diff
changeset
|
259 |
4663
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
260 2009-07-28 Mike Sperber <mike@xemacs.org> |
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
261 |
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
262 * Makefile.in.in: Don't install silly symlinks when $(prefix) != |
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
263 $(exec_prefix). |
5220dbba8ccd
Don't install silly symlinks when $(prefix) != $(exec_prefix).
Mike Sperber <sperber@deinprogramm.de>
parents:
4661
diff
changeset
|
264 |
4661
24224362882c
Expand @PREFIX@ in paths.h.
Mike Sperber <sperber@deinprogramm.de>
parents:
4660
diff
changeset
|
265 2009-07-28 Mike Sperber <mike@xemacs.org> |
24224362882c
Expand @PREFIX@ in paths.h.
Mike Sperber <sperber@deinprogramm.de>
parents:
4660
diff
changeset
|
266 |
24224362882c
Expand @PREFIX@ in paths.h.
Mike Sperber <sperber@deinprogramm.de>
parents:
4660
diff
changeset
|
267 * configure.ac: Expand @PREFIX@ in paths.h. |
24224362882c
Expand @PREFIX@ in paths.h.
Mike Sperber <sperber@deinprogramm.de>
parents:
4660
diff
changeset
|
268 |
4660
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
269 2009-07-28 Mike Sperber <mike@xemacs.org> |
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
270 |
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
271 * configure.ac: More accurate tests if paths have been set |
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
272 explicitly on the configure command line. |
32be564c53dd
More accurate tests for explicitly-set paths.
Mike Sperber <sperber@deinprogramm.de>
parents:
4656
diff
changeset
|
273 |
4656
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
274 2009-07-26 Stephen J. Turnbull <stephen@xemacs.org> |
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
275 |
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
276 * configure.ac (XE_MERGED_ARG): Use correct separator when |
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
277 registering options to _AC_USER_OPTS. |
79d1a0524b5f
Use correct separator when registering options to _AC_USER_OPTS.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4636
diff
changeset
|
278 |
4636
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4614
diff
changeset
|
279 2009-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4614
diff
changeset
|
280 |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4614
diff
changeset
|
281 * XEmacs 21.5.29 "garbanzo" is released. |
5c427ece884b
XEmacs 21.5.29 "garbanzo" is released.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4614
diff
changeset
|
282 |
4614
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
283 2009-02-11 Jerry James <james@xemacs.org> |
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
284 |
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
285 * config.guess: |
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
286 * config.sub: Update to 2009-02-03 versions. |
afbfad080ddd
The URLs in our current config.guess and config.sub files are obsolete.
Jerry James <james@xemacs.org>
parents:
4588
diff
changeset
|
287 |
4588
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
288 2009-01-31 Stephen J. Turnbull <stephen@xemacs.org> |
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
289 |
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
290 * configure.ac: Adopt Martin's suggestion of declaring argv as |
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
291 char ** (from <18643.15864.667930.542671@gargle.gargle.HOWL>). |
6a6689b96f00
Adopt Martin's suggestion of "char **argv" throughout configure.ac.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4543
diff
changeset
|
292 |
4543
fe64f1351cbd
Fix my syntax errors.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4542
diff
changeset
|
293 2008-12-29 Stephen J. Turnbull <stephen@xemacs.org> |
fe64f1351cbd
Fix my syntax errors.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4542
diff
changeset
|
294 |
fe64f1351cbd
Fix my syntax errors.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4542
diff
changeset
|
295 * configure.ac (xemacs_cc_cc_mismatch): Fix my syntax errors. |
fe64f1351cbd
Fix my syntax errors.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4542
diff
changeset
|
296 |
4542
9b3f398ebfb7
Add terminating newline to .hgignore.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4537
diff
changeset
|
297 2008-12-29 Stephen J. Turnbull <stephen@xemacs.org> |
9b3f398ebfb7
Add terminating newline to .hgignore.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4537
diff
changeset
|
298 |
9b3f398ebfb7
Add terminating newline to .hgignore.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4537
diff
changeset
|
299 * .hgignore: Add terminating newline to .hgignore. |
9b3f398ebfb7
Add terminating newline to .hgignore.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4537
diff
changeset
|
300 |
4537
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
301 2008-12-27 Aidan Kehoe <kehoea@parhasard.net> |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
302 |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
303 * configure.ac: Vladimir Ivanovic's change of 2008-09-17 was |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
304 effective, but not correct. The original issue was that m4 |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
305 stripped [], so "char *v[]" in configure.ac became "char *v" in |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
306 configure. His change to configure.ac rendered the declaration |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
307 "char **v[]", which is effective but confusing; this change |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
308 renders it "char **v". |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
309 * configure: Regenerate. |
7ca6d57ce12d
Clarify syntax in configure.ac following Vladimir Ivanovic's change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4536
diff
changeset
|
310 |
4513
51fa2a054060
Give better pointers to package documentation.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4475
diff
changeset
|
311 2008-10-25 Stephen J. Turnbull <stephen@xemacs.org> |
51fa2a054060
Give better pointers to package documentation.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4475
diff
changeset
|
312 |
51fa2a054060
Give better pointers to package documentation.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4475
diff
changeset
|
313 * INSTALL: Give better pointers to package documentation. |
51fa2a054060
Give better pointers to package documentation.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4475
diff
changeset
|
314 |
4510
bd1fbed783dd
Improve g++ detection.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3975
diff
changeset
|
315 2008-10-25 Stephen J. Turnbull <stephen@xemacs.org> |
bd1fbed783dd
Improve g++ detection.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3975
diff
changeset
|
316 |
bd1fbed783dd
Improve g++ detection.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3975
diff
changeset
|
317 * configure.ac (xemacs_cc_cc_mismatch): Improve g++ detection. |
bd1fbed783dd
Improve g++ detection.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
3975
diff
changeset
|
318 |
4536
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
319 2008-09-17 Vladimir G. Ivanovic <vladimir@acm.org> |
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
320 |
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
321 * configure: Fixed two typos in args of main: char *v -> char **v |
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
322 * configure.ac: Fixed two typos in args of main: char *v -> char **v |
0ed907d0f1e9
configure,configure.ac: Fixed two typos in args of main: char *v -> char **v
"Vladimir G. Ivanovic" <vgivanovic@comcast.net>
parents:
4514
diff
changeset
|
323 |
4496
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
324 2008-08-03 Mats Lidell <matsl@xemacs.org> |
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
325 |
4497
f863b2ee146f
Rename xft_gauge to xft_gauges.
Mats Lidell <matsl@xemacs.org>
parents:
4496
diff
changeset
|
326 * configure.ac: Fix typo xft_gauge to xft_gauges |
f863b2ee146f
Rename xft_gauge to xft_gauges.
Mats Lidell <matsl@xemacs.org>
parents:
4496
diff
changeset
|
327 |
4496
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
328 * configure.ac (XE_COMPLEX_ARG): Use different defaults for |
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
329 with-xft and without-xft. |
772c80e0e180
with-xft defaults to xft being used with a default setting.
Mats Lidell <matsl@xemacs.org>
parents:
4475
diff
changeset
|
330 |
4475
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
331 2008-07-06 Ville Skytt� <scop@xemacs.org> |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
332 |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
333 * configure.ac (xe_fst): |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
334 New, to replace m4_fst which disappeared in autoconf 2.62 (#370). |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
335 (XE_EXPAND_COMPLEX_OPTIONS): Use xe_fst. |
86283c809984
autoconf 2.62 compatibility, #370
"Ville Skyttä <scop@xemacs.org>"
parents:
4455
diff
changeset
|
336 |
4455
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
337 2008-05-12 Michael Sperber <mike@xemacs.org> |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
338 |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
339 * configure.ac: |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
340 A number of the checks that tried to determine whether an explicit |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
341 path was specified were wrong. |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
342 Also, add an AC_SUBST for INFOPATH. |
49f8ed034500
Fix path-configuration glitches:
Mike Sperber <sperber@deinprogramm.de>
parents:
4450
diff
changeset
|
343 |
4449
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
344 2008-05-07 Aidan Kehoe <kehoea@parhasard.net> |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
345 |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
346 * configure.ac (XE_EXPAND_VARIABLE): Call AC_SUBST on |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
347 SHEBANG_PATHNAME, as suggested by Michael Sperber in |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
348 y9ly7aj1wfc.fsf@deinprogramm.de. |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
349 * Makefile.in.in: Regenerate. |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
350 * configure: Ditto. |
13ce402e1736
Call AC_SUBST on SHEBANG_PATHNAME, for #! support.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4448
diff
changeset
|
351 |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
352 2008-01-20 Aidan Kehoe <kehoea@parhasard.net> |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
353 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
354 * Makefile.in.in (SHEBANG_PROGNAME): |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
355 New variable; a symbol link to the XEmacs binary to tell it it |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
356 should read a script from stdin. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
357 * configure.ac (XE_EXPAND_VARIABLE): |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
358 Set SHEBANG_PROGNAME. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
359 * configure: |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
360 Regenerate. |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4401
diff
changeset
|
361 |
4440
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
362 2008-04-01 Andreas Schwab <schwab@suse.de> |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
363 |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
364 Thanks to Mike Fabian for posting a patch to the mainline, to Martin |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
365 Buchholz for writing the ChangeLog, and to Aidan Kehoe for finding |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
366 the 2003-01-27 ChangeLog. Tested against Xaw3d. -- stephen |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
367 |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
368 * configure.ac (athena_3d): |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
369 AC_CHECK_LIB must always take a function as |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
370 argument, never a global variable. Some linkers can tell the |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
371 difference. So change: |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
372 threeDClassRec ==> XawSme3dComputeTopShadowRGB |
e4225b6d9389
AC_CHECK_LIB needs a function symbol. <87zls98qtk.fsf@uwakimon.sk.tsukuba.ac.jp>
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4424
diff
changeset
|
373 |
4424
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
374 2008-02-15 Marcus Crestani <crestani@xemacs.org> |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
375 |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
376 * configure.ac: Look for all x86 machines to determine which write |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
377 barrier to use on MacOSX. |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
378 * configure : Rebuild. |
42711a251efd
Look for all x86 machines to determine which write barrier to use on MacOSX.
Marcus Crestani <crestani@informatik.uni-tuebingen.de>
parents:
4420
diff
changeset
|
379 |
4420
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4419
diff
changeset
|
380 2008-02-12 Jerry James <james@xemacs.org> |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4419
diff
changeset
|
381 |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4419
diff
changeset
|
382 * install.sh: Rename to install-sh and update to latest FSF version. |
6ed8c4ccc17e
Update install-sh to version with a clear license.
Jerry James <james@xemacs.org>
parents:
4419
diff
changeset
|
383 |
4412
2f000e022a8b
Fix misspelling of option 'gdbm'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4401
diff
changeset
|
384 2008-01-25 Stephen J. Turnbull <stephen@xemacs.org> |
2f000e022a8b
Fix misspelling of option 'gdbm'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4401
diff
changeset
|
385 |
2f000e022a8b
Fix misspelling of option 'gdbm'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4401
diff
changeset
|
386 * configure.ac (--with-database): 'gnudbm' -> 'gdbm' in docstrings. |
2f000e022a8b
Fix misspelling of option 'gdbm'.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4401
diff
changeset
|
387 |
4419
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
388 2008-01-25 Michael Sperber <mike@xemacs.org> |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
389 |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
390 * Makefile.in.in: |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
391 * configure.ac: |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
392 * version.sh.in: Use Mercurial tip hash to identify version |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
393 instead of old CVS method. |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4412
diff
changeset
|
394 |
4401
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
395 2008-01-17 Aidan Kehoe <kehoea@parhasard.net> |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
396 |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
397 * configure.ac: |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
398 If using a version of the gdbm library that sticks dbm_open in |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
399 libgdbm_compat.so, also link to that library. |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
400 Correct a thinko with DBM version 4 checks. Both from Hans de |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
401 Graaff, in |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
402 http://mid.gmane.org/20050812092756.6850.qmail@graaff.xs4all.nl |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
403 and |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
404 http://mid.gmane.org/pan.2007.06.24.10.10.57@gentoo.org; thank you |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
405 Hans! |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
406 * configure: |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
407 Regenerate. |
01970033faa6
Configure fixes from Hans de Graaff, as used in Gentoo.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4374
diff
changeset
|
408 |
4374
4939bde48d12
Fix incorrect comment convention.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
409 2008-01-01 Stephen J. Turnbull <stephen@xemacs.org> |
4939bde48d12
Fix incorrect comment convention.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
410 |
4939bde48d12
Fix incorrect comment convention.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
411 * Makefile.in.in (mkpkgdir): Fix incorrect comment convention. |
4939bde48d12
Fix incorrect comment convention.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4361
diff
changeset
|
412 |
4361
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
413 2007-12-26 Stephen J. Turnbull <stephen@xemacs.org> |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
414 |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
415 * Makefile.in.in (mkpkgdir): Ensure only one late package directory. |
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
416 |
4357
3af63264d320
Make check-available-packages announce where to install packages.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
417 2007-12-26 Stephen J. Turnbull <stephen@xemacs.org> |
3af63264d320
Make check-available-packages announce where to install packages.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
418 |
3af63264d320
Make check-available-packages announce where to install packages.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
419 * Makefile.in.in (check-available-packages): Say where to install. |
4361
146742e30f05
Ensure LATE_PACKAGES_DIRECTORIES is a trivial search path.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4357
diff
changeset
|
420 (mkpkgdir): |
4357
3af63264d320
Make check-available-packages announce where to install packages.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4354
diff
changeset
|
421 |
4354
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
422 2007-12-23 Stephen J. Turnbull <stephen@xemacs.org> |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
423 |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
424 * Makefile.in.in (mkpkgdir): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
425 (check-available-packages): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
426 (install-bootstrap-packages): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
427 (install-nonmule-packages): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
428 (install-all-packages): |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
429 New targets supporting bundled packages. |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
430 |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
431 * .hgignore: Ignore tarballs in etc/bundled-packages/. |
232d873b9705
Add support for installing bundled patches.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4338
diff
changeset
|
432 |
4338
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
433 2007-12-08 Jerry James <james@xemacs.org> |
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
434 |
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
435 * config.guess: |
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
436 * config.sub: Sync with the latest upstream versions. |
528c4d906843
Sync config.guess and config.sub with the latest upstream versions.
james@localhost.localdomain
parents:
4328
diff
changeset
|
437 |
4328
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
438 2007-12-12 Aidan Kehoe <kehoea@parhasard.net> |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
439 |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
440 * configure.ac : |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
441 Check for FcConfigGetRescanInterval, FcConfigSetRescanInterval. |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
442 * configure : |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
443 Rebuild. |
dfd878799ef0
Autoconfiscate the recent fontconfig spelling change.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4152
diff
changeset
|
444 |
4152 | 445 2007-08-27 Mike Sperber <mike@xemacs.org> |
446 | |
447 * configure.ac: Try to use pkg-config for finding Xft includes and | |
448 libraries. If that fails, search also in /usr/local. | |
449 | |
4118 | 450 2007-08-12 Mike Sperber <mike@xemacs.org> |
451 | |
452 * Makefile.in.in (datarootdir): Add. | |
453 * configure.ac (infodir): Now in terms of $(datarootdir). | |
454 (mandir): Ditto, making it usually point to $(prefix)/share/man, | |
455 conformant with the GNU Coding Standards. | |
456 | |
4092 | 457 2007-07-31 Mike Sperber <mike@xemacs.org> |
458 | |
459 * configure.ac: Don't divert `share' to `lib' for datadir. | |
460 Also, define AC_DATAROOTDIR_CHECKED to shut up autoconf. | |
461 | |
3975 | 462 2007-05-21 Stephen J. Turnbull <stephen@xemacs.org> |
463 | |
464 * XEmacs 21.5.28 "fuki" is released. | |
465 | |
3961 | 466 2007-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
467 | |
468 * configure.ac (error-checking): Move comma misplaced by sorting. | |
469 * configure: Regenerate. | |
470 | |
3959 | 471 2007-05-18 Stephen J. Turnbull <stephen@xemacs.org> |
472 | |
473 * configure.ac (error-checking): Reorder arguments and sync doctring. | |
474 | |
3863 | 475 2007-03-14 Stephen J. Turnbull <stephen@xemacs.org> |
476 | |
477 * PROBLEMS: describe crash when inserting or displaying a TAB. | |
478 Thanks to Aidan Kehoe for the diagnosis. | |
479 | |
3862 | 480 2006-12-24 Stephen J. Turnbull <stephen@xemacs.org> |
481 | |
482 * configure.ac (ar): Sun has it but hides it; check for it. | |
483 (ssize_t): Use the modern check and document todo. | |
484 | |
3830 | 485 2007-02-16 Stephen J. Turnbull <stephen@xemacs.org> |
486 | |
487 * configure.ac (canna): | |
488 Move #define of CANNA_NEW_WCHAR_AWARE to config.h. | |
489 Use -DCANNA_NEW_WCHAR_AWARE since check for RK.h fails otherwise. | |
490 Refactor into loops over orthogonal tweaks (prefix and define). | |
491 Use have_canna to track detection success, not with_canna. | |
492 Add AC_MSG_WARNs documenting autoconf's bogosity (ours, too). | |
493 | |
3773 | 494 2007-01-01 Malcolm Purvis <malcolmp@xemacs.org> |
495 | |
496 * aclocal.m4 (XE_SHLIB_STUFF): Use $EGREP instead of egrep. | |
497 | |
3765 | 498 2006-12-28 Malcolm Purvis <malcolmp@xemacs.org> |
499 | |
500 * configure.ac: Ensure ac_configure_args contains a leading space | |
501 to work around problems with 'config.status --recheck' under | |
502 autoconf 2.60 and 2.61. | |
503 | |
3764 | 504 2006-12-27 Malcolm Purvis <malcolmp@xemacs.org> |
505 | |
506 * configure.ac (XE_MERGED_ARG): Register --enable and --with forms | |
507 with the option checking list. | |
508 | |
3752 | 509 2006-12-19 Stephen J. Turnbull <stephen@xemacs.org> |
510 | |
511 * Makefile.in.in (${srcdir}/configure): Generated from configure.ac. | |
512 | |
3739 | 513 2006-12-06 Dr. Volker Zell <Dr.Volker.Zell@oracle.com> |
514 | |
515 * configure.ac: Check for u_int*_t typedefs. | |
516 | |
4010 | 517 2006-12-06 Dr. Volker Zell <Dr.Volker.Zell@oracle.com> |
518 | |
519 * configure.ac: Avoid using Motif for cygwin. | |
3738 | 520 |
3729 | 521 2006-11-23 Mike Sperber <mike@xemacs.org> |
522 | |
523 * configure.ac (XE_EXPAND_VARIABLE): Fully expand the various | |
524 directories before comparing them for figuring out which of them | |
525 are user-defined. Use XE_EPXAND_VARIABLE macro created for this | |
526 purpose where applicable. | |
527 | |
4010 | 528 2006-12-07 Rick Rankin <rick.rankin@yahoo.com> |
3727 | 529 |
530 * configure.ac: Add new library name for cygwin's xpm. | |
531 | |
4010 | 532 2006-12-07 Rick Rankin <rick.rankin@yahoo.com> |
3727 | 533 |
534 * configure.ac: Add new library name for cygwin's xpm. | |
535 | |
3683 | 536 2006-10-30 Malcolm Purvis <malcolmp@xemacs.org> |
537 * configure.ac (XE_CDR): m4_cdr differs in autoconf 2.59 and 2.60. | |
538 (XE_EXPAND_COMPLEX_OPTIONS): Use XE_CDR, not m4_cdr. | |
539 | |
3520 | 540 2006-07-18 Marcus Crestani <crestani@xemacs.org> |
541 | |
542 * configure.ac: Intel-based Macs can use POSIX-style write | |
543 barrier. Use $machine to determine this. | |
544 | |
3518 | 545 2006-07-20 Stephen J. Turnbull <stephen@xemacs.org> |
546 | |
547 * configure.ac (system-packages,legacy-packages): Fix help strings. | |
548 | |
549 * configure.in: cvs remove. | |
550 * configure.usage: cvs remove. | |
551 | |
3494 | 552 2006-06-20 Jerry James <james@xemacs.org> |
553 | |
554 * configure.ac: When gcc is used, capture the values of __GNUC__ | |
555 and __GNUC_MINOR__. Use them to conditionally add warning flags | |
556 that are not supported by all versions of gcc. | |
557 | |
3481 | 558 2006-06-23 Stephen J. Turnbull <stephen@xemacs.org> |
559 | |
560 * configure.ac (Build Makefile.in's from Makefile.in.in's): | |
561 Create $srcdir/src/depend if it's missing. | |
562 | |
3443 | 563 2006-06-05 Jerry James <james@xemacs.org> |
564 | |
565 * configure.ac: Change "if -z" to "if test -z". | |
566 | |
3418 | 567 2006-05-23 Stephen J. Turnbull <stephen@xemacs.org> |
568 | |
569 * configure.ac: Look for debugger init file templates in etc/, not | |
570 src/. Debugger init files depend on config.h; recreate on every | |
571 configure. Support XCOMM convention. Update FSF copyright. | |
572 | |
3406 | 573 2006-05-17 Malcolm Purvis <malcolmp@xemacs.org> |
574 | |
575 * PROBLEMS: Add entry concerning X errors when using ssh. | |
576 | |
3404 | 577 2006-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
578 | |
579 * PROBLEMS: X11R7 loses x11/bitmaps/gray. | |
580 | |
3402 | 581 2006-05-16 Stephen J. Turnbull <stephen@xemacs.org> |
582 | |
583 * XEmacs 21.5.27 "fiddleheads" is released. | |
584 | |
3395 | 585 2006-04-06 Jerry James <james@xemacs.org> |
586 | |
587 * COPYING: Update to latest upstream version. | |
588 | |
3354 | 589 2006-04-15 Stephen J. Turnbull <stephen@xemacs.org> |
590 | |
591 * configure.ac: Add stubs for fontconfig configuration. | |
592 | |
3323 | 593 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
594 | |
595 * XEmacs 21.5.26 "endive" is released. | |
596 | |
3322 | 597 2006-03-31 Stephen J. Turnbull <stephen@xemacs.org> |
598 | |
599 Miscellaneous doc cleanup, parts 2-4: move CHANGES-msw, | |
600 TODO.ben-mule-21-5, README.ben-mule-21-5, and | |
601 README.ben-separate-stderr to Internals Manual. | |
602 | |
603 * CHANGES-msw: Removed. | |
604 * TODO.ben-mule-21-5: Removed. | |
605 * README.ben-mule-21-5: Removed. | |
606 * README.ben-separate-stderr: Removed. | |
607 | |
608 2006-03-29 Stephen J. Turnbull <stephen@xemacs.org> | |
609 | |
610 Miscellaneous doc cleanup, part 1: move CHANGES-ben-mule to | |
611 Internals Manual. | |
612 | |
613 * CHANGES-ben-mule: Removed. | |
614 | |
615 * ChangeLog: | |
616 * lib-src/ChangeLog: | |
617 * lisp/ChangeLog: | |
618 * lwlib/ChangeLog: | |
619 * man/ChangeLog: | |
620 * man/internals/internals.texi: | |
621 * modules/ChangeLog: | |
622 * netinstall/ChangeLog: | |
623 * nt/ChangeLog: | |
624 * nt/installer/Wise/ChangeLog: | |
625 * src/ChangeLog: | |
626 * tests/ChangeLog: | |
627 Update the Great Mule Merge placeholders to point to Internals | |
628 Manual node "The Great Mule Merge of March 2002". | |
629 N.B. Self-referencing log entries were *not* added to other logs. | |
4010 | 630 |
3317 | 631 2006-03-30 Jerry James <james@xemacs.org> |
632 | |
633 * configure.ac: Fix for -Kalloca detection, also broken by the | |
634 recent autoconf updates. Thanks to Ilya Golubev. | |
635 | |
3316 | 636 2006-03-30 Jerry James <james@xemacs.org> |
637 | |
638 * configure.ac: Fix FOR_MSW XPM test, broken by previous update. | |
639 | |
3312 | 640 2006-03-27 Jerry James <james@xemacs.org> |
641 | |
642 * aclocal.m4: Updates for autoconf 2.59. | |
643 * configure.ac: Ditto. Also, don't bother checking for inttypes.h | |
644 and unistd.h explicitly, since AC_HEADER_STDC does that. | |
645 | |
3309 | 646 2006-03-27 Jerry James <james@xemacs.org> |
647 | |
648 * configure.ac: Repair ALSA detection. | |
649 | |
3308 | 650 2006-03-24 Jerry James <james@xemacs.org> |
651 | |
652 * configure.ac: Autodetect ALSA support and report it if detected. | |
653 | |
3263 | 654 2006-02-22 Marcus Crestani <crestani@xemacs.org> |
655 | |
656 * configure.ac: Remove mc-alloc, replace it with newgc, adjust | |
657 output and comments. | |
658 | |
3259 | 659 2006-02-26 Stephen J. Turnbull <stephen@xemacs.org> |
660 | |
661 * XEmacs 21.5.25 "eggplant" is released. | |
662 | |
3248 | 663 2006-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
664 | |
665 * configure.ac (Mule): Mark broken test with ####. | |
666 | |
667 2006-02-18 Stephen J. Turnbull <stephen@xemacs.org> | |
668 | |
669 * configure.ac (Mule): Remove obsolete comment on XIM. | |
670 | |
3228 | 671 2006-01-30 Vin Shelton <acs@xemacs.org> |
672 | |
673 * configure.ac: Simplify cygwin include and no-X Xpm handling. | |
674 As of cygwin-1.5.19 (if you're using /bin/gcc), | |
675 'gcc -print-file-name=libc.a' (effectively) returns '/lib' | |
676 instead of '/usr/lib', so we'll use 'gcc -print-search-dirs' | |
677 instead. | |
678 | |
3186 | 679 2005-12-29 Mike Sperber <mike@xemacs.org> |
680 | |
681 * Makefile.in.in (top-distclean-noconfig): Don't delete | |
682 site-packages xemacs-packages mule-packages site-lisp---those are | |
683 supposed to stick around. | |
684 | |
3179 | 685 2005-11-25 Mike Sperber <mike@xemacs.org> |
686 | |
4010 | 687 * CHANGES-beta: |
3179 | 688 * configure.ac: Zap --with-package-prefix; instead, add |
689 --with-user-packages/--with-early-packages, | |
690 --with-system-packages/--with-late-packages, and | |
691 --with-legacy-packages/--with-last-packages. | |
692 | |
693 2005-12-13 Mike Sperber <mike@xemacs.org> | |
694 | |
695 * configure.ac: Move the checks for the Xft-associated library out | |
696 of a conditional. | |
697 | |
3166 | 698 2005-12-23 Stephen J. Turnbull <stephen@xemacs.org> |
699 | |
700 * configure.ac (Xft): Fix typo preventing report of Xft buffers. | |
701 Remove now-irrelevant comments. | |
702 | |
3161 | 703 2005-12-22 Stephen J. Turnbull <stephen@xemacs.org> |
704 | |
705 * configure.ac: Three typos fixed. | |
706 | |
4010 | 707 2005-12-13 Mike Sperber <mike@xemacs.org> |
3158 | 708 |
709 * configure.ac: Move the checks for the Xft-associated | |
710 library out of a conditional. | |
711 | |
3150 | 712 2005-12-18 Stephen J. Turnbull <stephen@xemacs.org> |
713 | |
714 * XEmacs 21.5.24 "dandelion" is released. | |
715 | |
3149 | 716 2005-12-19 Stephen J. Turnbull <stephen@xemacs.org> |
717 | |
718 * configure.ac (XE_COMPLEX_ARG): Substitute '_' for '-' in default | |
719 variable names. | |
720 | |
3147 | 721 2005-12-09 Malcolm Purvis <malcolmp@xemacs.org> |
722 | |
723 * configure.ac (XE_EXPAND_COMPLEX_OPTION): | |
724 * configure.ac (XE_INIT_COMPLEX_OPTION): | |
725 * configure.ac (XE_PARSE_COMPLEX_OPTION): | |
726 * configure.ac (XE_COMPLEX_ARG): | |
727 With the help of Stephen Turnbull rewrote the option processing to | |
728 give more consistent under the various combinations of all, none, | |
729 no, yes, --without, --with, etc that can occur. | |
730 | |
3102 | 731 2005-11-27 Marcus Crestani <crestani@xemacs.org> |
732 | |
733 * configure.ac: Remove vdb-fake warning, die if POSIX checks fail. | |
734 | |
3098 | 735 2005-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
736 | |
737 * configure.ac (XE_COMPLEX_ARG[xft]): Default everything off; | |
738 change doc. | |
739 | |
3097 | 740 2005-11-27 Stephen J. Turnbull <stephen@xemacs.org> |
741 | |
742 * configure.ac (XE_COMPLEX_ARG[xft]): Remove merge detritus and | |
743 regenerate configure to fix syntax error. | |
744 | |
3094 | 745 2005-11-26 Stephen J. Turnbull <stephen@xemacs.org> |
746 | |
747 Merge Xft. | |
748 | |
749 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> | |
750 | |
751 * configure.ac: Correct the filename of the old copy of configure. | |
752 | |
753 2005-03-05 Malcolm Purvis <malcolmp@xemacs.org> | |
754 | |
755 * config.guess: | |
756 * config.sub: Sync with the latest upstream versions. | |
757 * configure.ac: Use --verbose for --extra-verbose. Better | |
758 quoting of arguments. Internal shell vars statr with '_' to avoid | |
759 name clashes. Pick up the latest changes to configure.in. | |
760 Improve the testing of Athena 3d widgets. | |
761 | |
762 2005-02-20 Stephen J. Turnbull <stephen@xemacs.org> | |
763 | |
764 * configure.ac (athena): Spells as 3d, not xaw3d, in declaration. | |
765 (sound): quickfix: AC_DEFINE, not AC_DEFINE_UNQUOTED, at top level. | |
766 | |
767 2005-02-19 Stephen J. Turnbull <stephen@xemacs.org> | |
768 | |
769 * configure.ac (XE_EXPAND_COMPLEX_OPTION): Use same name in comment. | |
770 (XEmacs keyword option support): | |
771 (XEmacs complex option support): | |
772 Move long header comments to internals.texi(The configure Script). | |
773 | |
774 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
775 | |
776 * configure.ac: Trap --with-style flags, now --enable. | |
777 | |
778 2005-02-03 Stephen J. Turnbull <stephen@xemacs.org> | |
779 | |
780 * configure.ac (Autodetect native sound): | |
781 Handle NetBSD per Aidan's patch. | |
782 | |
783 2005-02-11 Malcolm Purvis <malcolmp@xemacs.org> | |
784 | |
785 * configure.ac: Added keyword option support. Converted database, | |
786 sound, athena, xim, bignum, error-checking, menubars, scrollbars, | |
787 dialogs and widgets command line arguments to use keyword option | |
788 and complex option macros. | |
789 | |
790 2005-02-09 Malcolm Purvis <malcolmp@xemacs.org> | |
791 | |
792 * configure.ac (XE_COMPLEX_OPTION): | |
793 * configure.ac (XE_COMPLEX_OPTION_HELP_STRING): | |
794 * configure.ac (XE_COMPLEX_ARG_WITH): | |
795 * configure.ac (XE_COMPLEX_ARG_ENABLE): | |
796 Rewritten complex option support with a simpler API and support | |
797 for --enable as well a --with. | |
798 | |
799 2005-02-02 Malcolm Purvis <malcolmp@xemacs.org> | |
800 | |
801 * configure.ac Align with the current mainline version of | |
802 configure.in. | |
803 | |
804 2005-02-01 Stephen J. Turnbull <stephen@xemacs.org> | |
805 | |
806 * configure.ac (Xrender, fontconfig, and Xft): | |
807 Check /usr/include/freetype2. | |
808 | |
809 2005-01-30 Stephen J. Turnbull <stephen@xemacs.org> | |
810 | |
811 * configure.ac (AC_COPYRIGHT): Update. | |
812 (progname): Restore and improve documentation. | |
813 | |
814 (XE_INIT_COMPLEX_OPTION): | |
815 (XE_APPEND_COMPLEX_OPTION_DEFAULT): | |
816 (XE_PARSE_COMPLEX_OPTION): | |
817 (XE_CLEANUP_COMPLEX_OPTION): | |
818 (XE_COMPLEX_OPTION_HELP_STRING): Support complex options. | |
819 (--with-xft): Add Xft support using the complex option support. | |
820 | |
821 (--with-xface): | |
822 (--with-zlib): | |
823 (--with-xmu): | |
824 (--with-purify): | |
825 (--with-quantify): | |
826 (--with-toolbars): | |
827 (--with-tty): | |
828 (--with-xfs): | |
829 (--with-canna): | |
830 (--with-wnn): | |
831 (--with-wnn6): | |
832 (--with-ldap): | |
833 (--with-postgresql): | |
834 (--with-infodock): | |
835 (--with-native-sound-lib): | |
836 (--with-netinstall): | |
837 (--with-site-includes): | |
838 (--with-site-libraries): | |
839 (--with-site-prefixes): | |
840 (--with-package-prefix): | |
841 (--with-package-path): | |
842 (--enable-external-widget): | |
843 (--enable-kkcc): | |
844 (--enable-union-type): | |
845 (--enable-pdump): | |
846 (--enable-debug): | |
847 (--enable-memory-usage-stats): | |
848 (--enable-error-checking): | |
849 (--with-rel-alloc): | |
850 (--with-dlmalloc): | |
851 (--with-debug-malloc): | |
852 (--with-system-malloc): | |
853 Improve (including add) help strings. | |
854 | |
855 (--with-athena): | |
856 (--with-xim): | |
857 (--with-mail-locking): | |
858 (--enable-bignum): | |
859 (--enable-menubars): | |
860 (--enable-scrollbars): | |
861 (--enable-dialogs): | |
862 (--enable-widgets): | |
863 Fix `eval "$FEATURE=\"$val\"" bug. | |
4010 | 864 |
3094 | 865 2005-01-29 Stephen J. Turnbull <stephen@xemacs.org> |
866 | |
867 * INSTALL (CONFIGURATION OPTIONS): | |
868 Insert Malcolm's notes on autoconf 2.59 support. | |
869 | |
870 2005-01-04 Malcolm Purvis <malcolmp@xemacs.org> | |
871 | |
872 * aclocal.m4: Changes to support autoconf 2.59 | |
873 * config.guess: | |
874 * config.sub: Upgraded to the version in from automake 1.9 | |
875 * configure.ac: Rewritten for autoconf 2.59 support. | |
876 | |
877 2004-12-10 Stephen J. Turnbull <stephen@xemacs.org> | |
878 | |
879 * configure.usage: Various minor improvements. | |
880 | |
881 2004-12-09 Stephen J. Turnbull <stephen@xemacs.org> | |
882 | |
883 * configure.in: Update FSF's copyright. Support --with-xft=LIST | |
884 syntax. Try to find a directory containing freetype/ftheader.h. | |
885 | |
886 * configure.usage (--with-xft): Update. | |
887 | |
888 2004-11-20 Stephen J. Turnbull <stephen@xemacs.org> | |
889 | |
890 Xft branch based on "Xft reloaded #3" patch by Eric Knauel and | |
891 Mathias Neuebaur, and other contributors. | |
892 | |
893 * configure.in: | |
894 * configure.usage: | |
895 Implement and document switches for configuring Xft. | |
896 | |
3092 | 897 2005-11-21 Marcus Crestani <crestani@xemacs.org> |
898 | |
899 Incremental Garbage Collector | |
4010 | 900 |
3092 | 901 * configure.ac: Add newgc option; if newgc, turn on kkcc and |
902 mc-alloc. Add checks for write barrier, determine which write | |
903 barrier to use. Add vdb option to override write barrier | |
904 auto-detection. Generate .gdbinit and .dbxrc. | |
905 | |
3083 | 906 2005-11-22 Ben Wing <ben@xemacs.org> |
907 | |
908 * dynodump/Makefile.in.in (mostlyclean): | |
909 Ignore errors from rm during clean. | |
910 | |
911 2005-11-22 Ben Wing <ben@xemacs.org> | |
912 | |
913 * Makefile.in.in (top-mostlyclean): | |
914 * Makefile.in.in (top-clean): | |
915 * Makefile.in.in (top-distclean-noconfig): | |
916 * Makefile.in.in (top-distclean): | |
917 * Makefile.in.in (top-realclean-noconfig): | |
918 * Makefile.in.in (top-extraclean-noconfig): | |
919 * Makefile.in.in (TAGS tags): | |
920 Ignore errors from rm during clean, to prevent problems trying to | |
921 remove lock/CVS. | |
922 | |
3074 | 923 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
924 | |
925 * Makefile.in.in: Install PROBLEMS into .../etc | |
926 * PROBLEMS: Update description of MacOS X stack size limit. | |
927 | |
3073 | 928 2005-11-08 Malcolm Purvis <malcolmp@xemacs.org> |
929 | |
930 * configure.ac : Reorganised the option list so that the help | |
931 output looks like configure.usage from 21.4 | |
932 | |
3072 | 933 2005-11-16 Stephen J. Turnbull <stephen@xemacs.org> |
934 | |
935 * configure.ac (checks for typedefs): TODO comment. | |
936 | |
3062 | 937 2005-11-13 Ben Wing <ben@xemacs.org> |
938 | |
939 * dynodump/Makefile.in.in: | |
940 * dynodump/Makefile.in.in (.PHONY): | |
941 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
942 Do some refactoring for cleanliness. | |
943 | |
944 2005-11-13 Ben Wing <ben@xemacs.org> | |
945 | |
946 * Makefile.in.in: | |
947 * Makefile.in.in (beta): | |
948 * Makefile.in.in (FRC.mostlyclean FRC.clean FRC.distclean FRC.realclean FRC.extraclean FRC.tags): | |
949 * Makefile.in.in (.PHONY): | |
950 * Makefile.in.in (top-mostlyclean): | |
951 * Makefile.in.in (mostlyclean): | |
952 * Makefile.in.in (top-clean): | |
953 * Makefile.in.in (clean): | |
954 * Makefile.in.in (distclean): | |
955 * Makefile.in.in (realclean): | |
956 Add targets distclean-noconfig, realclean-noconfig, extraclean-noconfig. | |
957 *-noconfig targets are like the base targets they're based off of, but | |
958 don't delete Makefiles and certain other files needed to rebuild the | |
959 Makefiles as necessary. Refactor things to be more consistent. | |
960 Top-level `elcclean' is an alias for `realclean-noconfig' and is used | |
961 by target `beta'. `realclean-noconfig' (and, by extension, `realclean' | |
962 and `extraclean') remove the .elc files. | |
963 | |
3060 | 964 2005-11-13 Ben Wing <ben@xemacs.org> |
965 | |
966 * configure.ac (win32 native sound): | |
967 Dependent on operating system, not on window system. | |
968 | |
3050 | 969 2005-11-07 Stephen J. Turnbull <stephen@xemacs.org> |
970 | |
971 * configure.ac (AC_INIT): Use it correctly. | |
972 | |
973 2005-11-07 Stephen J. Turnbull <stephen@xemacs.org> | |
974 | |
975 * configure.ac (PostgreSQL): Check for link against SSL+crypto. | |
976 | |
977 2005-11-07 Stephen J. Turnbull <stephen@xemacs.org> | |
978 | |
979 * INSTALL: Add map from old options as appendix. | |
980 | |
981 2005-11-07 Stephen J. Turnbull <stephen@xemacs.org> | |
982 | |
983 * INSTALL: Various minor improvements. | |
984 | |
3031 | 985 2005-10-26 Stephen J. Turnbull <stephen@xemacs.org> |
986 | |
987 * XEmacs 21.5.23 "daikon" is released. | |
988 | |
3019 | 989 2005-10-25 Malcolm Purvis <malcolmp@xemacs.org> |
990 | |
991 * configure.ac: Prefer Xaw to Motif on Linux, Mac and BSD. From | |
992 21.4. | |
993 * configure.ac (XE_PARSE_COMPLEX_OPTION): Remove debugging. | |
994 Fix broken --with-<complex>=no. | |
995 | |
3018 | 996 2005-10-20 Malcolm Purvis <malcolmp@xemacs.org> |
997 | |
998 * INSTALL: Reflect changes in the configure options. Update MacOS | |
999 X X11 installation instructions to reflect the changes in recent | |
1000 OS releases. | |
1001 | |
3003 | 1002 2005-10-15 Malcolm Purvis <malcolmp@xemacs.org> |
1003 | |
1004 * configure.ac: Added XE_MERGED_ARG to alias all local --enable | |
1005 and --with options. Configure can only be built with autoconf | |
1006 2.59. Prevent many unwanted blank lines from appearing in | |
1007 configure. | |
1008 | |
2992 | 1009 2005-10-13 Ben Wing <ben@xemacs.org> |
1010 | |
1011 * configure.ac (XE_COMPLEX_ARG_ENABLE): | |
1012 Break lines. | |
1013 * configure.ac (TAB): | |
1014 Rewrite optimization help to be accurate. Setting | |
1015 `--with-cflags-optimization=""' will now unilaterally turn off | |
1016 optimization; setting it to something non-null unilaterally turns it | |
1017 on. | |
1018 | |
2973 | 1019 2005-09-22 Stephen J. Turnbull <stephen@xemacs.org> |
1020 | |
1021 * configure.ac (Canna): Configure as module if appropriate. | |
1022 | |
1023 * Makefile.in.in (modules/canna): Add dependency on lib-src (ellcc). | |
1024 | |
2940 | 1025 2005-09-18 Mike Alexander <mta@arbortext.com> |
1026 | |
1027 * configure.ac: Fix the cygwin, non-X build by adding XPM header | |
1028 and library files to XE_CFLAGS. Patch from Rick Rankin. | |
1029 | |
2938 | 1030 2005-09-17 Malcolm Purvis <malcolmp@xemacs.org> |
1031 | |
1032 * configure.in: Replace with warning to use autoconf 2.59. | |
1033 * configure.ac: Removed warning about the use of autoconf 2.59. | |
1034 | |
2931 | 1035 2005-09-14 Stephen J. Turnbull <stephen@xemacs.org> |
1036 | |
1037 * XEmacs 21.5.22 "cucumber" is released. | |
1038 | |
2867 | 1039 2005-07-20 Didier Verna <didier@xemacs.org> |
1040 | |
1041 * CHANGES-beta: Remove the face aliasing feature announcement. | |
1042 | |
2865 | 1043 2005-07-19 Didier Verna <didier@xemacs.org> |
1044 | |
1045 * CHANGES-beta: Announce the face aliasing feature. | |
1046 | |
2791 | 1047 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
1048 | |
1049 * XEmacs 21.5.21 "corn" is released. | |
1050 | |
2790 | 1051 2005-05-28 Stephen J. Turnbull <stephen@xemacs.org> |
1052 | |
1053 * configure.ac: Explain how to turn off KKCC, too. | |
1054 | |
1055 2005-05-19 Marcus Crestani <crestani@xemacs.org> | |
1056 | |
1057 * configure: | |
1058 * configure.ac: Enable new allocator and KKCC by default. | |
1059 | |
1060 2005-05-27 Stephen J. Turnbull <stephen@xemacs.org> | |
1061 | |
1062 * CHANGES-beta: Update for release. | |
1063 | |
2741 | 1064 2005-04-22 Malcolm Purvis <malcolmp@xemacs.org> |
1065 | |
1066 * configure.ac: Make srcdir absolute before calling | |
1067 AC_CONFIG_AUX_DIR_DEFAULT, include X headers for shape.h, | |
1068 terminate checking lines when testing for dynamic libraries. | |
1069 * configure: Regenerated. | |
1070 | |
2720 | 1071 2005-04-01 Marcus Crestani <crestani@xemacs.org> |
1072 | |
1073 The new allocator. | |
1074 | |
1075 New configure flag: `MC_ALLOC': | |
1076 | |
1077 * configure.ac (XE_COMPLEX_ARG_ENABLE): Add `--enable-mc-alloc' as | |
1078 a new configure flag. | |
1079 * configure.in (AC_INIT_PARSE_ARGS): Add `--mc-alloc' as a new | |
1080 configure flag. | |
1081 * configure.usage: Add description for `mc-alloc'. | |
1082 | |
1083 DUMP_IN_EXEC: | |
1084 | |
1085 * Makefile.in.in: Condition the installation of a separate dump | |
1086 file on !DUMP_ON_EXEC. | |
1087 * configure.ac (XE_COMPLEX_ARG_ENABLE): Add | |
1088 `--enable-dump-in-exec' as a new configure flag. | |
1089 * configure.ac: DUMP_IN_EXEC is define as default for PDUMP but | |
1090 not default for MC_ALLOC. | |
1091 * configure.in (AC_INIT_PARSE_ARGS): Add `--dump-in-exec' as a | |
1092 new configure flag. | |
1093 * configure.in: DUMP_IN_EXEC is define as default for PDUMP but | |
1094 not default for MC_ALLOC. | |
1095 * configure.usage: Add description for `dump-in-exec'. | |
1096 | |
2705 | 1097 2005-03-31 Jerry James <james@xemacs.org> |
1098 | |
1099 * configure.ac: Aidan's 2005-03-30 patch, but against | |
1100 configure.ac. | |
1101 | |
2701 | 1102 2005-03-30 Aidan Kehoe <kehoea@parhasard.net> |
1103 | |
1104 * configure: #include <X11/Intrinsic.h.> -> #include | |
2865 | 1105 <X11/Intrinsic.h>, thank you Robert Delius Royar. |
1106 | |
2694 | 1107 2005-03-15 Jerry James <james@xemacs.org> |
1108 | |
1109 * configure.ac: Include <X11/Intrinsic.h> when checking for | |
1110 <Xaw/XawInit.h> usability. | |
1111 | |
2692 | 1112 2005-03-23 Vin Shelton <acs@xemacs.org> |
1113 | |
1114 * configure.in: Remove -fno-gnu-linker option from Solaris | |
1115 dynodump builds; it doesn't do anything. | |
1116 | |
1117 Don't use 'head -1' - it's deprecated by coreutils-5.3.0 on some | |
1118 platforms. | |
1119 | |
2680 | 1120 2005-03-24 Aidan Kehoe <kehoea@parhasard.net> |
1121 | |
2865 | 1122 * configure: Regenerate. |
2680 | 1123 * configure.ac (XE_COMPLEX_ARG_ENABLE): --OPTION -> --with-OPTION |
2865 | 1124 in various docstrings and error messages. |
2680 | 1125 |
2667 | 1126 2005-03-15 Stephen J. Turnbull <stephen@xemacs.org> |
1127 | |
1128 * configure.ac (--with-cflags-optimization): | |
1129 (--with-cflags-debugging): | |
1130 If the user specifies them, use them, and don't make her beg. | |
1131 * configure.ac (Autodetect PNG): PNG & TIFF need -lz in AC_CHECK_LIB. | |
1132 | |
1133 2005-03-15 Malcolm Purvis <malcolmp@xemacs.org> | |
1134 | |
2865 | 1135 * configure.ac: Fix problems with OpenBSD /bin/sh. |
2667 | 1136 |
2663 | 1137 2005-03-13 Aidan Kehoe <kehoea@parhasard.net> |
1138 | |
1139 * configure.ac (TAB): Check $ac_cv_build, not $canonical, when | |
1140 working out whether to link against libossaudio.so on NetBSD. | |
1141 | |
2653 | 1142 2005-03-11 Stephen J. Turnbull <stephen@xemacs.org> |
1143 | |
1144 * XEmacs 21.5.20 "cilantro" is released. | |
1145 | |
2651 | 1146 2005-03-07 Malcolm Purvis <malcolmp@xemacs.org> |
1147 | |
1148 * .cvsignore: Added autom4te.cache. | |
1149 * aclocal.m4: Changes to support autoconf 2.59 | |
1150 * config.guess: | |
1151 * config.sub: Upgraded to the latest upstream version | |
1152 * configure.ac: Rewritten for autoconf 2.59 support. | |
1153 | |
2648 | 1154 2005-03-06 Malcolm Purvis <malcolmp@xemacs.org> |
1155 | |
1156 * INSTALL: | |
1157 * PROBLEMS: Change configure arguments to the new autoconf 2.5 | |
1158 style configure. | |
1159 | |
2625 | 1160 2005-03-01 Aidan Kehoe <kehoea@parhasard.net> |
1161 | |
2865 | 1162 * configure: Regenerated. |
2625 | 1163 * configure.in (XE_COMPUTE_RUNPATH): Check for the availability of |
2628 | 1164 XtRegisterDrawable. |
2625 | 1165 |
2609 | 1166 2005-02-22 Adrian Aichner <adrian@xemacs.org> |
1167 | |
1168 * info/dir: Update to content generated by Info-rebuild-dir. | |
1169 | |
2602 | 1170 2005-02-21 Stephen J. Turnbull <stephen@xemacs.org> |
1171 | |
1172 * version.sh (XEMACS_RELEASE_DATE): New version info variable. | |
1173 | |
3094 | 1174 * configure.in (XEMACS_RELEASE_DATE): |
1175 * configure.ac (XEMACS_RELEASE_DATE): | |
1176 Use it. | |
1177 | |
1178 * configure.ac (sound): | |
1179 AC_DEFINE_UNQUOTED seems OK, if it's not m4-quoted. | |
2602 | 1180 |
2594 | 1181 2005-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
1182 | |
1183 * XEmacs 21.5.19 "chives" is released. | |
1184 | |
2593 | 1185 2005-02-17 Stephen J. Turnbull <stephen@xemacs.org> |
1186 | |
1187 * CHANGES-beta: Update. | |
1188 | |
2564 | 1189 2005-02-03 Ben Wing <ben@xemacs.org> |
1190 | |
1191 * BUGS, README.packages: Delete, incorporate into FAQ. | |
1192 * README: Incorporate into FAQ. Delete everything but text | |
1193 pointing to FAQ. | |
1194 | |
2553 | 1195 2005-02-03 Jerry James <james@xemacs.org> |
1196 | |
1197 * configure.in: g++ 3.4.2 doesn't like -Wmissing-prototypes or | |
1198 -Wstrict-prototypes. | |
1199 | |
2536 | 1200 2005-01-31 Ben Wing <ben@xemacs.org> |
1201 | |
1202 * GETTING.GNU.SOFTWARE: Delete. | |
1203 * Makefile.in.in (SOURCES): | |
1204 Delete GETTING.GNU.SOFTWARE from SOURCES. | |
1205 * PROBLEMS: | |
1206 Delete reference to check_cygwin_setup.sh. | |
1207 | |
2512 | 1208 2005-01-26 Ben Wing <ben@xemacs.org> |
1209 | |
1210 * configure.in (AC_INIT_PARSE_ARGS): | |
1211 * configure.in (CANONICALIZE_PATH): | |
1212 * configure.in (TAB): | |
1213 * configure.usage: | |
1214 Add --with-optimization, cflags-optimization, | |
1215 cflags-debugging. Separate out optimization and debugging arguments. | |
1216 Document. | |
1217 | |
2491 | 1218 2005-01-21 Aidan Kehoe <kehoea@parhasard.net> |
1219 | |
1220 * configure: | |
2865 | 1221 * configure.in (XE_COMPUTE_RUNPATH): |
2491 | 1222 NetBSD can use Linux's sound API, but it needs an extra library at |
1223 link time to do so. | |
1224 | |
2427 | 1225 2004-12-07 Malcolm Purvis <malcolmp@xemacs.org> |
1226 | |
1227 * INSTALL: A POSIX compatible Make is no longer required for builds. | |
1228 * Makefile.in.in (RECURSIVE_MAKE): Removed. | |
1229 * Makefile.in.in (RECURSIVE_MAKE_ARGS): New. | |
1230 * configure.in (RECURSIVE_MAKE): Removed. | |
1231 * configure.in (RECURSIVE_MAKE_ARGS): New. | |
1232 Always refer to make as $(MAKE) and use $(RECURSIVE_MAKE_ARGS) for | |
1233 other parameters. This allows -j to work in GNU Make while | |
1234 removing need for POSIX compatible make on all systems. | |
1235 | |
2420 | 1236 2004-12-05 Ben Wing <ben@xemacs.org> |
1237 | |
1238 * README.packages: | |
1239 Fix error in specifying standard package location. | |
1240 Document --package-prefix. | |
1241 | |
2416 | 1242 2004-12-05 Ben Wing <ben@xemacs.org> |
1243 | |
1244 * configure.usage: | |
1245 * configure.in (AC_INIT_PARSE_ARGS): | |
1246 * configure.in (TAB): | |
1247 * configure.in (XE_COMPUTE_RUNPATH): | |
1248 * configure: | |
1249 Support --package-prefix and mmdf and pop arguments to --mail-locking. | |
1250 Document in configure.usage. | |
1251 | |
2389 | 1252 2004-11-12 Marcus Crestani <crestani@informatik.uni-tuebingen.de> |
1253 | |
1254 * configure: | |
1255 * configure.in: Make pdump default for Cygwin. | |
1256 | |
2388 | 1257 2004-11-12 Marcus Crestani <crestani@informatik.uni-tuebingen.de> |
1258 | |
1259 * Makefile.in.in (install-arch-dep): Fix installation for Cygwin. | |
1260 | |
2367 | 1261 2004-10-26 Ben Wing <ben@xemacs.org> |
1262 | |
1263 * configure.in (AC_INIT_NOTICE): | |
1264 * configure.in (TAB): | |
1265 * configure.in (XE_COMPUTE_RUNPATH): | |
1266 Turn off -Winline and -Wchar-subscripts. | |
1267 Use the right set of cflags when compiling modules. | |
1268 Rewrite ldap configuration to separate the inclusion of lber | |
1269 (needed in recent Cygwin) from the basic checks for the | |
1270 needed libraries. | |
1271 add a function for MAKE_JUNK_C; initially code was added to | |
1272 generate xemacs.def using this, but it will need to be rewritten. | |
1273 add an rm -f for junk.c to avoid weird Cygwin bug with cp -f onto | |
1274 an existing file. | |
1275 Sort list of auto-detected functions and eliminate unused checks for | |
1276 stpcpy, setlocale and getwd. | |
1277 Add autodetection of Cygwin scanf problems | |
1278 | |
2346 | 1279 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
1280 | |
1281 * XEmacs 21.5.18 "chestnut" is released. | |
1282 | |
2345 | 1283 2004-10-22 Stephen J. Turnbull <stephen@xemacs.org> |
1284 | |
1285 * CHANGES-beta: Update for release. | |
1286 | |
2315 | 1287 2004-09-29 Jerry James <james@xemacs.org> |
1288 | |
1289 * configure.in: Don't use -Wunused-parameter with g++. | |
1290 | |
2300 | 1291 2004-09-21 Malcolm Purvis <malcolmp@xemacs.org> |
1292 | |
1293 * configure.in: Unused parameter and variables warnings are GCC 3 | |
1294 or greater. | |
1295 | |
2286 | 1296 2004-09-14 Jerry James <james@xemacs.org> |
1297 | |
1298 * configure.in (TAB): Add unused parameter and variables warnings | |
1299 to gcc CFLAGS. | |
1300 | |
2283 | 1301 2004-09-20 Jerry James <james@xemacs.org> |
1302 | |
1303 * INSTALL: Update Canna description to reflect recent changes. | |
1304 | |
2263 | 1305 2004-09-11 Malcolm Purvis <malcolmp@xemacs.org> |
1306 | |
1307 * configure.in Check for sys/resource.h, sys/vlimit.h, getrlimit() | |
1308 and vlimit(). | |
1309 | |
2259 | 1310 2004-09-10 Malcolm Purvis <malcolmp@xemacs.org> |
1311 | |
1312 * INSTALL: A POSIX compatible Make is required for builds. | |
1313 * Makefile.in.in: Enable support for parallel builds. | |
1314 | |
2216 | 1315 2004-08-12 "Johann 'Myrkraverk' Oskarsson" <myrkraverk@users.sourceforge.net> |
1316 | |
1317 * config.guess: Identify PlayStation2. | |
1318 | |
2131 | 1319 2004-06-16 Stephen J. Turnbull <stephen@xemacs.org> |
1320 | |
1321 * configure.in: Character classes in globs don't work, die when | |
1322 GTK is mixed with other toolkits, protect comma in quoted message. | |
1323 | |
2128 | 1324 2004-06-14 Stephen J. Turnbull <stephen@xemacs.org> |
1325 | |
1326 * configure.in (Autodetection of Gdk libraries and includes): | |
1327 Don't allow mixing of GTK with other toolkits. | |
1328 | |
1329 2004-06-12 Stephen J. Turnbull <stephen@xemacs.org> | |
1330 | |
1331 * configure.in: Improve style of WARNINGs. | |
1332 | |
1333 2004-05-20 Stephen J. Turnbull <stephen@xemacs.org> | |
1334 | |
1335 * configure.in (HAVE_GPM): Die if GPM requested but not found. | |
1336 | |
2079 | 1337 2004-05-10 Jerry James <james@xemacs.org> |
1338 | |
1339 * aclocal.m4: Typo fix. | |
1340 * configure.in (XE_COMPUTE_RUNPATH): Add checks for shl_load and | |
1341 LTDL; unify the OS-specific checks into a case statement. | |
1342 | |
2050 | 1343 2004-04-30 Jerry James <james@xemacs.org> |
1344 | |
1345 * configure.in: Turn ICC warning 147 into an error to get a good | |
1346 XRegisterIMInstantiateCallback prototype. | |
1347 | |
2048 | 1348 2004-04-28 Jerry James <james@xemacs.org> |
1349 | |
1350 * configure.in: Get version information for both icc and icpc. | |
1351 | |
2029 | 1352 2004-04-08 Stephen J. Turnbull <stephen@xemacs.org> |
1353 | |
1354 * configure.in (GTK setup): Warn if other toolkits requested. | |
1355 | |
1356 2004-03-31 Stephen J. Turnbull <stephen@xemacs.org> | |
1357 | |
1358 * configure.in (Compiler feature macros): Kaarthik Sivakumar says | |
1359 _POSIX_C_SOURCE should be defined for FreeBSD 4.5 to 4.9 at least. | |
1360 | |
1361 2004-03-31 Stephen J. Turnbull <stephen@xemacs.org> | |
1362 | |
1363 * Makefile.in.in (install-arch-indep): make gzip-el now saves ~4MB. | |
1364 | |
2016 | 1365 2003-12-07 Olivier Galibert <galibert@pobox.com> |
1366 | |
1367 * Makefile.in.in: Don't install the dmp file when it's in the | |
1368 executable. | |
1369 | |
2009 | 1370 2004-04-12 Kaarthik Sivakumar <kaarthik@comcast.net> |
1371 | |
1372 * configure.in: Check for libmp dependencies before checking for | |
1373 the existence of the move function. | |
1374 | |
2006 | 1375 2004-03-04 Malcolm Purvis <malcolmpurvis@optushome.com.au> |
1376 | |
1377 * configure.in (src/Makefile): No longer include a special linker | |
1378 script for PowerPC Linux. Thanks to Stefan Bruda for reporting | |
1379 this bug. | |
1380 | |
1998 | 1381 2004-04-08 Stephen J. Turnbull <stephen@xemacs.org> |
1382 | |
1383 * configure.in (Compiler-specific hacks): Restore warning flags | |
1384 for XEMACS_CC if gcc. Report warning flags at compute time. | |
1385 | |
1997 | 1386 2004-04-07 Jerry James <james@xemacs.org> |
1387 | |
1388 * configure.in: FreeBSD MP needs -lcrypto. | |
1389 | |
1989 | 1390 2004-04-06 Jerry James <james@xemacs.org> |
1391 | |
1392 * configure.in: Change test -e to test -r for portability. | |
1393 | |
1985 | 1394 2004-04-06 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> |
1395 | |
1396 * configure.in (use_number_lib): Accepts no to disable bignums. | |
1397 * configure.usage: Document the "no" value. | |
1398 | |
1984 | 1399 2004-04-05 Jerry James <james@xemacs.org> |
1400 | |
1401 * configure.in (use_number_lib): New. Values are "gmp" or "mp". | |
1402 * configure.in: Use it. Report it. Check for size of a double. | |
1403 * configure.usage: Tell how to use use-number-lib. | |
1404 | |
1964 | 1405 2004-03-22 Stephen J. Turnbull <stephen@xemacs.org> |
1406 | |
1407 * XEmacs 21.5.17 "chayote" is released. | |
1408 | |
1955 | 1409 2004-03-18 Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> |
1410 | |
1411 * configure.in (Compiler feature macros): Define _POSIX_C_SOURCE | |
1412 for FreeBSD 4.9 to shut up viteno's compiler, and _XOPEN_SOURCE to | |
1413 500 since apparently we'll use it if available. | |
1414 | |
1415 2004-03-05 Stephen J. Turnbull <stephen@xemacs.org> | |
1416 | |
1417 * configure.in (libc detection): Fix progress message. | |
1418 | |
1922 | 1419 2004-02-21 Stephen J. Turnbull <stephen@xemacs.org> |
1420 | |
1421 * configure.in (CFLAGS): Do XE_CFLAGS before adding warning flags to | |
1422 CFLAGS. Thanks to Jerry James for reporting the bug. | |
1423 | |
1916 | 1424 2004-02-18 Stephen J. Turnbull <stephen@xemacs.org> |
1425 | |
1426 * configure.in (AC_INIT_PARSE_ARGS): Use Solaris-compatible `for'. | |
1922 | 1427 Thanks to Vin Shelton for noticing the bug, and Hrvoje Niksic for |
1428 the more elegant fix. | |
1916 | 1429 |
1889 | 1430 2004-01-28 Stephen J. Turnbull <stephen@xemacs.org> |
1431 | |
1432 * configure.in: Use XE_CFLAGS for XEMACS_CC. | |
1433 Kludge: warn about CC and XEMACS_CC not from same vendor (gcc only). | |
1434 Various comment fixups. | |
1435 Delete dead code for finding srcdir. | |
1436 | |
1437 * Makefile.in.in (clean): Force deletion of generated Lisp load files. | |
1438 | |
1439 2003-11-06 Stephen J. Turnbull <stephen@xemacs.org> | |
1440 | |
1441 * configure.in: Report cc and libc version info. Detection code | |
1442 by Valdis Kletnieks <Valdis.Kletnieks@vt.edu>. Tweaked for Debian. | |
1443 | |
1871 | 1444 2004-01-20 Jerry James <james@xemacs.org> |
1445 | |
1446 * configure.in: The icc compiler pretends to be gcc. It isn't. | |
1447 | |
1800 | 1448 2003-11-18 Jerry James <james@xemacs.org> |
1449 | |
1450 * configure.in: Check for the typeof extension. | |
1451 | |
1756 | 1452 2003-10-15 Jerry James <james@xemacs.org> |
1453 | |
1454 * aclocal.m4: Add icc (Intel compiler) support. | |
1455 * configure.in: Ditto. | |
1456 | |
1740 | 1457 2003-10-11 Jerry James <james@xemacs.org> |
1458 | |
1459 * configure.in: installexe.sh is under srcdir, not blddir. | |
1460 | |
1716 | 1461 2003-09-26 Steve Youngs <youngs@xemacs.org> |
1462 | |
1463 * XEmacs 21.5.16 "celeriac" is released. | |
1464 | |
1707 | 1465 2003-09-21 Jerry James <james@xemacs.org> |
1466 | |
1467 * configure.in: Remove detection of GNU DLD. | |
1468 * configure: Regenerate. | |
1469 | |
4010 | 1470 2003-09-20 Rodney Sparapani <rsparapa@mcw.edu> |
1697 | 1471 |
1472 * PROBLEMS: Propose bash as an alternative to buggy Solaris | |
1473 /bin/sh. | |
1474 | |
1696 | 1475 2003-09-20 Steve Youngs <youngs@xemacs.org> |
1476 | |
1477 * configure: Re-generate after Martin's configure.in patch. | |
1478 | |
1479 2003-09-20 Martin Buchholz <martin@xemacs.org> | |
1480 | |
1481 * configure.in: XEmacs failed to build on Solaris9. | |
1482 Solaris9 comes with /usr/demo/SOUND, but no headers or libraries | |
1483 therein. | |
1484 | |
1692 | 1485 2003-09-18 Steve Youngs <youngs@xemacs.org> |
1486 | |
1487 * configure: Re-generate after Martin's configure.in patch. | |
1488 | |
1489 2003-09-13 Martin Buchholz <martin@xemacs.org> | |
1490 | |
1491 * configure.in (OS_RELEASE): Add support for SunOS 5.10. | |
1492 On current OSes produced by Sun, `uname -r' prints "5.9". | |
1493 It seems likely that on future OSes, `uname -r' will print "5.10". | |
1494 We need to accept multi-digit release numbers. | |
1495 | |
1678 | 1496 2003-05-10 Andrew Begel <abegel@CS.Berkeley.EDU> |
1497 | |
1498 * aclocal.m4 (XE_SHLIB_STUFF): Use -bundle when testing the | |
1499 ability to build shared libraries, but use -bundle_loader in | |
1500 ellcc. Properly handle other flags for MacOS X. | |
2865 | 1501 |
1665 | 1502 2003-09-03 Steve Youngs <youngs@xemacs.org> |
1503 | |
1504 * XEmacs 21.5.15 "celery" is released. | |
1505 | |
1651 | 1506 2003-08-28 Jerry James <james@xemacs.org> |
1507 | |
1508 * configure.in: Link modules with -lstdc++ if g++ is used. | |
1509 | |
1648 | 1510 2003-08-28 Steve Youngs <youngs@xemacs.org> |
1511 | |
1512 * README.packages: Update. | |
1513 | |
1633 | 1514 2003-08-18 Jerry James <james@xemacs.org> |
1515 | |
1516 * Makefile.in.in (GENERATED_HEADERS): Add xemacs.def. | |
1517 * Makefile.in.in: Regenerate if xemacs.def.in.in is touched. | |
1518 * aclocal.m4 (XE_SHLIB_STUFF): Allow modules with Cygwin. | |
1519 * aclocal.m4 (cygwin_warn): Removed. | |
1520 * configure.in (XE_COMPUTE_RUNPATH): Process xemacs.def.in.in. | |
1521 | |
1617 | 1522 2003-08-12 Stephen J. Turnbull <stephen@xemacs.org> |
1523 | |
1524 * configure.usage (Window System): `lucid' option often means `Motif'. | |
1525 | |
1546 | 1526 2003-06-13 Stephen J. Turnbull <stephen@xemacs.org> |
1527 | |
1528 * configure.usage (--cflags-warning): Change underscore to hyphen. | |
1529 | |
1510 | 1530 2003-06-01 Steve Youngs <youngs@xemacs.org> |
1531 | |
1532 * XEmacs 21.5.14 "cassava" is released. | |
1533 | |
1491 | 1534 2003-05-20 Jerry James <james@xemacs.org> |
1535 | |
1536 * configure.in: Add src to MAKE_SUBDIR early for module builds for | |
1537 MacOSX and Windows; thanks to Andrew Begel. Set module makefile | |
1538 variables appropriately if --with-modules=no is specified. | |
1539 | |
1540 * configure: Regenerate. | |
1541 | |
1473 | 1542 2003-05-10 Steve Youngs <youngs@xemacs.org> |
1543 | |
1544 * XEmacs 21.5.13 "cauliflower" is released. | |
1545 | |
1470 | 1546 2003-05-10 Steve Youngs <youngs@xemacs.org> |
1547 | |
1548 * Revert this patch: | |
1549 2003-05-01 Andrew Begel <abegel@CS.Berkeley.EDU> | |
1550 | |
1551 * configure.in: Move module detection to after src/ is added to | |
1552 MAKE_SUBDIR. On MacOS X, building modules requires xemacs to | |
1553 already be built. | |
1554 * aclocal.m4 (XE_SHLIB_STUFF): Properly define ellcc flags for | |
1555 MacOS X. | |
1556 It was stopping certain libs from making their way into the | |
2865 | 1557 Makefiles. |
1470 | 1558 |
1559 * configure: Regenerate. | |
1560 | |
1464 | 1561 2003-05-09 Stephen J. Turnbull <stephen@xemacs.org> |
1562 | |
1563 * configure.in: Revert Steve Youngs's patch, and set default for | |
1564 ESD in the Defaults section. Improve comments. | |
1565 | |
1566 * configure: Regenerate. | |
1567 | |
1462 | 1568 2003-05-07 Steve Youngs <youngs@xemacs.org> |
1569 | |
1570 * configure.in: Default ESD sound to off. | |
1571 | |
1572 * configure.usage (--with-sound): Document ESD defaulting to off. | |
1573 | |
1574 * configure: Regenerate. | |
1575 | |
1457 | 1576 2003-05-05 Steve Youngs <youngs@xemacs.org> |
1577 | |
1578 * CHANGES.beta: Update. | |
1579 | |
1454 | 1580 2003-05-04 Steve Youngs <youngs@xemacs.org> |
1581 | |
1582 * configure: Regenerate. | |
1583 | |
1584 2003-05-04 Martin Buchholz <martin@xemacs.org> | |
1585 | |
1586 * configure.in: Don't look for Motif if it's already present in | |
1587 $x_includes and $x_libraries. | |
1588 | |
1452 | 1589 2003-05-01 Andrew Begel <abegel@CS.Berkeley.EDU> |
1590 | |
1591 * configure.in: Move module detection to after src/ is added to | |
1592 MAKE_SUBDIR. On MacOS X, building modules requires xemacs to | |
1593 already be built. | |
1594 * aclocal.m4 (XE_SHLIB_STUFF): Properly define ellcc flags for | |
1595 MacOS X. | |
1596 | |
1442 | 1597 2003-05-02 Stephen J. Turnbull <stephen@xemacs.org> |
1598 | |
1599 * configure.in (darwin): Collect random kludges in one place. | |
1600 (cygwin): Check for intptr_t in <sys/types.h>. | |
1601 (Berkeley db): Handle 4.1 functions decorated with version info. | |
1602 | |
1441 | 1603 2003-04-28 Stephen J. Turnbull <stephen@xemacs.org> |
1604 | |
1605 * PROBLEMS (Windows): New: auxiliary programs for Windows. | |
1606 | |
1607 2003-03-04 Stephen J. Turnbull <stephen@xemacs.org> | |
1608 | |
1609 * Makefile.in.in (TAGS tags): Make DEFUNed functions be tags. | |
1610 Patch by Martin Buchholz <martin@xemacs.org>. | |
1611 <15410.44105.753590.169241@gargle.gargle.HOWL> | |
1612 | |
1431 | 1613 2003-04-24 Steve Youngs <youngs@xemacs.org> |
1614 | |
1615 * XEmacs 21.5.12 "carrot" is released. | |
1616 | |
1427 | 1617 2003-04-24 Steve Youngs <youngs@xemacs.org> |
1618 | |
1619 * configure.in: Fix for building on openbsd. | |
1620 From Gregory Steuck <greg@nest.cx> | |
1621 | |
1622 * configure: Regenerate | |
1623 | |
1389 | 1624 2003-03-27 Stephen J. Turnbull <stephen@xemacs.org> |
1625 | |
1626 * PROBLEMS: Global substitution of .Xresources for .Xdefaults. | |
1627 | |
1384 | 1628 2003-03-25 Jerry James <james@eecs.ku.edu> |
1629 | |
1630 * configure.in: Add Andrew Begel's shared library support for | |
1631 MacOS X. | |
1632 | |
1375 | 1633 2003-03-18 Stephen J. Turnbull <stephen@xemacs.org> |
1634 | |
1635 * INSTALL: Give location of Darwin X11 downloads. | |
1636 | |
1349 | 1637 2003-02-09 Ville Skytt� <scop@xemacs.org> |
1638 | |
1639 * configure: Remove pkgdir and all references to it (unused). | |
1640 * configure.in: Ditto. | |
1641 * Makefile.in.in: Ditto. | |
1642 | |
1338 | 1643 2003-03-03 Stephen J. Turnbull <stephen@xemacs.org> |
1644 | |
1645 * INSTALL: Reorganize, synch to configure.usage. | |
1646 | |
1332 | 1647 2003-03-01 Ben Wing <ben@xemacs.org> |
1648 | |
1649 * PROBLEMS: | |
1650 * PROBLEMS (Note): | |
1651 * PROBLEMS (http): | |
1652 * PROBLEMS (IMPORTANT): | |
1653 Include nt/PROBLEMS and update. Add note about incremental | |
1654 linking badness. | |
1655 | |
1330 | 1656 2003-02-28 Ben Wing <ben@xemacs.org> |
1657 | |
1658 * Makefile.in.in (mostlyclean): | |
1659 * Makefile.in.in (clean): | |
1660 * Makefile.in.in (top_distclean): | |
1661 * Makefile.in.in (distclean): | |
1662 Move src deletions to src/Makefile.in.in. | |
1663 | |
1318 | 1664 2003-02-20 Ben Wing <ben@xemacs.org> |
1665 | |
1666 * PROBLEMS: | |
1667 * PROBLEMS (event-stream.c): Removed. | |
1668 * PROBLEMS (ABSTRACT): | |
1669 * PROBLEMS (patch.): | |
1670 * PROBLEMS (Note): | |
1671 Add comment about Cygwin, unexec and sysmalloc. | |
1672 Move some non-general stuff out of general. | |
1673 Make a section for x86. | |
2865 | 1674 |
1318 | 1675 * configure.in (AC_INIT_NOTICE): |
1676 * configure.in (XE_COMPUTE_RUNPATH): | |
1677 Add check for broken alloca in funcalls. | |
1678 | |
1314 | 1679 2003-02-19 Ben Wing <ben@xemacs.org> |
1680 | |
1681 * Makefile.in.in: | |
1682 * Makefile.in.in (GENERATED_HEADERS): | |
1683 * Makefile.in.in (GENERATED_LISP): Removed. | |
1684 * Makefile.in.in (.NO_PARALLEL): | |
1685 * Makefile.in.in (beta): | |
1686 * Makefile.in.in (dist): | |
1687 * Makefile.in.in (batch): Removed. | |
1688 * Makefile.in.in (batch_packages): Removed. | |
1689 * Makefile.in.in (check): New. | |
1690 * Makefile.in.in (finder): Removed. | |
1691 * Makefile.in.in (check-features): New. | |
1692 * Makefile.in.in (.PHONY): | |
1693 * Makefile.in.in (install-only): | |
1694 * Makefile.in.in (tagslisp): | |
1695 * Makefile.in.in (info): | |
1696 Major surgery. Move all stuff related to building anything in the | |
1697 src/ directory into src/. Simplify the dependencies -- everything | |
1698 in src/ is dependent on the single entry `src' in MAKE_SUBDIRS. | |
1699 Remove weirdo targets like `all-elc[s]', dump-elc[s], etc. | |
1700 | |
1307 | 1701 2003-02-16 Steve Youngs <youngs@xemacs.org> |
1702 | |
1703 * XEmacs 21.5.11 "cabbage" is released. | |
1704 | |
1303 | 1705 2003-02-15 Ben Wing <ben@xemacs.org> |
1706 | |
1707 * Makefile.in.in (batch_packages): Run update-elc-2 with -no-autoloads | |
1708 to avoid multiple autoload-loading problem. | |
1709 * configure.usage (--error-checking): Document quick-build better. | |
1710 | |
1294 | 1711 2003-01-28 Martin Buchholz <martin@xemacs.org> |
1712 | |
1713 * configure.in (opsys): (AIX specific) | |
1714 Use opsys=aix4-2 for AIX 5 and all future versions. | |
1715 | |
1283 | 1716 2003-02-10 Stephen J. Turnbull <stephen@xemacs.org> |
1717 | |
1718 * INSTALL: Recommend Mule, deprecate stripped binaries. | |
1719 | |
1259 | 1720 2003-02-05 Stephen J. Turnbull <stephen@xemacs.org> |
1721 | |
1722 * configure.in (DLSYM_NEEDS_UNDERSCORE): Define on darwin. | |
1723 | |
1724 * configure.in: Fix --srcdir processing. | |
1725 | |
1245 | 1726 2003-01-31 Stephen J. Turnbull <stephen@xemacs.org> |
1727 | |
1728 * PROBLEMS: Collect Motif information in one place. | |
1729 | |
1232 | 1730 2002-10-19 Stephen Turnbull <stephen@xemacs.org> |
1731 | |
1732 * Makefile.in.in (clean): Delete auto-autoloads.e* and custom-load.* | |
1733 in lisp, lisp/mule, and modules. | |
1734 | |
1222 | 1735 2003-01-14 Jerry James <james@xemacs.org> |
1736 | |
1737 * PROBLEMS: Describe Steve Youngs' problem with the PostgreSQL | |
1738 module and --error-checking=all. | |
1739 | |
1214 | 1740 2003-01-13 Ilya Golubev <golubev@xemacs.org> |
1741 | |
1742 * etc/photos/golubev.png, etc/photos/golubevm.png: New. | |
1743 | |
4010 | 1744 2003-01-12 Mike Sperber <mike@xemacs.org> |
1202 | 1745 |
1746 * configure.in: Check for strupr and strlwr. | |
1747 | |
1748 2002-12-16 Ben Wing <ben@xemacs.org> | |
1749 | |
1750 * INSTALL (Rationale): | |
1751 * configure.in (XE_COMPUTE_RUNPATH): | |
1752 * configure.usage (Usage): | |
1753 * configure.usage (--xemacs-compiler): | |
1754 * configure.usage (--srcdir): | |
1755 * configure.usage (--with-prefix): | |
1756 * configure.usage (--bindir): New. | |
1757 * configure.usage (--datadir): New. | |
1758 * configure.usage (--statedir): New. | |
1759 * configure.usage (--libdir): New. | |
1760 * configure.usage (--infodir): New. | |
1761 * configure.usage (--mandir): New. | |
1762 * configure.usage (--lispdir): New. | |
1763 * configure.usage (--sitelispdir): New. | |
1764 * configure.usage (--etcdir): New. | |
1765 * configure.usage (--lockdir): New. | |
1766 * configure.usage (--archlibdir): New. | |
1767 * configure.usage (--docdir): New. | |
1768 * configure.usage (--moduledir): New. | |
1769 * configure.usage (--with-site-lisp): New. | |
1770 * configure.usage (--with-site-modules): New. | |
1771 * configure.usage (--package-path): New. | |
1772 * configure.usage (--infopath): New. | |
1773 * configure.usage (--with-xmu): | |
1774 * configure.usage (--with-tty): | |
1775 * configure.usage (--with-gif): | |
1776 * configure.usage (--native-sound-lib): | |
1777 * configure.usage (--with-xim): New. | |
1778 * configure.usage (--with-clash-detection): New. | |
1779 * configure.usage (--with-database): | |
1780 * configure.usage (--mail-locking): | |
1781 * configure.usage (--with-ipv6-cname): Removed. | |
1782 * configure.usage (--error-checking): | |
1783 Redo usage message more logically, fix some problems. In configure, | |
1784 when outputting the compilation options, put in a big ugly warning | |
1785 about using union-type, since it's been known to trigger so many | |
1786 compiler bugs, invariably leading to weird crashes. | |
1787 | |
1187 | 1788 2003-01-04 Steve Youngs <youngs@xemacs.org> |
1789 | |
1790 * XEmacs 21.5.10 "burdock" is released. | |
1791 | |
1157 | 1792 2002-07-08 Andy Piper <andy@xemacs.org> |
1793 | |
1794 * Makefile.in.in (src/sheap-adjust.h): reset back to zero. Making | |
1795 this anything other than zero was misguided. | |
1796 | |
1155 | 1797 2002-12-04 Stephen J. Turnbull <stephen@xemacs.org> |
1798 | |
1799 * configure.in: Make --pdump default per opsys; move Darwin's | |
1800 setting and change Linux's default to yes. | |
1801 | |
1123 | 1802 2002-11-27 Ben Wing <ben@xemacs.org> |
1803 | |
1804 * configure.in (CANONICALIZE_PATH): | |
1805 * configure.in (TAB): | |
1806 Check for GCC version and only use -Wpacked in v3. | |
1807 | |
1117 | 1808 2002-10-14 Jerry James <james@xemacs.org> |
1809 | |
1810 * configure.in: Remove LISP_FLOAT_TYPE definition. | |
1811 | |
1111 | 1812 2002-11-17 Ben Wing <ben@xemacs.org> |
1813 | |
1814 * aclocal.m4 (cygwin_warn): New. | |
1815 Disable shared library modules under Cygwin for the moment, | |
1816 since we need some more tricky coding done and I don't have the | |
1817 time right now. | |
1818 | |
1819 * configure.in: | |
1820 * configure.in (need_modules_common): New. | |
1821 * configure.in (quoted_arguments): | |
1822 * configure.in (stack_trace_eye_catcher): | |
1823 * configure.in (CPP): | |
1824 * configure.in (CFLAGS): New. | |
1825 * configure.in (bitmapdir): | |
1826 * configure.in (ldap_libs): | |
1827 * configure.in (postgresql_libs): | |
1828 * configure.in (all_widgets): | |
1829 * configure.in (SUBDIR_MAKEFILES): | |
1830 * configure.in (RECURSIVE_MAKE): | |
1831 * configure.in (null_string): | |
1832 * configure.in (Mail): | |
1833 * configure.usage (--cflags): | |
1834 * configure.usage (--cflags_warning): New. | |
1835 | |
1836 Make sure we use the compiler in --xemacs-compiler to compile | |
1837 the modules, too, or we will get link errors when trying to do | |
1838 a C++ build. | |
1839 | |
1840 Create a directory modules/common, in which is code common to all | |
1841 the module Makefiles and configure.ac's. We create a separate | |
1842 directory because we may be building in a separate source tree, | |
1843 and need a way of accessing the common code (at least in the case | |
1844 of the Makefile). Either we create symlinks for all necessary | |
1845 files or one just for the directory -- the latter is more robust. | |
1846 | |
1847 Add code to create the symlink for modules/common as necessary. | |
1848 When creating the modules Makefiles, append the common code. | |
1849 | |
1850 Check for wcslen/wcscmp; apparently missing sometimes in Cygwin and | |
1851 G++ v3. | |
1852 | |
1853 Output correct compiler name in messages. | |
1854 | |
1855 Separate warning flags from other C flags so that user-specified | |
1856 --cflags doesn't disable warnings. | |
1857 | |
1100 | 1858 2002-11-12 Stephen J. Turnbull <stephen@xemacs.org> |
1859 | |
1860 * PROBLEMS (Running/Linux): Lesstif 0.93.36 info, from F. McIngvale. | |
1861 | |
1862 2002-11-12 Stephen J. Turnbull <stephen@xemacs.org> | |
1098 | 1863 |
1864 * PROBLEMS: Typo fix. | |
1865 | |
1092 | 1866 2002-10-31 John Paul Wallington <jpw@shootybangbang.com> |
1867 | |
2865 | 1868 * info/dir (File): button1 on a highlighted word doesn't |
1092 | 1869 follow that cross-reference. |
1870 | |
1871 2002-10-31 Stephen J. Turnbull <stephen@xemacs.org> | |
1872 | |
1873 * PROBLEMS (Running/IRIX): Irix 6.5 coredumps. Thanks, Valdis. | |
1874 | |
1875 2002-10-19 Stephen Turnbull <stephen@xemacs.org> | |
1876 | |
1877 * Makefile.in.in (clean): Delete auto-autoloads.e* and custom-load.* | |
1878 in lisp, lisp/mule, and modules. | |
1879 ChangeLog: Fix my bogus email addresses. | |
1880 | |
1070 | 1881 2002-10-25 Stephen J. Turnbull <stephen@xemacs.org> |
1882 | |
1883 * configure.in (Check for POSIX functions): New section head. | |
1884 getaddrinfo is detected on HP-UX 11.XX, but appears to be | |
1885 non-functional. Disable it. Based on work by Darryl Okahata. | |
2865 | 1886 |
1092 | 1887 2002-10-18 Stephen J. Turnbull <stephen@xemacs.org> |
1058 | 1888 |
1889 * PROBLEMS (Running/Cygwin): "No cygXpm-noX" fatal error. | |
1890 | |
1092 | 1891 2002-10-17 Stephen J. Turnbull <stephen@xemacs.org> |
1056 | 1892 |
1893 * PROBLEMS (Missing charsets): Remove ambiguity. | |
1894 | |
1045 | 1895 2002-10-10 Stephen J. Turnbull <stephen@xemacs.org> |
1896 | |
1897 * INSTALL (PREREQUISITES): Recommend Texinfo 4.2. | |
1898 | |
1042 | 1899 2002-09-27 Stephen J. Turnbull <stephen@xemacs.org> |
1900 | |
1901 * PROBLEMS (Running, General): Missing charset in FontSet warnings. | |
1902 | |
1036 | 1903 2002-10-08 Stephen J. Turnbull <stephen@xemacs.org> |
1904 | |
1905 * PROBLEMS (MacOS/X): Describe stack limitation. | |
1906 (Digital Unix): Generalize to all regexp-using applications. | |
1907 * INSTALL (PREQUISITES): Mention MacOS/X stack limitation. | |
1908 (PROBLEMS): Point to PROBLEMS file for build notes. | |
1909 Thanks to Skip Montanaro for the report. | |
1910 | |
1011 | 1911 2002-09-20 Steve Youngs <youngs@xemacs.org> |
1912 | |
1913 * Makefile.in.in (TAGS tags): Descend into the modules directory | |
1914 as well. | |
1915 | |
1009 | 1916 2002-09-20 Stephen J. Turnbull <stephen@xemacs.org> |
1917 | |
1918 * PROBLEMS: AIX memcpy MACRO/#ifdef USE_KKCC lossage. Thx, Valdis! | |
1919 | |
997 | 1920 2002-08-08 Jerry James <james@xemacs.org> |
1921 | |
1922 * Makefile.in.in (install-arch-dep): Install internal modules and | |
1923 the corresponding autoload file. | |
1924 * configure: Regenerate. | |
1925 * configure.in: Detect module support early. | |
1926 Define variables to be substituted in internal Makefiles. | |
1927 Use ldap_libs instead of LIBS for LDAP libraries. | |
1928 Use postgresql_libs instead of LIBS for PostgreSQL libraries. | |
1929 Introduce ld_libs_module for seamless module/no-module support. | |
1930 | |
981 | 1931 2002-08-30 Steve Youngs <youngs@xemacs.org> |
1932 | |
1933 * XEmacs 21.5.9 "brussels sprouts" is released. | |
1934 | |
975 | 1935 2002-08-16 Steve Youngs <youngs@xemacs.org> |
1936 | |
1937 * version.sh (xemacs_extra_name): New var to identify XEmacs | |
1938 version > release < next release. ie, release+cvs. | |
1939 | |
2865 | 1940 * configure.in: Test for xemacs_extra_name. |
975 | 1941 |
1942 * configure: Re-generate. | |
1943 | |
974 | 1944 2002-08-22 Ville Skytt� <ville.skytta@xemacs.org> |
1945 | |
1946 * configure.usage: Reorder usage message to clarify what widgets | |
1947 are supported and what aren't. | |
1948 | |
957 | 1949 2002-08-10 Stephen J. Turnbull <stephen@xemacs.org> |
1950 | |
1951 * PROBLEMS (General advice): Define runtime and build problems. | |
1952 | |
1953 2002-07-24 Stephen J. Turnbull <stephen@xemacs.org> | |
1954 | |
1955 * PROBLEMS (Running, Linux): Rewrite "Hannibal Lecter" ld stuff. | |
1956 | |
933 | 1957 2002-07-27 Steve Youngs <youngs@xemacs.org> |
1958 | |
1959 * XEmacs 21.5.8 "broccoli" is released. | |
1960 | |
4010 | 1961 2002-07-09 Mike Sperber <mike@xemacs.org> |
925 | 1962 |
2865 | 1963 * configure.usage: |
925 | 1964 * configure.in: Add --use-kkcc option for new GC algorithms. |
1965 | |
917 | 1966 2002-06-04 Jerry James <james@xemacs.org> |
1967 | |
1968 * configure.usage: Identify --with-modules as autodetecting. | |
1969 | |
915 | 1970 2002-07-04 Stephen J. Turnbull <stephen@xemacs.org> |
1971 | |
1972 * PROBLEMS: Add two basic configuration questions. | |
1973 | |
4010 | 1974 2002-07-08 Mike Sperber <mike@xemacs.org> |
911 | 1975 |
1976 * configure.in: Test for wchar.h. | |
1977 | |
894 | 1978 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
1979 | |
1980 * XEmacs 21.5.7 "broccoflower" is released. | |
1981 | |
892 | 1982 2002-07-02 Stephen J. Turnbull <stephen@xemacs.org> |
1983 | |
1984 * PROBLEMS (Running XEmacs; General): Xref FAQ Q3.10.6. | |
1985 | |
864 | 1986 2002-05-22 Andy Piper <andy@xemacs.org> |
1987 | |
1988 * build-msw-release.sh (TMPINSTALL): install to a tmpdir so that | |
1989 xemacs can be running while we build a dist. | |
1990 | |
1991 2002-05-07 Andy Piper <andy@xemacs.org> | |
1992 | |
1993 * configure.in: undo autoconf 2.5x change. | |
1994 | |
1995 2002-04-26 Andy Piper <andy@xemacs.org> | |
1996 | |
1997 * configure.in: make sure that a combined X and windows build gets | |
1998 widgets. | |
1999 | |
2000 2002-04-26 Andy Piper <andy@xemacs.org> | |
2001 | |
2002 * configure.in: update to support autoconf 2.5x from Andreas | |
2003 Schwab <schwab@suse.de> and/or Werner Fink <werner@suse.de>. | |
2004 | |
2005 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> | |
2006 | |
2007 * etc/sample.init.el: Fix comment typo about resize-minibuffer. | |
2008 | |
2009 * etc/sample.init.el: Add description of initialization process, | |
2010 the custom.el file, and code to load custom.el early instead of | |
2011 late. | |
2012 | |
2013 2002-04-22 Hrvoje Niksic <hniksic@xemacs.org> | |
2014 | |
2015 * etc/photos/hniksic.png, etc/photos/hniksic.png: Update. | |
2016 | |
2017 2002-04-25 Mike Fabian <mfabian@suse.de> | |
2018 | |
2019 * configure.in: add option moduledir as mentioned in ./configure | |
2020 --help | |
2021 | |
2022 2001-04-21 Martin Buchholz <martin@xemacs.org> | |
2023 | |
2024 * configure.in: Detect MacOS/X "Darwin". | |
2025 Thanks to Greg Parker <gparker@cs.stanford.edu>. | |
2865 | 2026 |
864 | 2027 2002-03-30 Steve Youngs <youngs@xemacs.org> |
2028 | |
2029 * etc/package-index.LATEST.pgp: Update to current reality. | |
2030 | |
2031 2002-02-28 Stephen J. Turnbull <stephen@xemacs.org> | |
2032 | |
2033 * etc/TUTORIAL.se: New from Mats Lidell. | |
2034 | |
2035 2002-01-07 Jan Vroonhof <jan@xemacs.org> | |
2036 | |
2037 * configure.in: Make explicit "--with-widgets" mean "=yes". | |
2038 If "--with-widgets=yes" autodetect athena. | |
2039 | |
2040 2001-12-29 Steve Youngs <youngs@xemacs.org> | |
2041 | |
2042 * etc/package-index.LATEST.pgp: Update. | |
2043 | |
2044 2001-12-13 William M. Perry <wmperry@gnu.org> | |
2045 | |
2046 * configure.in (GTK): add -Wno-shadow. | |
2865 | 2047 |
864 | 2048 2002-01-23 Jarl Friis <jarl@diku.dk> |
2049 | |
2050 * etc/BETA (http): Informing of xemacs-patches mailing list. Added | |
2051 note on patch etiquette. | |
2052 | |
853 | 2053 2001-03-26 Paul Stodghill <stodghil@cs.cornell.edu> |
2054 | |
2055 * configure.in: Don't #define __STDC__ in confdefs.h | |
2056 | |
846 | 2057 2002-02-28 Malcolm Purvis <malcolmpurvis@optushome.com.au> |
2058 | |
2059 * configure.in: Protect nocomboreloc linker arguments to avoid | |
2060 problem on the ppc. | |
2061 | |
845 | 2062 2002-05-17 Stephen J. Turnbull <stephen@xemacs.org> |
2063 | |
2064 * PROBLEMS: Describe "Hannibal Lecter" crash on Linux. Reorder | |
2065 Linux runtime issues section. | |
2066 * INSTALL: Improve description of mail locking. | |
2067 | |
835 | 2068 2002-05-04 Stephen J. Turnbull <stephen@xemacs.org> |
2069 | |
2070 * PROBLEMS (General): Decribe failed AUTH with EFS. | |
2071 | |
828 | 2072 2002-04-23 Olivier Galibert <galibert@pobox.com> |
2073 | |
2074 * configure.in: Fix the "error checking" warning. | |
2075 | |
826 | 2076 2002-05-05 Ben Wing <ben@xemacs.org> |
2077 | |
2078 * README.packages: Update info about --package-path. | |
2079 | |
814 | 2080 2002-04-14 Ben Wing <ben@xemacs.org> |
2081 | |
2082 * TODO.ben-mule-21-5: | |
2083 * TODO.ben-mule-21-5 (Priority): New. | |
2084 Update. | |
2085 | |
808 | 2086 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
2087 | |
2088 * XEmacs 21.5.6 "bok choi" is released. | |
2089 | |
803 | 2090 2002-04-05 Stephen J. Turnbull <stephen@xemacs.org> |
2091 | |
2092 * CHANGES-beta: Update for release. | |
2093 | |
801 | 2094 2002-03-31 Ben Wing <ben@xemacs.org> |
2095 | |
2096 * Makefile.in.in (all): | |
2097 * Makefile.in.in (finder): | |
2098 * Makefile.in.in (Makefile): | |
2099 * Makefile.in.in (SOURCES): | |
2100 Try to make the Makefile notice if its source Makefile.in.in is | |
2101 changed, and regenerate and run itself. | |
2102 | |
2103 Use a bigger default SHEAP_ADJUSTMENT on Cygwin; otherwise you | |
2104 can't compile under Mule if a Lisp file has changed. (can't run | |
2105 temacs) | |
2106 | |
2107 * TODO.ben-mule-21-5 (bugs): update. | |
2108 | |
800 | 2109 2002-03-31 Ben Wing <ben@xemacs.org> |
2110 | |
2111 * TODO.ben-mule-21-5 (bugs): Update. | |
2865 | 2112 |
800 | 2113 * configure.in (USAGE_ERROR): |
2114 * configure.in (CANONICALIZE_PATH): | |
2115 * configure.in (XE_COMPUTE_RUNPATH): | |
2116 Fix for new error-checking types. | |
2117 | |
793 | 2118 2002-03-28 Ben Wing <ben@xemacs.org> |
2119 | |
2120 * etc/ChangeLog: New file. | |
2121 | |
2122 Separated out all entries for etc/ into their own ChangeLog. | |
2123 Includes entries for the following files: | |
2124 | |
2125 etc/BABYL, etc/BETA, etc/CHARSETS, etc/DISTRIB, etc/Emacs.ad, | |
2126 etc/FTP, etc/GNUS-NEWS, etc/GOATS, etc/HELLO, etc/INSTALL, | |
2127 etc/MACHINES, etc/MAILINGLISTS, etc/MSDOS, etc/MYTHOLOGY, etc/NEWS, | |
2128 etc/OXYMORONS, etc/PACKAGES, etc/README, etc/TUTORIAL, | |
2129 etc/TUTORIAL.de, etc/TUTORIAL.ja, etc/TUTORIAL.ko, etc/TUTORIAL.se, | |
2130 etc/aliases.ksh, etc/altrasoft-logo.xpm, etc/check_cygwin_setup.sh, | |
2131 etc/custom/example-themes/europe-theme.el, | |
2132 etc/custom/example-themes/ex-custom-file, | |
2133 etc/custom/example-themes/example-theme.el, etc/e/eterm.ti, | |
2134 etc/edt-user.doc, etc/enriched.doc, etc/etags.1, etc/gnuserv.1, | |
2135 etc/gnuserv.README, etc/package-index.LATEST.gpg, | |
2136 etc/package-index.LATEST.pgp, etc/photos/jan.png, etc/recycle.xpm, | |
2137 etc/refcard.tex, etc/sample.Xdefaults, etc/sample.emacs, | |
2138 etc/sgml/CATALOG, etc/sgml/HTML32.dtd, etc/skk/SKK.tut.E, | |
2139 etc/smilies/Face_ase.xbm, etc/smilies/Face_ase2.xbm, | |
2140 etc/smilies/Face_ase3.xbm, etc/smilies/Face_smile.xbm, | |
2141 etc/smilies/Face_weep.xbm, etc/sounds, etc/toolbar, | |
2142 etc/toolbar/workshop-cap-up.xpm, etc/xemacs-ja.1, etc/xemacs.1, | |
2143 etc/yow.lines, etc\BETA, etc\NEWS, etc\README, etc\TUTORIAL, | |
2144 etc\TUTORIAL.de, etc\check_cygwin_setup.sh, etc\sample.init.el, | |
2145 etc\unicode\README, etc\unicode\mule-ucs\*, etc\unicode\other\* | |
2146 | |
2147 2002-03-24 Ben Wing <ben@xemacs.org> | |
2148 | |
2149 * TODO.ben-mule-21-5 (bugs): | |
2150 * TODO.ben-mule-21-5 (Signaling): New. | |
2151 Add stuff from Frank Schmitt. | |
2152 | |
788 | 2153 2002-03-20 Ben Wing <ben@xemacs.org> |
2154 | |
2155 * TODO.ben-mule-21-5: | |
2156 * TODO.ben-mule-21-5 (bugs): | |
2157 Create bug list for latest problems. | |
2158 | |
781 | 2159 2002-03-18 Ben Wing <ben@xemacs.org> |
2160 | |
2161 * README (http): | |
2162 Include a long, long description of the suggested directory layout | |
2163 for developing XEmacs. This should probably go as part of a | |
2164 larger document, a "Getting Started with Developing XEmacs". #### | |
2165 Does such a document exist? | |
2166 | |
2167 2002-03-18 Ben Wing <ben@xemacs.org> | |
2168 | |
2169 * Some ChangeLog entries from stuff that got applied long ago | |
2170 never got checked in, due to the nasty SCCS "oops, i forgot again | |
2171 ..." bug. | |
2172 | |
2173 2001-05-04 Ben Wing <ben@xemacs.org> | |
2174 | |
2175 * PROBLEMS: | |
2176 * PROBLEMS (Note): | |
2177 Correct general info about init file. | |
2178 Fix up Cygwin, Windows sections. | |
2179 | |
777 | 2180 2002-03-15 Ben Wing <ben@xemacs.org> |
2181 | |
2182 * configure.in (XE_COMPUTE_RUNPATH): | |
2183 check for sys/times.h. | |
2184 | |
776 | 2185 2002-03-15 Ben Wing <ben@xemacs.org> |
2186 | |
2187 * Makefile.in.in (batch): | |
2188 * Makefile.in.in (batch_packages): | |
2189 * Makefile.in.in (finder): | |
2190 * Makefile.in.in (check-features): | |
2191 * Makefile.in.in (install): | |
2192 Use -no-packages to avoid problems with package files shadowing | |
2193 core files (e.g. unicode.el in mule-ucs). | |
2194 | |
774 | 2195 2002-03-12 Ben Wing <ben@xemacs.org> |
2196 | |
3322 | 2197 * The Great Mule Merge of March 2002: |
2198 see node by that name in the Internals Manual. | |
774 | 2199 |
768 | 2200 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
2201 | |
2202 * XEmacs 21.5.5 "beets" is released. | |
2203 | |
762 | 2204 2002-03-05 Stephen J. Turnbull <stephen@xemacs.org> |
2205 | |
2206 * CHANGES-beta: Prune pre-21.5 information. | |
2207 | |
726 | 2208 2002-01-07 Jan Vroonhof <jan@xemacs.org> |
2209 | |
2210 * configure.in: Make explicit "--with-widgets" mean "=yes". | |
2211 If "--with-widgets=yes" autodetect athena. | |
2212 | |
725 | 2213 2002-01-08 Stephen J. Turnbull <stephen@xemacs.org> |
2214 | |
2215 * XEmacs 21.5.4 "bamboo" is released. | |
2216 | |
724 | 2217 2001-05-17 Andrew Begel <abegel@eecs.berkeley.edu> |
2218 | |
2219 * aclocal.m4 (LTLD): Don't use "gcc", use the ld reported by gcc. | |
2220 | |
2221 2001-08-19 Charles Wilson <cwilson@ece.gatech.edu> | |
2222 | |
2223 * configure.in (for graphics libraries): Detect Cygwin xpm-nox. | |
2224 | |
2225 2001-04-14 Gordon Sadler <gbsadler1@lcisp.com> | |
2226 | |
2227 * configure.in: Add GTK_CFLAGS to CPPFLAGS for glade.h check. | |
2228 | |
2229 2001-07-01 Alexey Mahotkin <alexm@hsys.msk.ru> | |
2230 | |
2231 * configure.in (option processing): with_widgets=m is ambiguous; | |
2232 don't allow it. | |
2233 (AC_CHECKING for the Athena widgets): Don't check for Athena when | |
2234 with_widgets=no. | |
2235 | |
2236 2001-07-22 Stephen J. Turnbull <stephen@xemacs.org> | |
2237 | |
2238 * configure.usage: Various documentation improvements. | |
2239 | |
2240 * configure.in (--with-ipv6-cname): New Boolean option. Defaults on. | |
2241 * configure.usage: | |
2242 * PROBLEMS (IPv6 CNAME lookup): | |
2243 Document it. | |
2244 | |
721 | 2245 2002-01-02 Adrian Aichner <adrian@xemacs.org> |
2246 | |
2247 * info/dir (File): Reword entry for Emodules according to | |
2248 ../man/emodules.texi. | |
2249 | |
705 | 2250 2001-12-18 Adrian Aichner <adrian@xemacs.org> |
2251 | |
2252 * info\.cvsignore: Correct pattern to match all info files. | |
2253 | |
701 | 2254 2001-12-16 Adrian Aichner <adrian@xemacs.org> |
2255 | |
2256 * info\.cvsignore: Info files are generated, so let's ignore them | |
2257 all. | |
2258 | |
699 | 2259 2001-12-15 Adrian Aichner <adrian@xemacs.org> |
2260 | |
2261 * info\dir (File): Update version to 21.5. | |
2262 | |
668 | 2263 2001-08-29 Jered Floyd <jered@MIT.EDU> |
2264 | |
2265 * configure.in (moduledir,sitemoduledir,archlibdir): | |
2266 Place arch-specific files under ${libdir}, not under ${datadir}. | |
2267 | |
667 | 2268 2001-09-25 Didier Verna <didier@xemacs.org> |
2269 | |
2270 * configure.ac: new. Autoconf 2.5x guard. | |
2271 | |
708 | 2272 2001-11-21 Robert Pluim <rpluim@bigfoot.com> |
2273 | |
2274 * PROBLEMS (Sun/Solaris): Document fix for Motif related crashes | |
2275 | |
2276 2001-12-15 Stephen J. Turnbull <stephen@xemacs.org> | |
2277 | |
2278 * configure.in (Miscellaneous Flags): test for -z nocombreloc, | |
2279 instead of -z combreloc, to avoid confusing Solaris. | |
2280 | |
2281 2001-11-24 Stephen J. Turnbull <stephen@xemacs.org> | |
2282 | |
2283 * configure.usage: Makefile.in -> Makefile.in.in. | |
2284 | |
2285 2001-11-21 Stephen J. Turnbull <stephen@xemacs.org> | |
2286 | |
2287 * Makefile.in.in: HP-UX needs LDFLAGS. From Lutz Jaenicke | |
2288 <Lutz.Jaenicke@aet.TU-Cottbus.DE>. | |
2289 | |
2290 2001-11-17 Stephen J. Turnbull <stephen@xemacs.org> | |
2291 | |
2292 * configure.in: Fix typos in comments. | |
2293 * (Miscellaneous flags): Use -z nocombreloc if supported and !pdump. | |
2294 * (Installation): Suggest pdump instead of -z nocomboreloc. | |
2295 * configure.usage: Document --quick-build. | |
2296 | |
2297 2001-10-30 Stephen J. Turnbull <stephen@xemacs.org> | |
2298 | |
2299 * configure.in: Typo in reference to with_ipv6_cname. | |
2300 | |
2301 2001-10-30 Stephen J. Turnbull <stephen@xemacs.org> | |
2302 | |
2303 * configure.in: Initialize with_ipv6_cname=no. | |
2304 * configure.usage: Document it. | |
2305 | |
2306 2001-10-05 Stephen J. Turnbull <stephen@xemacs.org> | |
2307 | |
2308 * configure.in: Document that autoconf 2.5x is unsupported. | |
2309 | |
664 | 2310 2001-09-17 Ben Wing <ben@xemacs.org> |
2311 | |
2312 * configure.in (TAB): | |
2313 * configure.in (XE_COMPUTE_RUNPATH): | |
2314 Don't use -Wshadow when compiling with g++ or you get buried in | |
2315 silly warnings. This patch was already applied but somehow got | |
2316 unapplied. Stephen? | |
2317 | |
2318 2001-06-24 Ben Wing <ben@xemacs.org> | |
2319 | |
2320 * configure.in (TAB): Don't use -Wshadow when compiling with | |
2321 g++ or you get buried in silly warnings. | |
2322 * configure.in (XE_COMPUTE_RUNPATH): Fix compile problems when | |
2323 compiling --with-msw, --with-x=no, --with-tty=no. | |
2324 | |
654 | 2325 2001-09-07 Stephen J. Turnbull <stephen@xemacs.org> |
2326 | |
2327 * XEmacs 21.5.3 "asparagus" is released. | |
2328 | |
642 | 2329 2001-08-02 Peter Brown <rendhalver@users.sourceforge.net> |
2330 | |
2331 * configure.usage (--with-dialogs): added lucid to list of options | |
2332 * configure.usage (--with-widgets): added lucid to list of options | |
2333 * configure.usage (--with-dragndrop): added GTK to list of protocols | |
2334 * configure.usage (--mail-locking): added `locking' or `mmdf' to | |
2335 list of options syncing options documentation with those in | |
2336 configure.in | |
2337 | |
641 | 2338 2001-07-28 Stephen J. Turnbull <stephen@xemacs.org> |
2339 | |
2340 * XEmacs 21.5.2 "artichoke" is released. | |
2341 | |
623 | 2342 2001-06-21 Ben Wing <ben@xemacs.org> |
2343 | |
2344 * README: | |
2345 * README (http): | |
2346 * README (ftp): | |
2347 Rewrite. | |
2348 | |
598 | 2349 2001-05-29 Martin Buchholz <martin@xemacs.org> |
2350 | |
2351 * Makefile.in.in: `make distclean' would fail if srcdir != blddir. | |
2352 Remove SUBDIR_DISTCLEAN until such a time as the module subdir is | |
2353 properly integrated into the build system. | |
2354 Only create ${moduledir} and ${sitemoduledir} if HAVE_SHLIB. | |
2355 | |
594 | 2356 2001-05-30 Ben Wing <ben@xemacs.org> |
2357 | |
2358 * configure.in (AC_INIT_PARSE_ARGS): | |
2359 * configure.in (USAGE_ERROR): | |
2360 * configure.in (XE_COMPUTE_RUNPATH): | |
2361 Fix problems detecting both native and Linux sound on Cygwin | |
2362 when compiled with --with-msw=no. | |
2363 | |
2364 Rearrange file-coding handling a bit to avoid warning when | |
2365 compiling with Mule. | |
2366 | |
2367 2001-05-28 Martin Buchholz <martin@xemacs.org> | |
2368 | |
2369 * configure.in (--xemacs-compiler): New. | |
2370 * configure.usage: | |
2371 * INSTALL: | |
2372 Document XEMACS_CC and corresponding compiler option --xemacs-compiler. | |
2373 Explain how to build xemacs using a C++ compiler. | |
2374 | |
585 | 2375 2001-05-29 Martin Buchholz <martin@xemacs.org> |
2376 | |
2377 * configure.in: Remove stray backslash. | |
2378 | |
582 | 2379 2001-05-26 Ben Wing <ben@xemacs.org> |
2380 | |
2381 * configure.in (XE_COMPUTE_RUNPATH): | |
2382 rewrite warning output so that it doesn't happen by default -- | |
2383 you should only get warnings when something is actively wrong, | |
2384 not just because a feature is not present. | |
2385 | |
567 | 2386 2001-05-06 Karl M. Hegbloom <karlheg@hegbloom.net> |
2387 | |
2388 * configure.in: See if mkstemp is available for movemail.c | |
2389 | |
559 | 2390 2001-05-23 Ben Wing <ben@xemacs.org> |
2391 | |
2392 * configure.in (AC_INIT_PARSE_ARGS): | |
2393 * configure.in (TAB): | |
2394 * configure.in (XE_COMPUTE_RUNPATH): | |
2395 add some support for eventually turning on file coding by | |
2396 default. Fix numerous places where AC_MSG_WARN had quotes | |
2397 around its arg, which is bad. Replace with []. Same for | |
2398 AC_MSG_ERROR. | |
2399 | |
2400 2001-05-15 Steve Youngs <youngs@xemacs.org> | |
667 | 2401 * configure.in: |
557 | 2402 If no native dumper (UNEXEC) is defined, simply use pdump. |
2403 If no SYSTEM_TYPE is defined, choose an appopriate default. | |
2404 | |
554 | 2405 2001-05-10 Paul Stodghill <stodghil@cs.cornell.edu> |
2406 | |
2407 * configure.in: Reverse the order of Windows and Linux sound tests | |
2408 so that Cygwin will find Windows first. | |
2409 | |
559 | 2410 2001-05-14 Martin Buchholz <martin@xemacs.org> |
2411 | |
2412 * configure.in (XE_REALLOC_NULLPTR_BUG): New. | |
541 | 2413 |
535 | 2414 2001-05-11 Martin Buchholz <martin@xemacs.org> |
2415 | |
667 | 2416 * configure.in: |
535 | 2417 Check for sys/ptyio.h on HPUX, else for pty.h or perhaps sys/pty.h |
2418 | |
532 | 2419 2001-05-10 Ben Wing <ben@xemacs.org> |
2420 | |
2421 * Makefile.in.in (all): | |
2422 * Makefile.in.in (configure): | |
2423 * Makefile.in.in (finder): | |
2424 remove autoload targets. | |
2425 | |
4010 | 2426 2001-04-26 Malcolm Purvis <malcolmpurvis@optushome.com.au> |
527 | 2427 |
2428 * configure.in: Check gtk version validity only when gtk-config | |
2429 exists. | |
2430 | |
4010 | 2431 2001-05-09 Martin Buchholz <martin@xemacs.org> |
522 | 2432 |
2433 * XEmacs 21.5.1 "anise" is released. | |
2434 | |
505 | 2435 2001-05-04 Martin Buchholz <martin@xemacs.org> |
2436 | |
667 | 2437 * configure.in (opsys): |
505 | 2438 Use lower-case `uname -s` as the default value for opsys. |
2439 The previous code effectively did the non-sensical | |
2440 opsys=$canonical because [] magically disappear in configure.in. | |
2441 | |
472 | 2442 2001-04-18 Martin Buchholz <martin@xemacs.org> |
2443 | |
2444 * XEmacs 21.5.0 "alfalfa" is released. | |
2445 | |
464 | 2446 2001-03-26 Paul Stodghill <stodghil@cs.cornell.edu> |
2447 | |
2448 * configure.in: Don't #define __STDC__ in confdefs.h | |
2449 | |
2450 2001-03-30 Stephen J. Turnbull <stephen@xemacs.org> | |
2451 | |
2452 * configure.usage: Document --with-file-coding. | |
2453 | |
2454 * configure.in: | |
2455 * configure: | |
2456 Fix typo, add -Wsign-compare if GCC, run autoconf. | |
2457 | |
2458 2001-03-23 Stephen J. Turnbull <stephen@xemacs.org> | |
2459 | |
2460 * PROBLEMS (Problems with running XEmacs): | |
2461 Document TMPDIR lossage in gnuserv/gnuclient. | |
2462 | |
4010 | 2463 2001-03-21 Martin Buchholz <martin@xemacs.org> |
462 | 2464 |
2465 * XEmacs 21.2.46 "Urania" is released. | |
2466 | |
2467 2001-03-19 Andy Piper <andy@xemacs.org> | |
2468 | |
2469 * configure.in: default rel-alloc to off under cygwin | |
2470 | |
2471 2001-03-15 Stephen J. Turnbull <stephen@xemacs.org> | |
2472 | |
2473 * ChangeLog: Fix CVS commit breakage from GTK merge, log GTK merge. | |
2474 | |
2475 * CHANGES-beta: | |
2476 * configure.in: | |
2477 Fix gratuitous whitespace changes from GTK merge. | |
2478 | |
2479 * configure.usage: Untabify --with-{gtk,gnome}. | |
2480 | |
2481 2001-03-12 Andy Piper <andy@xemacs.org> | |
2482 | |
2483 * configure.in: only pick up mingw directory. | |
2484 | |
2485 2001-03-02 Ben Wing <ben@xemacs.org> | |
2486 | |
2487 * info\dir: Update to 21.4; clean up descriptions of manuals; | |
2488 replace misnomer "Local Packages" with more correct "Other | |
2489 Documentation". | |
2490 | |
2491 2001-03-09 William M. Perry <wmperry@aventail.com> | |
2492 | |
2493 * CHANGES-beta: | |
2494 * configure.in: | |
2495 * configure.usage: | |
2496 The Great GTK Merge. | |
2497 | |
2498 2001-02-23 Andy Piper <andy@xemacs.org> | |
2499 | |
2500 * configure.usage (--with-netinstall): add docs. | |
2501 | |
2502 * configure.in: with_netinstall is a new option. Default to off. | |
2503 | |
4010 | 2504 2001-02-23 Martin Buchholz <martin@xemacs.org> |
460 | 2505 |
2506 * XEmacs 21.2.45 "Thelxepeia" is released. | |
2507 | |
2508 2001-02-13 Martin Buchholz <martin@xemacs.org> | |
2509 | |
2510 * aclocal.m4: Fix module support for AIX cc. | |
2511 Support possible future OSes irix7, aix5, osf[56]. | |
2512 | |
2513 2001-02-12 Martin Buchholz <martin@xemacs.org> | |
2514 | |
2515 * configure.in: No need for NON_GNU_CPP on SCO. | |
2516 | |
2517 2001-02-09 Martin Buchholz <martin@xemacs.org> | |
2518 | |
2519 * configure.in: Prefer utime to utimes - it's more standard. | |
2520 Remove explicit checking for struct utimbuf. | |
2521 Remove explicit checking for <utime.h>. | |
2522 Combined into one simpler test for utime. | |
2523 Add explicit check for utimes, if utime not found. | |
2524 | |
4010 | 2525 2001-02-08 Martin Buchholz <martin@xemacs.org> |
458 | 2526 |
2527 * XEmacs 21.2.44 "Thalia" is released. | |
2528 | |
4010 | 2529 2001-01-16 Mike Sperber <mike@xemacs.org> |
458 | 2530 |
2531 * configure.in: Remove bogus path variable definitions. | |
2532 Reflect the fact that specifying --datadir also affects docdir and | |
2533 archlibdir. | |
2534 | |
2535 2001-02-06 Martin Buchholz <martin@xemacs.org> | |
2536 | |
2537 * configure.in: Only use -Wpointer-arith on non-glibc systems. | |
2538 | |
2539 2001-02-02 Martin Buchholz <martin@xemacs.org> | |
2540 | |
2541 * configure.in (wnn): Make sure wnn/commonhd.h can be #included, | |
2542 for the sake of gcc 2.97 fixincludes, which breaks it. | |
2543 | |
2544 2001-01-27 Martin Buchholz <martin@xemacs.org> | |
2545 | |
2546 * configure.in: Check for util.h for NetBSD's openpty. | |
2547 | |
2548 2001-01-28 Martin Buchholz <martin@xemacs.org> | |
2549 | |
2550 * config.sub: Upgrade to offical version 2001-01-12. | |
2551 * config.guess: Upgrade to offical version 2001-01-17. | |
2552 | |
4010 | 2553 2001-01-26 Martin Buchholz <martin@xemacs.org> |
456 | 2554 |
2555 * XEmacs 21.2.43 "Terspichore" is released. | |
2556 | |
2557 2001-01-21 Steve Youngs <youngs@xemacs.org> | |
2558 | |
2559 * README.packages: Doc fix. | |
2560 | |
2561 2001-01-17 Steve Youngs <youngs@xemacs.org> | |
2562 | |
2563 * README.packages: Update. | |
2564 | |
4010 | 2565 2001-01-20 Martin Buchholz <martin@xemacs.org> |
454 | 2566 |
2567 * XEmacs 21.2.42 "Poseidon" is released. | |
2568 | |
2569 2001-01-18 Martin Buchholz <martin@xemacs.org> | |
2570 | |
2571 * PROBLEMS (Sun/Solaris): Yet another microimprovement. | |
2572 | |
2573 2001-01-17 Martin Buchholz <martin@xemacs.org> | |
2574 | |
2575 * PROBLEMS (Sun/Solaris): Replace --with-gnu-ld=no with | |
2576 --with-ld=/usr/ccs/bin/ld | |
2577 | |
2578 2001-01-16 Robert Pluim <rpluim@bigfoot.com> | |
2579 | |
2580 * PROBLEMS (SunOS/Solaris): Document workaround for GNU ld bug on | |
2581 Solaris. Half mine, half Raymond Toy, half Martin Buchholz. | |
2582 | |
2583 2001-01-16 Didier Verna <didier@xemacs.org> | |
2584 | |
2585 * NEWS: document the modeline horizontal scrolling feature. | |
2586 | |
4010 | 2587 2001-01-17 Martin Buchholz <martin@xemacs.org> |
452 | 2588 |
2589 * XEmacs 21.2.41 "Polyhymnia" is released. | |
2590 | |
2591 2001-01-16 Martin Buchholz <martin@xemacs.org> | |
2592 | |
2593 * PROBLEMS: Document MIPSpro ICE problem workaround. | |
2594 | |
2595 2001-01-06 Golubev I. N. <gin@mo.msk.ru> | |
2596 | |
2597 * configure.in: check for dlopen by linking program with | |
2598 <dlfcn.h>. | |
2599 | |
2600 2001-01-08 Andy Piper <andy@xemacs.org> | |
2601 | |
2602 * configure.in: add extra_includes and populate appropriately for | |
2603 cygwin and mingw. | |
2604 | |
2605 2000-12-28 Andy Piper <andy@xemacs.org> | |
2606 | |
2607 * configure.in: allow --with-widgets=msw | |
2608 | |
4010 | 2609 2001-01-08 Martin Buchholz <martin@xemacs.org> |
450 | 2610 |
2611 * XEmacs 21.2.40 is released. | |
2612 | |
2613 2000-12-26 Stephen J. Turnbull <stephen@xemacs.org> | |
2614 | |
2615 * PROBLEMS (Running/Linux): Rehabilitate Mandrake; tip for color-gcc. | |
2616 | |
2617 2000-12-20 Stephen J. Turnbull <stephen@xemacs.org> | |
2618 | |
2619 * PROBLEMS (Linux): document Mandrake policy, how to get Meta on | |
2620 Alt, and getaddrinfo() blocking trying to get localhost's CNAME. | |
2621 | |
4010 | 2622 2000-07-20 Kazuyuki IENAGA <ienaga@xemacs.org> |
450 | 2623 |
2624 * configure.in: use input-method-xlib.o for USE_XFONTSET instead | |
2625 of input-method-xfs.o. | |
2626 | |
2627 * configure: ditto | |
2628 | |
4010 | 2629 2000-12-31 Martin Buchholz <martin@xemacs.org> |
448 | 2630 |
2631 * XEmacs 21.2.39 is released. | |
2632 | |
4011 | 2633 2000-02-02 Daiki Ueno <ueno@ueda.info.waseda.ac.jp> |
448 | 2634 |
2635 * configure.in: Added check if the berkdb has db_create or not. | |
2636 | |
2637 2000-10-11 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2638 | |
2639 * configure.in: Fix broken gcc detection for 2.7.2. | |
2640 | |
2641 2000-12-11 Andy Piper <andy@xemacs.org> | |
2642 | |
2643 * configure.in (XE_COMPUTE_RUNPATH): add netinstall as a subdirectory. | |
2644 | |
2645 * netinstall: new net installer for MS-Windows. | |
2646 | |
4010 | 2647 2000-12-05 Martin Buchholz <martin@xemacs.org> |
446 | 2648 |
2649 * XEmacs 21.2.38 is released. | |
2650 | |
454 | 2651 2000-11-26 Bjrn Torkelsson <torkel@hpc2n.umu.se> |
446 | 2652 |
2653 * configure.in: Only show message about DnD API if compiling with DnD | |
2654 | |
2655 2000-11-09 Martin Buchholz <martin@xemacs.org> | |
2656 | |
2657 * configure.in: Autodetect elf.h. | |
2658 | |
4010 | 2659 2000-11-14 Martin Buchholz <martin@xemacs.org> |
444 | 2660 |
2661 * XEmacs 21.2.37 is released. | |
2662 | |
2663 2000-10-19 Stephen J. Turnbull <stephen@xemacs.org> | |
2664 | |
2665 * README.packages: Add "uninstalled package" FAQ. | |
2666 | |
2667 2000-11-01 Martin Buchholz <martin@xemacs.org> | |
2668 | |
2669 * configure.in: Handle alloca with Compaq C on Alpha Linux. | |
2670 | |
2671 2000-10-27 Martin Buchholz <martin@xemacs.org> | |
2672 | |
2673 * configure.in: Oops, _getpt ==> _getpty | |
2674 | |
2675 2000-10-23 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2676 | |
2677 * Makefile.in.in: Remove lockdir related things. | |
2678 | |
2679 2000-10-11 Martin Buchholz <martin@xemacs.org> | |
2680 | |
2681 * configure.in: | |
2682 Remove checking for XFree86. Use feature tests instead! | |
2683 Add check for XRegisterIMInstantiateCallback. | |
2684 Add check for XRegisterIMInstantiateCallback's prototype. | |
2685 | |
2686 2000-10-08 Karl M. Hegbloom <karlheg@debian.org> | |
2687 | |
2688 * configure.in: Typo - missing paren. | |
2689 | |
2690 2000-10-10 Martin Buchholz <martin@xemacs.org> | |
2691 | |
454 | 2692 * configure.in: |
444 | 2693 Use stropts.h, not sys/stropts.h. |
2694 Use strtio.h, not sys/strtio.h. | |
2695 | |
2696 2000-10-06 Martin Buchholz <martin@xemacs.org> | |
2697 | |
2698 * configure.in: Pretend that DEC OSF >= 5 is really DEC OSF 4. | |
2699 | |
4010 | 2700 2000-10-04 Martin Buchholz <martin@xemacs.org> |
442 | 2701 |
2702 * XEmacs 21.2.36 is released. | |
2703 | |
2704 2000-09-27 Martin Buchholz <martin@xemacs.org> | |
2705 | |
2706 * configure.in: Big signal/process handling overhaul. | |
2707 Autoconfiscate lots of functions and headers: | |
2708 getpt _getpt grantpt unlockpt ptsname killpg tcgetpgrp | |
2709 openpty pty.h libutil.h sys/stropts.h sys/strtio.h isastream | |
2710 | |
2711 2000-09-19 Martin Buchholz <martin@xemacs.org> | |
2712 | |
2713 * *: Spelling mega-patch | |
2714 | |
2715 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
2716 | |
2717 * configure.in: Remove strcasecmp. | |
2718 | |
2719 2000-09-16 Martin Buchholz <martin@xemacs.org> | |
2720 | |
2721 * configure.in: Add -Kalloca to $c_switch_system when using | |
2722 Unixware native compiler (if necessary). | |
2723 | |
2724 2000-09-15 Martin Buchholz <martin@xemacs.org> | |
2725 | |
2726 * configure.in: Prevent spurious "No" in configure output when not | |
2727 using gcc. Oh, and it's "no", not "No". Oh, and it's "yes", not "Yes". | |
2728 | |
2729 2000-09-14 Martin Buchholz <martin@xemacs.org> | |
2730 | |
2731 * configure.in: Save 2 sed process invocations per Makefile. | |
2732 | |
2733 2000-08-22 SL Baur <steve@turbolinux.co.jp> | |
2734 | |
2735 * configure.in (after_morecore_hook_exists): Don't add /usr/shlib | |
2736 to link path if compiling on Alpha/Linux. | |
2737 | |
2738 2000-09-01 Martin Buchholz <martin@xemacs.org> | |
2739 | |
2740 * Makefile.in.in (depend): cd to the correct directory. | |
2741 | |
2742 2000-08-31 Martin Buchholz <martin@xemacs.org> | |
2743 | |
2744 * configure.in: with_widgets is incompatible with X11 R4. | |
2745 | |
2746 * configure.in: Make Balloon Help conditional on finding shape.h | |
2747 | |
2748 2000-08-09 Vin Shelton <acs@xemacs.org> | |
2749 | |
2750 * configure.in: Check for UNIX98 PTYs. Patch from Florian Weimer | |
2751 <Florian.Weimer@RUS.Uni-Stuttgart.DE>. | |
2752 | |
2753 2000-07-31 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2754 | |
2755 * configure.usage: Remove lockdir document. | |
2756 | |
2757 2000-07-31 Martin Buchholz <martin@xemacs.org> | |
2758 | |
2759 * configure.in: | |
2760 Make knowledge of machine and opsys optional. | |
2761 Make existence of s&m files optional. | |
2762 Rely on configure alone if s&m files not found. | |
2763 | |
2764 * configure.in: | |
2765 Use only configure-time tests to detect getloadavg(). | |
2766 Don't check for kstat.h if we have getloadavg(). | |
2767 Check for sys/loadavg.h if we have getloadavg(). | |
2768 | |
2769 2000-07-15 Ben Wing <ben@xemacs.org> | |
2770 | |
2771 * Makefile.in.in (configure): | |
2772 all-elcs target now uses update-elc-2.el not update-elc.sh | |
2773 | |
4010 | 2774 2000-07-19 Martin Buchholz <martin@xemacs.org> |
442 | 2775 |
2776 * XEmacs 21.2.35 is released. | |
2777 | |
2778 2000-07-13 Martin Buchholz <martin@xemacs.org> | |
2779 | |
2780 * configure.in: --with-menubars=yes should not be an error. | |
2781 | |
2782 * configure.in: "compiling in support for Athena" message was | |
2783 sometimes lying. | |
2784 | |
2785 2000-07-12 Martin Buchholz <martin@xemacs.org> | |
2786 | |
2787 * configure.in: Rewrite xmkmf symbol detection to avoid | |
2788 redefinition of symbols we've already defined. | |
2789 Also, handle xmkmf symbols with values other than 1. | |
2790 | |
2791 2000-07-12 Martin Buchholz <martin@xemacs.org> | |
2792 | |
454 | 2793 * configure.in: |
442 | 2794 Make sure Unix98 socklen_t is defined. |
2795 Use ANSI C mode `-std1' with DEC C instead of `-std'. | |
2796 | |
2797 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
2798 | |
454 | 2799 * configure.in: |
442 | 2800 Replace SMART_INCLUDE with a dumber, but more reliable method. |
2801 2000-07-10 Martin Buchholz <martin@xemacs.org> | |
2802 | |
454 | 2803 * modules/zlib/Makefile: |
2804 * modules/sample/Makefile: | |
2805 * modules/ldap/Makefile: | |
2806 * modules/base64/Makefile: | |
2807 * Makefile.in.in: | |
442 | 2808 rm -f ==> $(RM) |
2809 define SHELL=/bin/sh | |
2810 | |
2811 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
2812 | |
2813 * configure.in: PostgreSQL rewrite. | |
2814 - Don't look for postgreSQL in /usr/local. | |
2815 - Simplify detection code. | |
2816 - Don't use SMART_INCLUDE. | |
2817 - Don't autodetect if --with-postgresql=no. | |
2818 | |
2819 2000-07-08 Ben Wing <ben@xemacs.org> | |
2820 | |
2821 * configure.usage: addl doc for graphics libs, with-msw. | |
2822 | |
2823 2000-07-09 Martin Buchholz <martin@xemacs.org> | |
2824 | |
2825 * configure.in: sh builtin `test' uses `=', not `=='. | |
2826 | |
2827 2000-07-08 Ben Wing <ben@xemacs.org> | |
2828 | |
2829 * configure.in: add -lcomdlg32 for cygwin. | |
454 | 2830 |
442 | 2831 2000-07-05 Craig Lanning <lanning@scra.org> |
2832 | |
2833 * aclocal.m4 (can_build_shared): | |
2834 First pass at module support for cygwin and mingw. | |
454 | 2835 |
442 | 2836 * configure: |
2837 * configure (xe_check_libs): | |
2838 * configure (acfindx): | |
2839 * configure (ac_x_includes): | |
2840 * configure (ac_x_libraries): | |
2841 * configure (ac_cv_lib_dnet_dnet_ntoa): | |
2842 * configure (xe_msg_checking): | |
2843 * configure (xe_runpath_dir): | |
2844 * configure (xetest): | |
2845 * configure (ac_err): | |
2846 * configure (ac_safe): | |
2847 * configure (with_xmu): | |
2848 * configure (bitmapdir): | |
2849 * configure (with_xauth): | |
2850 * configure (libs_xauth): | |
2851 * configure (with_cde): | |
2852 * configure (with_ldap): | |
2853 * configure (with_ldap_krbdes): | |
2854 * configure (save_c_switch_site): | |
2855 * configure (with_postgresql): | |
2856 * configure (with_xface): | |
2857 * configure (with_jpeg): | |
2858 * configure (with_png): | |
2859 * configure (with_tiff): | |
2860 * configure (athena_lib): | |
2861 * configure (have_motif): | |
2862 * configure (all_widgets): | |
2863 * configure (with_xim): | |
2864 * configure (with_xfs): | |
2865 * configure (with_wnn): | |
2866 * configure (with_canna): | |
2867 * configure (extra_objs): | |
2868 * configure (ac_cv_c_inline): | |
2869 * configure (have_esd_config): | |
2870 * configure (c_switch_site): | |
2871 * configure (with_ncurses): | |
2872 * configure (with_gpm): | |
2873 * configure (xealias): | |
2874 * configure (xehost_os): | |
2875 * configure (can_build_shared): | |
2876 * configure (xcldf): | |
2877 * configure (LTLD): | |
2878 * configure (ld_dynamic_link_flags): | |
2879 * configure (Mail): | |
2880 * configure.in: | |
2881 * configure.in (after_morecore_hook_exists): | |
2882 * configure.in (xetest): | |
2883 * configure.in (emacs_cv_localtime_cache): | |
2884 * configure.in (Mail): | |
2885 * configure.in: | |
2886 Clean up configure support for cygwin and mingw. | |
2887 | |
4010 | 2888 2000-06-27 Darryl Okahata <darrylo@soco.agilent.com> |
442 | 2889 |
2890 * PROBLEMS: Document broken native audio for recent patches and | |
2891 releases of HP-UX. | |
2892 | |
2893 2000-06-10 Ben Wing <ben@xemacs.org> | |
2894 | |
2895 * Makefile.in.in (install-arch-dep): | |
2896 WINDOWSNT -> WIN32_NATIVE. | |
2897 __CYGWIN32__ -> CYGWIN. | |
2898 | |
2899 2000-06-01 Andreas Jaeger <aj@suse.de> | |
2900 | |
2901 * configure.in: Recognize s390. | |
2902 | |
2903 * config.guess: New version from GNU config archive. | |
2904 * config.sub: Likewise. | |
2905 | |
4010 | 2906 2000-05-28 Martin Buchholz <martin@xemacs.org> |
442 | 2907 |
2908 * XEmacs 21.2.34 is released. | |
2909 | |
2910 2000-05-15 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2911 | |
2912 * configure.in: | |
2913 Do not define DOUG_LEA_MALLOC when using other malloc scheme. | |
2914 Remove unused variable use_minimal_tagbits. | |
2915 | |
2916 2000-05-02 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2917 | |
2918 * configure.in: Remove lockdir. | |
2919 | |
4010 | 2920 2000-05-01 Martin Buchholz <martin@xemacs.org> |
442 | 2921 |
2922 * XEmacs 21.2.33 is released. | |
2923 | |
2924 2000-04-27 Katsumi Yamaoka <yamaoka@jpl.org> | |
2925 | |
2926 * configure.in: Use ORDINARY_LD instead of "\$(ORDINARY_LD)" for | |
2927 the value of LD. | |
2928 | |
2929 2000-04-26 Ben Wing <ben@xemacs.org> | |
2930 | |
2931 * configure.in: add support for --quick-build. Remove --no-doc-file, | |
2932 subsumed. | |
2933 | |
2934 2000-04-19 Martin Buchholz <martin@xemacs.org> | |
2935 | |
454 | 2936 * configure.in: |
442 | 2937 * src/config.h.in: |
2938 Rewrite SMART_INCLUDE implementation to actually work. | |
2939 Be paranoid - Avoid use of spaces in these macro definitions. | |
454 | 2940 Leave alloca() definition at start of compilation unit, |
442 | 2941 as AIX requests. |
2942 Rename SMART_INCLUDE_MACRO to SMART_INCLUDE_INDIRECTIONS. | |
2943 | |
2944 2000-04-13 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2945 | |
2946 * configure.in: Enable clash-detection by default. | |
2947 * configure.usage: Update documentation. | |
2948 | |
2949 2000-04-06 Andy Piper <andy@xemacs.org> | |
2950 | |
2951 * configure.in: fix typo. | |
2952 | |
2953 2000-04-03 Yoshiki Hayashi <yoshiki@xemacs.org> | |
2954 | |
2955 * configure.in : Fix printing error check warning even if | |
2956 it is not compiled in. | |
2957 | |
2958 2000-02-19 Jan Vroonhof <vroonhof@math.ethz.ch> | |
2959 | |
2960 * xemacs/configure.in: Do a normal link when compiling with | |
2961 --pdump. Don't try compiling an unexec object file. | |
454 | 2962 |
442 | 2963 2000-03-27 Didier Verna <didier@xemacs.org> |
2964 | |
2965 * configure.in: reorganize the output by topic. | |
2966 New configure test to define the proper SMART_INCLUDE macro. | |
2967 | |
2968 * configure.usage: slightly rearanged some options. | |
2969 | |
2970 2000-03-25 Didier Verna <didier@xemacs.org> | |
2971 | |
2972 * configure.in: rename `foo_h_path' to `foo_h_file' for variables | |
2973 representing real headers and not directories. This applies to | |
2974 `db_h_path', `curses_h_path', `term_h_path', `tt_c_h_path' and | |
2975 `soundcard_h_path'. | |
2976 | |
2977 2000-03-21 Didier Verna <didier@xemacs.org> | |
2978 | |
2979 * configure.in: try to find postgresql headers at different places | |
2980 and define POSTGRES_H_PATH as appropriate. | |
2981 | |
2982 2000-03-22 Andy Piper <andy@xemacs.org> | |
2983 | |
2984 * config.h.in: add ERROR_CHECK_GLYPHS. | |
2985 | |
2986 * configure.in: add error_check_glyphs. | |
2987 | |
4010 | 2988 2000-03-20 Martin Buchholz <martin@xemacs.org> |
442 | 2989 |
2990 * XEmacs 21.2.32 is released. | |
2991 | |
2992 2000-03-15 Olivier Galibert <galibert@pobox.com> | |
2993 | |
2994 * configure.in: Add dumper.o object when pdumping. | |
2995 | |
2996 2000-02-20 Olivier Galibert <galibert@pobox.com> | |
2997 | |
2998 * Makefile.in.in: Add pdump install support | |
2999 | |
3000 * configure.in: Add EMACS_PROGNAME config.h variable. | |
3001 | |
3002 2000-03-10 SL Baur <steve@musashimaru.m17n.org> | |
3003 | |
3004 * configure.usage: document --with-postgresql flag. | |
3005 | |
3006 2000-03-06 SL Baur <steve@musashimaru.m17n.org> | |
3007 | |
3008 * configure.in: add autodetection of PostgreSQL runtime libraries | |
3009 | |
3010 2000-03-09 Yoshiki Hayashi <yoshiki@xemacs.org> | |
3011 | |
3012 * aclocal.m4 (XE_SHLIB_STUFF): Define ld_shlibs to yes | |
3013 when C compiler can produce shared libraries. | |
3014 | |
3015 2000-02-26 Martin Buchholz <martin@xemacs.org> | |
3016 | |
3017 * configure.in: Unconditionally define SHELL, to allow working | |
3018 with (unreleased) autoconf 2.14.1, found on Mandrake 7.0 systems. | |
3019 | |
4010 | 3020 2000-02-23 Martin Buchholz <martin@xemacs.org> |
442 | 3021 |
3022 * XEmacs 21.2.31 is released. | |
3023 | |
4010 | 3024 2000-02-21 Martin Buchholz <martin@xemacs.org> |
442 | 3025 |
3026 * XEmacs 21.2.30 is released. | |
3027 | |
3028 2000-02-20 Martin Buchholz <martin@xemacs.org> | |
3029 | |
3030 * configure.in: Enforce use of autoconf version >= 2.13. | |
3031 | |
3032 * configure.in: Fix OS release test on Solaris. | |
3033 | |
3034 2000-02-19 Marcus Thiessel <marcus@xemacs.org> | |
3035 | |
3036 * PROBLEMS: Update email address. Describe more HP Motif errors. | |
3037 | |
3038 2000-02-19 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3039 | |
3040 * configure.in: Split Solaris version test in two parts. In the | |
3041 Bourne shell the "-a" operator does NOT short-circuit. | |
3042 | |
3043 1999-12-15 Jan Vroonhof <jan@xemacs.org> | |
3044 | |
3045 * (configure.in): Autodetect broken gcc versions. Patch from WM | |
3046 Perry with tiny tweaks by Yoshiki Hayashi and yours truly. | |
3047 | |
3048 2000-02-17 Martin Buchholz <martin@xemacs.org> | |
3049 | |
3050 * configure.in: Autodetect sys/param.h. Reorganize | |
3051 AC_CHECK_HEADERS call. | |
3052 * src/config.h.in: Add HAVE_SYS_PARAM_H. | |
3053 | |
3054 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
3055 | |
3056 * configure.in: Test for arm simply using arm* instead of arm-* | |
3057 | |
4010 | 3058 2000-02-16 Martin Buchholz <martin@xemacs.org> |
442 | 3059 |
3060 * XEmacs 21.2.29 is released. | |
3061 | |
3062 2000-02-16 Martin Buchholz <martin@xemacs.org> | |
3063 | |
3064 * configure.in: Don't use rel_alloc if malloc() calls mmap(). | |
3065 Discover this by looking for M_MMAP_THRESHOLD. | |
3066 | |
3067 * configure.in: Don't define POSIX_C_SOURCE on Solaris, due to | |
3068 bugs in (at least) Solaris 2.5 headers. | |
3069 | |
3070 2000-01-29 Craig Lanning <CraigL@DyCon.com> | |
3071 | |
3072 * configure.in: Fix detection of XPM on systems without X11. | |
3073 | |
3074 2000-02-11 Martin Buchholz <martin@xemacs.org> | |
3075 | |
3076 * configure.in: | |
3077 * src/config.h.in: | |
3078 Define _POSIX_C_SOURCE, _XOPEN_SOURCE, _XOPEN_SOURCE_EXTENDED, | |
3079 but only on tested Operating systems - Linux && SunOS >= 5.5. | |
3080 | |
3081 2000-02-09 Valdis Kletnieks <Valdis.Kletnieks@vt.edu> | |
3082 | |
3083 * aclocal.m4: Support dlls on aix[34]. | |
3084 | |
3085 2000-02-09 Martin Buchholz <martin@xemacs.org> | |
3086 | |
3087 * .cvsignore: Ignore gmon.out | |
3088 | |
3089 2000-02-08 Martin Buchholz <martin@xemacs.org> | |
3090 | |
3091 * configure.in: Sync Berkeley db autodetection with src/database.c | |
3092 | |
3093 2000-02-07 Martin Buchholz <martin@xemacs.org> | |
3094 | |
3095 * configure.in: check for XConvertCase. | |
3096 | |
4010 | 3097 2000-02-07 Martin Buchholz <martin@xemacs.org> |
440 | 3098 |
3099 * XEmacs 21.2.28 is released. | |
3100 | |
4010 | 3101 2000-01-27 URA Hiroshi <ura@hiru.aoba.yokohama.jp> |
442 | 3102 |
440 | 3103 * configure.in: added getaddrinfo and getnameinfo to AC_FUNC. |
3104 | |
3105 2000-01-26 Martin Buchholz <martin@xemacs.org> | |
3106 | |
3107 * configure.in: Backout the /etc/ld.so.conf patch of 2000-01-18. | |
3108 | |
3109 2000-01-24 Martin Buchholz <martin@xemacs.org> | |
3110 | |
3111 * configure.in: Always use our own realpath(), not the system one. | |
3112 | |
3113 2000-01-25 Martin Buchholz <martin@xemacs.org> | |
3114 | |
3115 * configure.in: Default Drag-N-Drop to "no" | |
3116 | |
3117 1999-12-28 Max Matveev <max@melbourne.sgi.com> | |
3118 | |
3119 * configure.in: add new machine type for IRIX 6.[2-5] to | |
3120 switch from using unexelf.o to unexelfsgi.o for just those | |
3121 versions of IRIX. | |
3122 In the ideal world it would be handled by the s/irix6-0.h but | |
3123 since machine config is included AFTER OS config, I had to add a | |
3124 new machine type. | |
3125 | |
3126 2000-01-22 Andy Piper <andy@xemacs.org> | |
3127 | |
3128 * configure.in: add winspool to windows libraries. | |
3129 | |
3130 2000-01-22 Martin Buchholz <martin@xemacs.org> | |
3131 | |
3132 * configure.in: Add more warnings to default gcc flags. | |
3133 | |
3134 2000-01-20 Daniel Pittman <daniel@danann.net> | |
3135 | |
3136 * configure.in: Find Athena headers hidden in even more obscure | |
3137 places. That is, search Xaw3D/ as well as X11/Xaw3D/. | |
3138 | |
3139 2000-01-19 Martin Buchholz <martin@xemacs.org> | |
3140 | |
3141 * configure.in: Add support for NetWinders. | |
3142 Patch by Sean MacLennan <seanm@netwinder.org> | |
3143 | |
3144 2000-01-18 Martin Buchholz <martin@xemacs.org> | |
3145 | |
3146 * configure.in: Use /etc/ld.so.conf at link-time, if available. | |
3147 | |
4010 | 3148 2000-01-18 Martin Buchholz <martin@xemacs.org> |
438 | 3149 |
3150 * XEmacs 21.2.27 is released. | |
3151 | |
3152 2000-01-14 Martin Buchholz <martin@xemacs.org> | |
3153 | |
3154 * configure.in: Create a .dbxrc in the src directory, like .gdbinit. | |
3155 | |
3156 * configure.in: Add `tests' symlink to make it easier to find | |
3157 automated tests directory. | |
3158 | |
3159 2000-01-14 Andy Piper <andy@xemacs.org> | |
3160 | |
3161 * configure.in: for cygwin 1.0 we must pick up the mingw32 headers | |
3162 before the cygwin headers. | |
3163 | |
3164 2000-01-08 Martin Buchholz <martin@xemacs.org> | |
3165 | |
442 | 3166 * configure.in: |
438 | 3167 - Allow find-tag to work in the build directory. |
3168 - rename src/gdbinit to src/.gdbinit, so that gdb can find it. | |
3169 - Less verbose messages when creating .sbinit, .gdbinit, TAGS. | |
3170 | |
4010 | 3171 2000-01-07 Marcus Thiessel <marcus@xemacs.org> |
438 | 3172 |
3173 * config.sub: Upgrade to 1.169, imported from autoconf's CVS | |
3174 * config.guess: Upgrade to 1.158, imported from autoconf's CVS | |
3175 | |
3176 2000-01-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3177 | |
3178 * configure.usage (--mail-locking): | |
3179 * configure.in: Handle --mail-locking option correctly in | |
3180 preparation for the movemail locking overhaul. | |
3181 | |
3182 2000-01-05 Daniel Pittman <daniel@danann.net> | |
3183 | |
3184 * configure.in (Installation): Report which Athena header/library | |
3185 combo is being used. | |
3186 | |
4010 | 3187 1999-12-31 Martin Buchholz <martin@xemacs.org> |
436 | 3188 |
3189 * XEmacs 21.2.26 is released. | |
3190 | |
4010 | 3191 1999-12-24 Martin Buchholz <martin@xemacs.org> |
434 | 3192 |
3193 * XEmacs 21.2.25 is released. | |
3194 | |
3195 1999-12-17 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
3196 | |
3197 * README: Remove msdos part. | |
3198 | |
3199 1999-12-17 Martin Buchholz <martin@xemacs.org> | |
3200 | |
3201 * configure.in: Oops. xpm doesn't actually depend on X11. | |
3202 I got confused by the name (like others get confused by `xemacs'?) | |
3203 | |
4010 | 3204 1999-12-14 Martin Buchholz <martin@xemacs.org> |
432 | 3205 |
3206 * XEmacs 21.2.24 is released. | |
3207 | |
3208 1999-12-13 Martin Buchholz <martin@xemacs.org> | |
3209 | |
442 | 3210 * configure.in: |
432 | 3211 * configure.usage: |
3212 - Autodetect NAS. Change Docs accordingly. | |
3213 | |
3214 * configure.in: Warn if configure --with-xpm --without-x11. | |
3215 | |
3216 1999-12-09 Martin Buchholz <martin@xemacs.org> | |
3217 | |
3218 * configure.in: Clean up sound support. | |
3219 - variable `old_nas' was used but never set. | |
3220 - change `with_esd' to `with_esd_sound' for consistency. | |
3221 - Don't trust the output of `esd-config --libs`; test it. | |
3222 - Add `esd-config --cflags` to c_switch_site. | |
3223 - Die if ESD sound requested, but not available. | |
3224 - ESD is not dependent on X, therefore use LIBS, not libs_x. | |
3225 | |
3226 1999-12-07 Martin Buchholz <martin@xemacs.org> | |
3227 | |
3228 * configure.in (--with-sound): Variable with_esd was mispelled. | |
3229 | |
4010 | 3230 1999-12-07 Martin Buchholz <martin@xemacs.org> |
430 | 3231 |
3232 * XEmacs 21.2.23 is released. | |
3233 | |
3234 1999-11-30 Martin Buchholz <martin@xemacs.org> | |
3235 | |
3236 * configure.in: Fix module support. | |
3237 --with-modules=yes was completely broken. | |
3238 AC_DEFINE(HAVE_DLFCN_H) was invoked twice. | |
3239 Remove linking test for _dlopen - seems totally bogus. | |
3240 Die if --with-modules=yes but no module support found. | |
3241 Do nothing, not even msg, if --with-modules=no. | |
3242 | |
3243 1999-11-17 Isaac Hollander <ysh@mindspring.com> | |
3244 | |
3245 * Makefile.in.in: add and use TAR macro. Sometimes tar only copies | |
3246 symlinks instead of the actual files | |
3247 | |
3248 1999-11-30 Martin Buchholz <martin@xemacs.org> | |
3249 | |
3250 * aclocal.m4: Shared library support for hpux >= version 11 | |
3251 | |
3252 1999-11-29 Martin Buchholz <martin@xemacs.org> | |
3253 | |
3254 * Makefile.in.in (beta): `make beta' should rebuild info. | |
3255 | |
4010 | 3256 1999-11-29 XEmacs Build Bot <builds@cvs.xemacs.org> |
428 | 3257 |
3258 * XEmacs 21.2.22 is released | |
3259 | |
4010 | 3260 1999-11-28 Martin Buchholz <martin@xemacs.org> |
426 | 3261 |
3262 * XEmacs 21.2.21 is released. | |
3263 | |
3264 1999-11-26 Martin Buchholz <martin@xemacs.org> | |
3265 | |
442 | 3266 * configure.in: |
426 | 3267 Add configure support for Unix 98 type ssize_t. |
3268 | |
3269 1999-11-27 Martin Buchholz <martin@xemacs.org> | |
3270 | |
3271 * Makefile.in.in: | |
3272 Make sure config.values.sh is up to date. | |
3273 Use $(SHELL) instead of sh or /bin/sh consistently. | |
3274 Delegate `depend' target to src/Makefile.in.in. | |
3275 | |
3276 1999-10-27 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp> | |
3277 | |
3278 * INSTALL: Update configure option. | |
3279 | |
3280 1999-10-12 Alexandre Oliva <oliva@lsd.ic.unicamp.br> | |
442 | 3281 |
426 | 3282 * configure.in (native_sound_lib, *-sgi-*): Check for audio.h. |
3283 (LIBS): Check for libCsup. | |
3284 | |
3285 1999-10-24 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3286 | |
3287 * config.h.in: define HAVE_ESD_SOUND | |
3288 | |
3289 * configure.in: Add support for esd sound. --with-sound | |
3290 now accepts a list of options. | |
3291 * configure.usage (--native-sound-lib): ditto. | |
3292 | |
3293 1999-11-17 Martin Buchholz <martin@xemacs.org> | |
3294 | |
442 | 3295 * Makefile.in.in (install-arch-dep): |
426 | 3296 Fix `make install' if prefix != exec_prefix. |
3297 | |
3298 1999-11-15 Martin Buchholz <martin@xemacs.org> | |
3299 | |
3300 * configure.in: | |
3301 - Accept --with-database=gdbm as an alias for | |
3302 --with-database=gnudbm. | |
3303 - rename with_database_gnudbm to with_database_gdbm. | |
3304 | |
3305 * aclocal.m4 (ld_dynamic_link_flags): Just use empty value for | |
3306 ld_dynamic_link_flags on Solaris. Else CC gives us: | |
3307 CC: Warning: Option -Wl,-Bdynamic passed to ld, if ld is invoked, ignored otherwise | |
3308 /usr/ccs/bin/ld: illegal option -- W | |
3309 | |
3310 | |
4010 | 3311 1999-11-10 XEmacs Build Bot <builds@cvs.xemacs.org> |
424 | 3312 |
3313 * XEmacs 21.2.20 is released | |
3314 | |
4011 | 3315 1999-09-21 Martin Buchholz <martin@xemacs.org> |
424 | 3316 * configure.in: Autodetect Unix98 PTY |
3317 | |
3318 1999-08-30 Robert Pluim <rpluim@bigfoot.com> | |
3319 | |
3320 * README.packages: Add description of package-get-provider | |
3321 | |
3322 1999-10-22 Vin Shelton <acs@xemacs.org> | |
3323 | |
3324 * INSTALL: Added more information about README.packages, and | |
3325 re-numbered some bullets. | |
3326 | |
3327 1999-10-24 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3328 | |
3329 * INSTALL: Update disk requirements. Refer to README.packages | |
3330 | |
3331 1999-10-21 Andy Piper <andy@xemacs.org> | |
3332 | |
3333 * configure.in (all_widgets): Only use xaw3d if we really have it. | |
3334 | |
3335 1999-10-06 Andy Piper <andy@xemacs.org> | |
3336 | |
3337 * Makefile.in.in: use WINDOWSNT for mingw install. | |
3338 | |
3339 1999-09-25 Andy Piper <andy@xemacs.org> | |
3340 | |
3341 * configure.in: check for Xaw3d and use in preference to Xaw | |
3342 | |
3343 1999-09-21 Martin Buchholz <martin@xemacs.org> | |
3344 | |
3345 * Makefile.in.in: All Makefiles should #include config.h | |
3346 | |
3347 1999-09-19 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3348 | |
3349 * configure.in (EMACS_CONFIGURATION): Use $configuration, not | |
442 | 3350 $canonical, so that installation paths and dynamic path setup will |
424 | 3351 stay in synch. |
3352 | |
3353 1999-09-20 Andy Piper <andy@xemacs.org> | |
3354 | |
3355 * Makefile.in.in: use __CYGWIN32__ and __MINGW32__ to predicate | |
3356 installation linkage. | |
3357 | |
3358 1999-08-29 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
3359 | |
3360 * configure.in (machine): Recognize MIPS/Linux. | |
3361 | |
3362 1999-08-27 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3363 | |
442 | 3364 * modules/zlib/Makefile (distclean): |
3365 * modules/ldap/Makefile (distclean): | |
3366 * modules/sample/Makefile (distclean): | |
424 | 3367 * modules/base64/Makefile (distclean): new target |
3368 | |
3369 * Makefile.in.in (top_distclean): Add package directories | |
3370 (SUBDIR_DISTCLEAN): New variable, add module directories | |
3371 | |
3372 1999-09-01 Martin Buchholz <martin@xemacs.org> | |
3373 | |
3374 * configure.in: Warn, but otherwise ignore, obsolete arguments. | |
3375 | |
3376 1999-08-20 Olivier Galibert <galibert@pobox.com> | |
442 | 3377 |
424 | 3378 * configure.in: Add --pdump option. |
3379 * configure.usage: Ditto. | |
442 | 3380 |
424 | 3381 1999-08-04 Andy Piper <andy@xemacs.org> |
3382 | |
3383 * configure.in: report widget usage correctly. beef up setting. | |
3384 | |
3385 * Makefile.in.in: fix install-arch-dep for mingw32. | |
3386 | |
3387 1999-07-28 Andy Piper <andy@xemacs.org> | |
3388 | |
3389 * config.h.in: add new LWLIB defines. | |
3390 | |
3391 * configure.in: fix definitions of widget defines with various | |
3392 toolkit options. | |
3393 | |
4010 | 3394 1999-07-30 XEmacs Build Bot <builds@cvs.xemacs.org> |
422 | 3395 |
3396 * XEmacs 21.2.19 is released | |
3397 | |
3398 1999-07-28 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3399 | |
3400 * configure.in: Removed superfluous call to AC_FUNC_MMAP. | |
3401 | |
3402 1999-03-07 Gregory Neil Shapiro <gshapiro@sendmail.org> | |
3403 | |
3404 * configure.in: Check for Kerberos and the need for the DES | |
3405 library before checking for LDAP in case LDAP requires these | |
3406 libraries. | |
3407 | |
3828 | 3408 1999-07-26 SL Baur <steve@xemacs.org> |
422 | 3409 |
3410 * configure.in: Rename --with-shlib to --with-modules for | |
3411 consistency with the other two options that use that name. | |
3412 | |
3413 * configure.usage (--with-modules): Document it. | |
3414 | |
3828 | 3415 1999-07-22 SL Baur <steve@xemacs.org> |
422 | 3416 |
3417 * configure.in: add sco7 support | |
3418 From Bob Weiner <weiner@beopen.com> | |
3419 | |
3828 | 3420 1999-07-22 SL Baur <steve@xemacs.org> |
422 | 3421 |
3422 * Makefile.in.in (install-arch-dep): Install config.values into | |
3423 docdir. | |
3424 From Karl M. Hegbloom <karlheg@cathcart.sysc.pdx.edu> | |
3425 | |
3828 | 3426 1999-07-21 SL Baur <steve@xemacs.org> |
422 | 3427 |
3428 * Makefile.in.in (inststaticdir): New variable. | |
3429 (instvardir): Ditto. | |
3430 (install-arch-dep): Use them. | |
3431 | |
3432 * configure.in (sitelispdir): Need to use ${PROGNAME}. | |
3433 (sitemoduledir): Ditto. | |
3434 (inststaticdir): New variable. | |
3435 (instvardir): Ditto. | |
3436 (infodir): Use them. | |
3437 (lispdir): Ditto. | |
3438 (moduledir): Ditto. | |
3439 (pkgdir): Ditto. | |
3440 (etcdir): Ditto. | |
3441 (lockdir): Ditto. | |
3442 (archlibdir): Ditto. | |
3443 | |
3828 | 3444 1999-07-14 SL Baur <steve@xemacs.org> |
422 | 3445 |
3446 * InfoDock 4.0.8 is released | |
3447 | |
4010 | 3448 1999-07-13 XEmacs Build Bot <builds@cvs.xemacs.org> |
420 | 3449 |
3450 * XEmacs 21.2.18 is released | |
3451 | |
3828 | 3452 1999-07-06 SL Baur <steve@xemacs.org> |
420 | 3453 |
3454 * config.guess (main): Synch with newer config.guess for HP | |
3455 support. | |
3456 From Marcus Thiessel <marcus@xemacs.org> | |
3457 | |
3458 1999-06-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3459 | |
3460 * configure.in (with_prefix): Added --with-prefix, defaults to | |
442 | 3461 yes, to control whether the value of --prefix is compiled into the |
420 | 3462 binary. |
3463 | |
3464 1999-07-03 Andy Piper <andy@xemacs.org> | |
3465 | |
3466 * configure.usage (--with-widgets): add. | |
3467 | |
3468 1999-07-02 Andy Piper <andy@xemacs.org> | |
3469 | |
3470 * configure.in: Make sure we get motif in lwlib if we have widgets | |
3471 and motif. | |
3472 | |
3828 | 3473 1999-06-25 SL Baur <steve@xemacs.org> |
420 | 3474 |
3475 * configure.in (version): Fix --with-infodock test. | |
3476 | |
3477 1999-06-15 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3478 | |
3479 * configure.in: --prefix and --exec-prefix are now only compiled | |
3480 into the binary if user-defined. | |
3481 | |
3482 1999-03-23 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3483 | |
3484 * configure.in: Made docdir configurable. | |
3485 | |
3486 * Makefile.in (docdir): Added variable for custom DOC directory. | |
3487 | |
4010 | 3488 1999-06-22 XEmacs Build Bot <builds@cvs.xemacs.org> |
418 | 3489 |
3490 * XEmacs 21.2.17 is released | |
3491 | |
3492 1999-06-13 Oscar Figueiredo <oscar@xemacs.org> | |
3493 | |
3494 * configure.in (with_ldap): Check libldap independently of liblber | |
3495 Do not test alternate library names such as libldap10 | |
3496 Test the presence of a variety of LDAP API functions which were | |
3497 formerly assumed to be present according to dubious heuristics | |
3498 | |
4010 | 3499 1999-06-11 XEmacs Build Bot <builds@cvs.xemacs.org> |
416 | 3500 |
3501 * XEmacs 21.2.16 is released | |
3502 | |
3503 1999-06-04 SL Baur <steve@steve1.m17n.org> | |
3504 | |
3505 * configure.in (CPP): Correct test for locating $site_prefix | |
3506 include directories. | |
3507 | |
4010 | 3508 1999-06-04 XEmacs Build Bot <builds@cvs.xemacs.org> |
414 | 3509 |
3510 * XEmacs 21.2.15 is released | |
3511 | |
3512 1999-06-01 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
3513 | |
3514 * README.packages: fix typos: user pacakge hierarchy is ~/.xemacs | |
3515 From: Eric Veldhuyzen <eric@terra.nu> | |
3516 | |
3517 1999-05-25 Jan Vroonhof <jan@xemacs.org> | |
3518 | |
3519 * configure.in: For non-beta's use x.y.z format for version strings. | |
3520 | |
3521 1999-06-03 SL Baur <steve@xemacs.org> | |
3522 | |
3523 * version.sh: add emacs_is_beta initialization | |
3524 | |
3525 * configure.in: Implement patch levels in version number | |
3526 From Jan Vroonhof <vroonhof@math.ethz.ch> | |
3527 | |
3528 * configure.in: | |
3529 * configure.usage: | |
3530 * config.h.in: Rename session option to wmcommand. | |
3531 From Oliver Graf <ograf@rhein-zeitung.de> | |
3532 | |
3533 1999-05-16 Mike McEwan <mike@lotusland.demon.co.uk> | |
3534 | |
3535 * info/dir: Add `emodules.info' entry to the top info dir. | |
3536 | |
3537 1999-05-31 SL Baur <steve@steve1.m17n.org> | |
3538 | |
3539 * configure.in (CPP): Don't check for include subdirectories in | |
442 | 3540 site-prefix directories. This check loses in valid configurations |
414 | 3541 like /usr/jp in TurboLinux. Conditionally add include directory to |
3542 site switches. | |
3543 | |
3544 1999-05-14 Hrvoje Niksic <hniksic@srce.hr> | |
3545 | |
3546 * configure.in (quoted_arguments): Support | |
3547 --error-checking=byte-code. | |
3548 | |
4010 | 3549 1999-05-14 XEmacs Build Bot <builds@cvs.xemacs.org> |
398 | 3550 |
3551 * XEmacs 21.2.14 is released | |
3552 | |
3553 1999-05-11 SL Baur <steve@altair.xemacs.org> | |
3554 | |
3555 * version.sh (infodock_build_version): Synch InfoDock version. | |
3556 | |
3557 1999-05-06 Hrvoje Niksic <hniksic@srce.hr> | |
3558 | |
442 | 3559 * aclocal.m4 (ld_dynamic_link_flags): Change -Bexport to -Bdynamic |
398 | 3560 for Solaris. |
3561 | |
3562 1999-05-03 Hrvoje Niksic <hniksic@srce.hr> | |
3563 | |
3564 * configure.in (xemacs_betaname): Don't generate Installation.el. | |
3565 | |
3566 * Makefile.in.in (top_distclean): Don't remove Installation.el. | |
3567 | |
3568 1999-04-29 Andy Piper <andy@xemacs.org> | |
3569 | |
3570 * configure.in: add mingw32 as a target platform. add nt process | |
3571 support options. | |
3572 | |
3573 1998-09-04 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
3574 | |
3575 * configure.in: Delete mule-coding.o. | |
3576 | |
3577 1999-04-22 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
3578 | |
3579 * lwlib/xlwmenu.c (string_width_u): Initialise chars before | |
3580 calling XmStringGetLtoR | |
3581 (string_draw_u): ditto and check return value of XmStringGetLtoR() | |
3582 | |
3583 1999-04-05 Olivier Galibert <galibert@pobox.com> | |
3584 | |
3585 * Makefile.in.in (GENERATED_HEADERS): Don't generate | |
3586 puresize-adjust.h anymore | |
3587 | |
3588 * configure.usage: Remove everything gung-ho or purespace related | |
3589 | |
3590 * configure.in: Ditto | |
3591 | |
3592 1999-04-17 Hrvoje Niksic <hniksic@srce.hr> | |
3593 | |
3594 * configure.in: Check for getloadavg(). | |
3595 | |
4010 | 3596 1999-03-12 XEmacs Build Bot <builds@cvs.xemacs.org> |
396 | 3597 |
3598 * XEmacs 21.2.13 is released | |
3599 | |
3600 1999-03-09 SL Baur <steve@xemacs.org> | |
3601 | |
3602 * Makefile.in.in (LC_ALL): Try very, very hard to build in C locale. | |
3603 | |
4010 | 3604 1999-03-05 XEmacs Build Bot <builds@cvs.xemacs.org> |
394 | 3605 |
3606 * XEmacs 21.2.12 is released | |
3607 | |
3608 1999-03-04 Martin Buchholz <martin@xemacs.org> | |
3609 | |
3610 * Makefile.in.in (top_distclean): Remove confdefs.h as well. | |
3611 | |
3612 1999-03-03 Martin Buchholz <martin@xemacs.org> | |
3613 | |
3614 * configure.in: | |
3615 `uname -v` -> "`uname -v`": | |
3616 backquoted expressions need additional double | |
3617 quotes to be a single token. | |
3618 Use separate if's to avoid extra process invocations. | |
3619 | |
3620 1999-01-05 Gunnar Evermann <ge204@eng.cam.ac.uk> | |
3621 | |
442 | 3622 * PROBLEMS: Document crashes on SPARC with gcc 2.8.1. |
394 | 3623 |
4010 | 3624 1999-03-01 XEmacs Build Bot <builds@cvs.xemacs.org> |
392 | 3625 |
3626 * XEmacs 21.2.11 is released | |
3627 | |
3628 1999-02-16 Andy Piper <andy@xemacs.org> | |
3629 | |
3630 * PROBLEMS: add entries for building under Cygwin. | |
3631 | |
3632 1999-02-14 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3633 | |
3634 * README.packages: Clear up that mule-sumo packages is used _in | |
3635 addition_ to the normal sumo. | |
3636 | |
3637 1999-02-16 Martin Buchholz <martin@xemacs.org> | |
3638 | |
3639 * configure.usage: Move quantify/purify into debug flags section | |
3640 | |
3641 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3642 | |
442 | 3643 * configure.in: |
392 | 3644 - Fixup xfs comments and redundant option checking |
3645 | |
442 | 3646 * configure.in: |
3647 * INSTALL: | |
392 | 3648 * lisp/paths.el: |
3649 - improved automounter tmp directory support. | |
3650 - support 4 (!) empirically discovered automounter conventions | |
3651 | |
3652 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3653 | |
442 | 3654 * lwlib/lwlib.h: |
3655 - redo CONST hacking to deal with X11 R4, which was | |
392 | 3656 broken in a previous patch. |
3657 | |
3658 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3659 | |
442 | 3660 * configure.in: |
392 | 3661 - irix uses -rpath |
3662 | |
3663 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3664 | |
442 | 3665 * configure.in: |
392 | 3666 - Check for XOpenIM before using xim=xlib |
3667 - only use XmIm if $have_motif = yes | |
3668 | |
3669 1999-02-10 Martin Buchholz <martin@xemacs.org> | |
3670 | |
3671 * configure.in. Port to BSDI BSD/OS 4.0. | |
3672 | |
3673 1999-01-07 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3674 | |
3675 * configure.in: Warn if using Motif dialog boxes on AIX 4.3. | |
3676 | |
4010 | 3677 1999-02-05 XEmacs Build Bot <builds@cvs.xemacs.org> |
390 | 3678 |
3679 * XEmacs 21.2.10 is released | |
3680 | |
4010 | 3681 1999-02-02 XEmacs Build Bot <builds@cvs.xemacs.org> |
388 | 3682 |
3683 * XEmacs 21.2.9 is released | |
3684 | |
3685 1999-01-21 Andy Piper <andy@xemacs.org> | |
3686 | |
3687 * configure.in: make xface detection specifc to a window system in | |
3688 general rather than just X. | |
3689 | |
4010 | 3690 1999-18-10 Andy Piper <andy@xemacs.org> |
388 | 3691 |
3692 * configure.in: remove -O3 prevention on cygwin - current versions | |
3693 cope ok now. remove dll prevention on cygwin - the new module | |
3694 code checks correctly. | |
442 | 3695 |
388 | 3696 1999-01-10 J. Kean Johnston <jkj@sco.com> |
3697 | |
442 | 3698 * configure.in: Added moduledir as the path where loadable modules |
388 | 3699 are stored. Added --with-site-modules and --moduledir options. |
3700 - Ensure the SCO OpenServer compiles with --dynamic by default | |
3701 - Check for dlfcn.h for dynamic loader | |
3702 - Renamed dll.o to emodules.o and changed dynamic loader tests | |
3703 - Renabled code that deals with site-lisp so that it is handled | |
3704 correctly when a user specifies --with-site-lisp. | |
3705 | |
3706 * aclocal.m4: Replaced entire file with more complete DLL tests | |
3707 by way of libtool. | |
3708 | |
3709 * config.usage: Removed TAB characters which caused it to be | |
3710 displayed incorrectly on terminals where TAB != 8. | |
3711 - Added help text to describe --with-site-modules and --moduledir. | |
3712 | |
3713 * INSTALL: Updated documentation to describe module directories | |
3714 | |
3715 * Makefile.in.in: Added moduledir, sitemoduledir macros. | |
3716 - Make those directories at install time. | |
3717 | |
4010 | 3718 1998-12-28 Martin Buchholz <martin@xemacs.org> |
386 | 3719 |
3720 * XEmacs 21.2.8 is released. | |
3721 | |
3722 1998-12-28 Martin Buchholz <martin@xemacs.org> | |
3723 | |
3724 * PROBLEMS: Document Linux GNU Libc 2.0 I18N crashes. | |
3725 | |
4010 | 3726 1998-12-24 Martin Buchholz <martin@xemacs.org> |
384 | 3727 |
3728 * XEmacs 21.2.7 is released. | |
3729 | |
3730 1998-12-20 Martin Buchholz <martin@xemacs.org> | |
3731 | |
3732 * configure.in: Redo DBM support | |
3733 - die if dbm support requested, but not provided. | |
3734 - properly check for libgdbm, then libc, then libdbm | |
3735 - properly check for ndbm.h | |
3736 - comments improved | |
3737 - XE_DIE should always prefix messages with Error: for clarity | |
3738 | |
3739 1998-12-07 Martin Buchholz <martin@xemacs.org> | |
3740 | |
3741 * xemacs.mak (TEMACS_OBJS): | |
3742 (DOC_SRC4): | |
3743 - Remove pure.c, pure.obj | |
3744 | |
3745 1998-12-06 Martin Buchholz <martin@xemacs.org> | |
3746 | |
3747 * Makefile.in.in (distclean): | |
3748 * dynodump/Makefile.in.in (distclean): | |
3749 * src/Makefile.in.in (distclean): | |
3750 * lib-src/Makefile.in.in (distclean): | |
3751 * lwlib/Makefile.in.in (distclean): | |
3752 - Make sure GNUmakefile is deleted. | |
3753 | |
3754 1998-12-17 Andy Piper <andy@xemacs.org> | |
3755 | |
3756 * configure.in (all_widgets): remove gui.o addition - its always | |
3757 in the makefile now. | |
3758 | |
3759 * configure.in: add gui-msw.o to msw objects. | |
3760 | |
382 | 3761 1998-12-16 Andy Piper <andy@xemacs.org> |
3762 | |
3763 * XEmacs 21.2.6 is released | |
3764 | |
4010 | 3765 1998-12-05 XEmacs Build Bot <builds@cvs.xemacs.org> |
380 | 3766 |
3767 * XEmacs 21.2.5 is released | |
3768 | |
377 | 3769 1998-11-28 SL Baur <steve@altair.xemacs.org> |
3770 | |
3771 * XEmacs 21.2-beta4 is released. | |
3772 | |
3773 1998-11-27 SL Baur <steve@altair.xemacs.org> | |
3774 | |
3775 * configure.in: Linux/Arm Support. | |
3776 From James LewisMoss <dres@ioa.com> | |
3777 | |
3778 1998-11-27 Takeshi Hagiwara <hagiwara@ie.niigata-u.ac.jp> | |
3779 | |
3780 * configure.in: | |
3781 Fix the realpath() problem of UnixWare2.1.3. | |
3782 Patches for NEC's sysv4.2 machine. | |
3783 | |
3784 1998-11-09 Kazuyuki IENAGA <ienaga@jsys.co.jp> | |
3785 | |
3786 * configure.in: Check if there's wnn4.2 or wnn6 specific library | |
3787 installed. The Wnn library will be checked if the --with-wnn | |
3788 and/or --with-wnn6 was specified compulsory. | |
3789 | |
3790 1998-07-28 Jan Vroonhof <vroonhof@math.ethz.ch> | |
3791 | |
3792 * configure.in (CPP): Too many spaces im run-patch flag detection. | |
3793 | |
375 | 3794 1998-10-15 SL Baur <steve@altair.xemacs.org> |
3795 | |
3796 * XEmacs 21.2-beta3 is released. | |
3797 | |
3798 1998-10-13 Andy Piper <andyp@parallax.co.uk> | |
3799 | |
3800 * configure.in: enable drag and drop support by default if mswindows is | |
3801 detected. | |
3802 | |
3803 1998-10-09 Kevin Oberman <oberman@es.net> | |
3804 | |
3805 * config.sub: Fix for Alpha architecture | |
3806 | |
3807 1998-10-05 Andy Piper <andyp@parallax.co.uk> | |
3808 | |
3809 * configure.in: don't enable shared lib support for cygwin unless | |
3810 explititly told to. | |
3811 | |
373 | 3812 1998-09-29 SL Baur <steve@altair.xemacs.org> |
3813 | |
3814 * XEmacs 21.2-beta2 is released. | |
3815 | |
3816 1998-09-09 Gunnar Evermann <Gunnar.Evermann@nats.informatik.uni-hamburg.de> | |
3817 | |
3818 * lwlib/xlwmenu.c: | |
3819 * lwlib/xlwscrollbar: fix for Motif >=2.0 | |
3820 Patch provided by Glenn Barry <gtb@eng.sun.com> | |
3821 | |
3822 * PROBLEMS: XEmacs 21.0 now works on HP-UX 11.0 | |
3823 | |
3824 1998-09-02 Andy Piper <andyp@parallax.co.uk> | |
3825 | |
3826 * configure.in: check for cygwin32/version.h. | |
3827 | |
3828 1998-08-31 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3829 | |
3830 * PROBLEMS: Added AIX 4.3 note. | |
3831 | |
3832 * configure.in: Better detection of AIX 4.3. | |
3833 AIX xlc can do -g and -Ox at the same time. | |
3834 | |
3835 1998-08-17 P. E. Jareth Hein <jareth@camelot.co.jp> | |
3836 | |
3837 * configure.in: Alter configure so that it checks for mismatched PNG | |
3838 header/libs, screams a little louder on old/mismatched library | |
3839 conditions for both PNG and XPM, stop screaming if png is not found and | |
3840 no window-system is selected, and fixed a bug in the XPM checking. | |
3841 | |
3842 1998-08-07 P. E. Jareth Hein <jareth@camelot.co.jp> | |
3843 | |
3844 * configure.usage (--without-gif): Modify text to reflect status | |
3845 of GIF support | |
3846 | |
3847 1998-08-04 P. E. Jareth Hein <jareth@camelot.co.jp> | |
3848 | |
3849 * configure.in: add back in the support for the in-core GIF | |
3850 code, change the required PNG library version to 1.0.2, and add | |
3851 a warning if PNG not found, since PNG images are now distributed | |
3852 as part of the core. Also minor wording changes in things reported | |
3853 to the user. | |
3854 | |
3855 1998-07-28 Kai Haberzettl <khaberz@synnet.de> | |
3856 | |
3857 * BETA: Update mailing-list address for build-reports | |
3858 | |
3859 1998-08-01 SL Baur <steve@altair.xemacs.org> | |
3860 | |
3861 * Makefile.in (TAGS tags): Add variable `tagslisp' so a TAGS file | |
3862 can built that includes package lisp. | |
3863 | |
3864 1998-07-23 Martin Buchholz <martin@xemacs.org> | |
3865 | |
3866 * configure.in: | |
3867 - support multiple flavors of alpha, (XEmacs treats them identically) | |
3868 - Fix AC_TRY_RUN so that actions have access to $? | |
3869 - Identify DEC C compilers. Add default optimization CFLAGS and | |
3870 always use -std. | |
3871 - Use an extensible method for adding support for future compilers. | |
3872 - Have SunPro C use that same extensible method. | |
3873 - Make sol2 always use `-R', Linux and DEC OSF always use `-rpath' | |
3874 | |
304 | 3875 1998-07-19 SL Baur <steve@altair.xemacs.org> |
3876 | |
371 | 3877 * XEmacs 21.2-beta1 is released. |
304 | 3878 |
3879 1998-07-18 SL Baur <steve@altair.xemacs.org> | |
3880 | |
3881 * config.guess: Synched with latest FSF version. | |
3882 | |
454 | 3883 1998-07-12 Bjrn Torkelsson <torkel@hpc2n.umu.se> |
304 | 3884 |
384 | 3885 * Makefile.in: added LDFLAGS. |
304 | 3886 |
300 | 3887 1998-07-12 SL Baur <steve@altair.xemacs.org> |
3888 | |
371 | 3889 * README: Bump version numbers. |
3890 * info/dir: Ditto. | |
3891 * version.sh: Ditto. | |
3892 | |
793 | 3893 * XEmacs 21.0-pre5 is released. |
300 | 3894 |
3895 1998-07-10 SL Baur <steve@altair.xemacs.org> | |
3896 | |
3897 * configure.in (with_offix): Default --with-offix to off. | |
3898 | |
298 | 3899 1998-07-09 SL Baur <steve@altair.xemacs.org> |
3900 | |
300 | 3901 * configure.in: Handle multiple database libraries. |
3902 From Gregory Neil Shapiro <gshapiro@sendmail.org> | |
3903 | |
298 | 3904 * XEmacs 21.0-pre4 is released. |
3905 | |
3906 * configure.in: Fix test for InfoDock sources. | |
3907 | |
4010 | 3908 1998-07-09 Oliver Graf <ograf@fga.de> |
298 | 3909 |
3910 * configure.usage: added warning to --with-offix | |
3911 | |
3912 1998-06-28 SL Baur <steve@altair.xemacs.org> | |
3913 | |
3914 * configure.in: Berkeley DB autodetection fixes | |
3915 From Martin Buchholz <martin@xemacs.org> | |
3916 | |
296 | 3917 1998-06-19 SL Baur <steve@altair.xemacs.org> |
3918 | |
3919 * XEmacs 21.0-pre3 is released. | |
3920 | |
4010 | 3921 1998-06-20 Kazuyuki IENAGA <ienaga@jsys.co.jp> |
296 | 3922 |
3923 * configure.in: Added check if the berkdb has db_open or not. | |
3924 (With fixes from Martin Buchholz) | |
3925 | |
294 | 3926 1998-06-19 SL Baur <steve@altair.xemacs.org> |
3927 | |
3928 * XEmacs 21.0-pre2 is released. | |
3929 | |
3930 1998-06-18 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
3931 | |
3932 * configure.in: Added -lC for static linking under AIX 4.2. | |
3933 | |
292 | 3934 1998-06-14 SL Baur <steve@altair.xemacs.org> |
3935 | |
3936 * XEmacs 21.0-pre1 is released. | |
3937 | |
290 | 3938 1998-06-11 SL Baur <steve@altair.xemacs.org> |
3939 | |
292 | 3940 * XEmacs 21.0-beta43 is released. |
290 | 3941 |
4010 | 3942 1998-06-04 Oliver Graf <ograf@fga.de> |
290 | 3943 |
3944 * tests/Dnd/README: a step-by-step test run | |
3945 * tests/Dnd/droptest.el: some clarifications | |
3946 * tests/Dnd/droptest.sh: created, creates test files | |
3947 | |
4010 | 3948 1998-06-01 Oliver Graf <ograf@fga.de> |
290 | 3949 |
3950 * configure.in (summary): added experimental to dragndrop option | |
3951 * configure.usage: added experimental note to --with-dragndrop | |
3952 * tests/Dnd/droptest.el: extra start-drag-region function | |
3953 changed the experimental- stuff | |
3954 | |
3955 1998-06-07 SL Baur <steve@altair.xemacs.org> | |
3956 | |
3957 * lwlib/xlwmenu.c: Add room for the 0 byte sentinel. | |
3958 | |
3959 1998-06-05 Colin Rafferty <colin@xemacs.org> | |
3960 | |
3961 * lwlib/xlwmenu.c: Made newchars be as large as it needs to be. | |
3962 | |
288 | 3963 1998-06-01 SL Baur <steve@altair.xemacs.org> |
3964 | |
3965 * XEmacs 21.0-beta42 is released. | |
3966 | |
3967 1998-05-29 Andy Piper <andyp@parallax.co.uk> | |
3968 | |
3969 * configure.in: don't use -O3 for cygwin. | |
3970 | |
3971 1998-05-28 P. E. Jareth Hein <jareth@camelot-soft.com> | |
3972 | |
3973 * configure.in: Switch from giflib to gifreader for | |
3974 our GIF image support (no other mods needed) | |
3975 | |
290 | 3976 1998-05-28 Oliver Graf <ograf@fga.de> |
288 | 3977 |
3978 * configure.in: only one DnD protocol, CDE has priority over OffiX | |
3979 | |
3980 * tests/Dnd/README: some changes reflecting recent modifications | |
3981 * tests/Dnd/dragtest.el: removed | |
3982 * tests/Dnd/droptest.el: cosmetics and comments | |
3983 | |
290 | 3984 1998-05-26 Oliver Graf <ograf@fga.de> |
288 | 3985 |
3986 * tests/Dnd/droptest.el: adapted to CDE extensions | |
3987 | |
290 | 3988 1998-05-25 Hans Guenter Weigand <hgweigand@wiesbaden.netsurf.de> |
3989 | |
3990 * configure.in: | |
3991 * config.sub: add initial OpenBSD support | |
3992 | |
288 | 3993 1998-05-21 Andy Piper <andyp@parallax.co.uk> |
3994 | |
3995 * configure.in: check for msw dialogs. | |
3996 | |
286 | 3997 1998-05-23 SL Baur <steve@altair.xemacs.org> |
3998 | |
3999 * XEmacs 21.0-beta41 is released. | |
4000 | |
4001 1998-05-17 SL Baur <steve@altair.xemacs.org> | |
4002 | |
4003 * configure.in (CPP): Change -O2 to -O3. | |
4004 Suggested by Martin Buchholz <martin@xemacs.org> | |
4005 | |
284 | 4006 1998-05-15 SL Baur <steve@altair.xemacs.org> |
4007 | |
4008 * XEmacs 21.0-beta40 is released. | |
4009 | |
4010 1998-05-13 SL Baur <steve@altair.xemacs.org> | |
4011 | |
4012 * configure.in (ZSH_VERSION): zsh-3.1.2 (and zsh-3.0.4) drops core | |
4013 on the `unset CDPATH' if running as sh. | |
4014 | |
4010 | 4015 1998-05-12 Oliver Graf <ograf@fga.de> |
284 | 4016 |
4017 * tests/Dnd/droptest.el: some CDE adaptions (untested) | |
4018 | |
4019 1998-05-11 Martin Buchholz <martin@xemacs.org> | |
4020 | |
4021 * configure.in: | |
4022 Add some more comments. | |
4023 If using bash, use Posix mode and unset CDPATH. | |
4024 Be more careful checking feature dependencies. | |
4025 Introduce XE_CHECK_FEATURE_DEPENDENCY. | |
4026 Undo the gross hack of multiple `echo >> $tempcname' | |
4027 by using here documents instead. (Might break mswindows, tho...) | |
4028 Be more careful autodetecting tooltalk. | |
4029 | |
4030 * PROBLEMS: | |
4031 Document problems with Solaris 2.6 + XSUNTRANSPORT | |
4032 | |
384 | 4033 * Makefile.in: |
284 | 4034 * lwlib/Makefile.in.in: |
4035 * modules/Makefile.in: | |
4036 - Adjust for luser's CDPATH being set to something weird. | |
4037 - Take into account bash 2.02's tendency to print the cwd when | |
4038 using CDPATH. Always use `cd ./foo' instead of `cd foo'. | |
4039 - fix the run-temacs target to use $(DUMPENV) | |
4040 - fix the run-puremacs target to use $(DUMPENV) | |
4041 - fix the `depend' target to properly $(RM) the right files | |
4042 - Generate a better TAGS file for XEmacs' lisp code using | |
4043 hand-crafted regexps. | |
4044 - Use standard coding conventions for modules/Makefile.in | |
4045 | |
4010 | 4046 1998-05-12 Kazuyuki IENAGA <ienaga@jsys.co.jp> |
284 | 4047 |
4048 * configure.in: some people claimed that they can't stop | |
4049 linking wnn6 library if they set --with-wnn6=no. | |
4050 | |
4010 | 4051 1998-05-11 Oliver Graf <ograf@fga.de> |
284 | 4052 |
4053 * tests/Dnd/droptest.el: adapted to new calling conventions | |
4054 also showing the new possibilities | |
4055 * tests/Dnd/README: changed to new protocol | |
4056 | |
4010 | 4057 1998-05-11 SAKIYAMA Nobuo <nobuo@db3.so-net.or.jp> |
284 | 4058 |
4059 * Fix for HAVE_MULTICAST check. | |
4060 | |
282 | 4061 1998-05-09 SL Baur <steve@altair.xemacs.org> |
4062 | |
4063 * XEmacs 21.0-beta39 is released. | |
4064 | |
4010 | 4065 1998-05-06 Oliver Graf <ograf@fga.de> |
282 | 4066 |
4067 * configure.in: added autodetection for the Drag'n'Drop API | |
4068 if some DnD protocol is found, HAVE_DRAGNDROP will be defined | |
4069 and dragdrop.o is added to extra_objs | |
4070 * configure.usage: added with-dragndrop, added (*) to with-offix | |
4071 * tests/Dnd/droptest.el: complete overhaul, no it's a real test | |
4072 | |
4010 | 4073 1998-05-04 Oliver Graf <ograf@fga.de> |
282 | 4074 |
4075 * tests/Dnd/droptest.el: changed to test new protocol | |
4076 * tests/Dnd/README.OffiX: removed | |
4077 * tests/Dnd/README: created, info about new protocol | |
4078 * tests/Dnd/dragtest.el: comment change | |
4079 | |
280 | 4080 1998-05-02 SL Baur <steve@altair.xemacs.org> |
4081 | |
4082 * XEmacs 21.0-beta38 is released. | |
4083 | |
4084 1998-04-29 SL Baur <steve@altair.xemacs.org> | |
4085 | |
4086 * configure.in: Use `PROGNAME' for all generated paths. | |
4087 | |
4088 * Makefile.in: Change `progname' to `PROGNAME' for consistency. | |
4089 | |
4090 1998-04-27 SL Baur <steve@altair.xemacs.org> | |
4091 | |
384 | 4092 * configure.in (progname): Parameterize program name on `progname' |
280 | 4093 and add --with-infodock. |
4094 | |
4095 1998-04-26 SL Baur <steve@altair.xemacs.org> | |
4096 | |
4097 * Makefile.in: Religiously use ${progname} instead of hardcoded | |
4098 `xemacs'. | |
4099 CPPFLAGS was being set correctly in ${subdir}/Makefiles and | |
4100 overridden by the empty one set in the toplevel Makefile. | |
4101 | |
278 | 4102 1998-04-25 SL Baur <steve@altair.xemacs.org> |
4103 | |
4104 * XEmacs-21.0-beta37 is released. | |
4105 | |
4106 1998-04-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4107 | |
4108 * configure.in: Sychronized ..._USER_DEFINED variables with | |
4109 datadir setting. | |
4110 | |
4111 * Makefile.in (mkdir): No longer create sitelispdir. | |
4112 | |
4113 Sat Apr 24 1998 Andy Piper <andyp@parallax.co.uk> | |
4114 | |
371 | 4115 * configure.in: make graphic libraries tests be dependant on a |
278 | 4116 window system not X11 only. |
4117 | |
4118 Fri Apr 24 19:38:19 1998 Andy Piper <andyp@parallax.co.uk> | |
4119 | |
4120 * configure.in: check for our special select in msw. | |
4121 | |
4122 1998-04-22 Marcus Thiessel <marcus_thiessel@hp.com> | |
4123 | |
4124 * PROBLEMS: add answers to some FAQ concerning hpux. | |
4125 | |
4126 Wed Apr 22 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
4127 | |
4128 * configure.in: enable checking for special mswindows select() | |
4129 | |
4130 1998-04-21 Martin Buchholz <martin@xemacs.org> | |
4131 | |
4132 * configure.in: Isolate incomprehensible cma_open/pthreads checking | |
4133 to decosf* | |
4134 | |
4135 1998-04-21 Marcus Thiessel <marcus_thiessel@hp.com> | |
4136 | |
4137 * configure.in: /usr/{include,lib}/Motif2.1 added to search path for X11 | |
4138 libs and includes. | |
4139 | |
4140 1998-04-22 Itay Ben-Yaacov <pezz@www-mail.huji.ac.il> | |
4141 | |
4142 * configure.in: check for xpm does not depend anymore on having X. | |
4143 if libXpm exists, and is of the FOR_MSW flavor, define FOR_MSW. | |
4144 | |
4145 1998-04-19 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
4146 | |
4147 * info/dir: Fixed the explanatory notes for | |
4148 `Info-default-directory-list' removal and the new automatic dir | |
4149 rebuilding facility. Reindented the menu. Added an entry for | |
384 | 4150 term.info |
278 | 4151 |
4152 1998-04-20 SL Baur <steve@altair.xemacs.org> | |
4153 | |
4154 * configure.in (LISPDIR): Removed configuration option for | |
4155 site-lisp. | |
4156 | |
4157 1998-04-19 SL Baur <steve@altair.xemacs.org> | |
4158 | |
4159 * configure.in (version): snarf InfoDock version number. | |
4160 | |
276 | 4161 1998-04-18 SL Baur <steve@altair.xemacs.org> |
4162 | |
4163 * XEmacs-21.0-beta36 is released. | |
4164 | |
4165 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
4166 | |
4167 * configure.in: enable install pre-processing for mswindows | |
4168 | |
4169 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
384 | 4170 |
276 | 4171 * Makefile.in.in: add install_pp to install incantation. |
4172 | |
4173 * installexe.sh: new file. Add .exe to install targets if the | |
4174 result is executable. | |
4175 | |
4176 Fri Apr 17 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
384 | 4177 |
276 | 4178 * Makefile.in: add install_pp to install incantation. |
4179 | |
4010 | 4180 1998-04-14 Itay Ben-Yaacov <pezz@www-mail.huji.ac.il> |
276 | 4181 |
4182 * configure.in: Large echo split into a few smaller ones, | |
4183 so the cygnus sh.exe does not crash. | |
4184 | |
4185 Thu Apr 16 12:59:35 1998 Andy Piper <andyp@parallax.co.uk> | |
4186 | |
4187 * configure.in: enable toolbar checking for mswindows build | |
4188 | |
4189 1998-04-06 Martin Buchholz <martin@xemacs.org> | |
4190 | |
384 | 4191 * config.h.in: Add _SVID_SOURCE to list of xmkmf #defines. |
276 | 4192 Used (at least) by RedHat 4.2. |
4193 | |
4194 1998-04-11 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4195 | |
4196 * configure.in: Re-instated src/paths.h generation from | |
4197 src/paths.h.in. | |
4198 | |
4199 * Makefile.in (top_distclean): Remove site-lisp on `make | |
4200 distclean'. | |
4201 | |
274 | 4202 1998-04-10 SL Baur <steve@altair.xemacs.org> |
4203 | |
4204 * XEmacs 21.0-beta35 is released. | |
4205 | |
4206 1998-04-10 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4207 | |
4208 * configure.usage: Clarified --package-path documentation. | |
4209 | |
4210 1998-04-07 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4211 | |
4212 * configure.in: Now generates src/paths.h from src/paths.h.in.in. | |
4213 Removed defaults for infopath and package-path. | |
4214 | |
4215 * Makefile.in (src/paths.h): ... is now generated from | |
4216 src/paths.h.in.in. Moved generation of paths.h to configure. | |
4217 | |
4218 * paths.h.in: Removed. | |
4219 | |
4220 * paths.h.in.in: Created. | |
4221 | |
4222 1998-04-06 Martin Buchholz <martin@xemacs.org> | |
4223 | |
4224 * configure.in: png was still being used if png_version < 0.96 | |
4225 | |
4226 * configure.in: Fixed magic to handle AIX, X11R6, and gcc. | |
4227 | |
4228 1998-04-05 Amir J. Katz <amir@ndsoft.com> | |
4229 | |
4230 * INSTALL (Rationale): Offix support comment is wrong. To disable, | |
4231 one must use --with-offix=no and not --without-offix | |
4232 | |
4233 1998-04-05 SL Baur <steve@altair.xemacs.org> | |
4234 | |
4235 * configure.in (CPP): ppc.ldscript sits in $srcdir/src not $srcdir. | |
4236 | |
272 | 4237 1998-04-04 SL Baur <steve@altair.xemacs.org> |
4238 | |
4239 * XEmacs 21.0-beta34 is released. | |
4240 | |
4241 1998-04-03 Martin Buchholz <martin@xemacs.org> | |
4242 | |
4243 * configure.in: | |
4244 checking whether gettimeofday accepts one or two arguments... two | |
4245 | |
4246 1998-04-03 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4247 | |
4248 * configure.in: Fixed magic to handle AIX and MIT X11R6. | |
4249 | |
4250 1998-04-02 Martin Buchholz <martin@xemacs.org> | |
4251 | |
4252 * configure.in: Add magic -T $srcdir/ppc.ldscript on Linux powerpc | |
4253 | |
4254 1998-04-01 Martin Buchholz <martin@xemacs.org> | |
4255 | |
4256 * tests/database.el (test-database): Temporary files (the databases | |
4257 that were created) should be deleted. | |
4258 | |
4259 * Makefile.in (testdir): Remove gnumake-specific syntax. | |
4260 (src/Makefile): src/Makefile depends on src/depend. | |
4261 | |
4262 1998-03-29 Martin Buchholz <martin@xemacs.org> | |
4263 | |
4264 * configure.in: Check for -lz, -lgz unconditionally. Too many | |
4265 system linkers don't properly die when there are cascaded link | |
4266 dependencies, so we can't rely on the linker for that. The only | |
384 | 4267 downside is that we might link with an extra unneeded library. If |
272 | 4268 you really really care about this, you can go fix it. |
4269 | |
4270 * configure.in: Enhance PANIC msg to make it clear that | |
4271 --with-FEATURE is going to die if FEATURE is not installed. | |
4272 | |
4273 1998-03-27 Martin Buchholz <martin@xemacs.org> | |
4274 | |
4275 * configure.in: $debug was not properly dependent on $beta | |
384 | 4276 |
4277 * configure.in: Move offix configuration out of src/Makefile.in.in | |
272 | 4278 into configure.in. |
4279 | |
4280 * configure.in: Reorganize xpm detection code. | |
4281 | |
384 | 4282 * configure.in: XIM default to ON if Motif which is not Lesstif is |
272 | 4283 found. |
4284 | |
4285 * configure.in: Keep auto-generated makefile dependencies out of | |
4286 src/Makefile.in.in by using AC_OUTPUT file concatenation support. | |
4287 | |
4288 1998-03-26 Martin Buchholz <martin@xemacs.org> | |
4289 | |
4290 * configure.in: Fix up cflags handling. Specifically, configure | |
4291 --cflags='' would fail to be recognized. | |
4292 | |
4293 * configure.in: Fix up png detection. Link with png_read_image to | |
4294 make sure -lz is required. Test for png >- 0.96 via header file. | |
4295 | |
4296 1998-03-21 Martin Buchholz <martin@xemacs.org> | |
4297 | |
4298 * configure.in (XE_GCC_WRAP_LDFLAGS) | |
4299 Rename to XE_PROTECT_LINKER_FLAGS. Rewrite. | |
4300 | |
4301 * configure.in: Make sure BSD always links in libz.a | |
4302 BSD's stupid linker can't detect cascaded lib dependencies | |
4303 | |
4304 * configure.in: Autodetect lesstif. define have_lesstif. | |
4305 Don't use motif-xim with lesstif, at least by default. | |
4306 | |
4307 1998-03-30 SL Baur <steve@altair.xemacs.org> | |
4308 | |
4309 * version.sh: Add InfoDock version number variables. | |
4310 | |
4311 1998-03-30 Amir J. Katz <amir@ndsoft.com> | |
4312 | |
4313 * info/dir: Replaced string '20.5' with '21.0' | |
4314 | |
269 | 4315 1998-03-24 SL Baur <steve@altair.xemacs.org> |
4316 | |
4317 * XEmacs 21.0-beta33 is released. | |
4318 | |
4010 | 4319 1998-03-26 Didier Verna <didier@xemacs.org> |
269 | 4320 |
4321 * configure.in, Makefile.in: Removed infopath_user_defined---we | |
4322 always want to propagate it. | |
4323 | |
4324 * configure.usage: Synched with configure.in. | |
4325 | |
4326 1998-03-25 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4327 | |
4328 * configure.usage, INSTALL: Synched with the new path layout. | |
4329 | |
4330 * Makefile.in (src/paths.h): Replaced packagepath with | |
4331 package_path to make configure happy. | |
4332 | |
4333 * configure.in: Made default setting for packagepath conform to | |
4334 what packages.el builds at run-time: XEmacs-version-specific paths | |
4335 before site-specific ones. | |
4336 Added default setting for pkgdir. | |
4337 Changed --packagepath back to --package-path. | |
4338 | |
267 | 4339 1998-03-24 SL Baur <steve@altair.xemacs.org> |
4340 | |
4341 * XEmacs 21.0-beta32 is released. | |
4342 | |
4343 1998-03-23 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4344 | |
4345 * configure.in: Extended package path by version-specific | |
4346 hierarchies. Changed allow-site-lisp to inhibit-site-lisp. | |
4347 | |
4348 1998-03-22 SL Baur <steve@altair.xemacs.org> | |
4349 | |
4350 * Makefile.in (distclean): Remove packages and mule-packages if they | |
4351 have been linked into place. | |
4352 | |
4353 1998-03-22 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de> | |
4354 | |
4355 * <Today>: The Big Path Searching Overhaul. | |
4356 | |
4357 * Makefile.in, configure.in: Now pass all configure-specified paths | |
4358 into the binary in a uniform way. | |
4359 | |
4360 1998-03-20 SL Baur <steve@altair.xemacs.org> | |
4361 | |
4362 * configure.in (have_libmcheck): Add test for glibc's malloc | |
4363 checker. | |
4364 - Fix HP/UX dynamic linking flag. | |
4365 | |
4366 1998-03-19 SL Baur <steve@altair.xemacs.org> | |
4367 | |
4368 * configure.in (quoted_arguments): Fix unquoted variable in | |
4369 error-checking test. | |
4370 - fix bogus substitution. | |
384 | 4371 |
267 | 4372 1998-03-17 SL Baur <steve@altair.xemacs.org> |
4373 | |
4374 * configure.in: In -lpng test, look for png_set_strip_alpha. | |
4375 Suggested by William M. Perry <wmperry@aventail.com> | |
4376 | |
265 | 4377 1998-03-16 SL Baur <steve@altair.xemacs.org> |
4378 | |
4379 * XEmacs 21.0 beta31 is released. | |
4380 | |
4381 1998-03-16 P. E. Jareth Hein <jareth@camelot-soft.com> | |
4382 | |
4383 * configure.usage (Usage): Correct information about gif, tiff | |
4384 and WNN entries | |
4385 | |
4386 1998-03-13 SL Baur <steve@altair.xemacs.org> | |
4387 | |
4388 * configure.in: typo fix in sed command. | |
4389 From P. E. Jareth Hein <jareth@camelot-soft.com> | |
4390 | |
4391 * configure.in (all_widgets): Check for snprintf(). | |
4392 | |
4393 1998-03-11 P. E. Jareth Hein <jareth@camelot-soft.com> | |
4394 | |
4395 * configure.in: New gif support | |
4396 | |
4397 1998-03-10 SL Baur <steve@altair.xemacs.org> | |
4398 | |
4399 * configure.in (have_glibc): Don't define _GNU_SOURCE for glibc. | |
4400 | |
4401 Mon Mar 09 13:00:55 1998 Andy Piper <andyp@parallax.co.uk> | |
4402 | |
4403 * configure.in: don't add libc to link list for dlopen ordinary | |
4404 link takes care of this. check for dlfcn.h | |
4405 | |
4406 1998-03-10 SL Baur <steve@altair.xemacs.org> | |
4407 | |
4408 * configure.in: Examine each directory of X11 include path for | |
4409 inclusion into BITMAPDIR. | |
4410 | |
4411 1998-03-09 SL Baur <steve@altair.xemacs.org> | |
4412 | |
4413 * aclocal.m4: Add legalese. | |
4414 | |
4415 Mon Mar 09 13:00:55 1998 Andy Piper <andyp@parallax.co.uk> | |
4416 | |
4417 * configure.in: make sure we have ndbm.h as well as libgdbm.a for | |
4418 database support. | |
4419 | |
4420 * configure.in: move msw checking after x checking so that | |
4421 auto-detection works. | |
4422 | |
4423 1998-03-09 SL Baur <steve@altair.xemacs.org> | |
4424 | |
4425 * configure.in: New DLL support. | |
4426 * aclocal.m4: New file. | |
4427 From William M. Perry <wmperry@aventail.com> | |
4428 | |
4429 1998-03-08 SL Baur <steve@altair.xemacs.org> | |
4430 | |
4431 * configure.in (xemacs_betaname): Align messages for minimal | |
4432 tagbits and indexed lrecords. | |
4433 Suggested by Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
4434 | |
263 | 4435 1998-03-07 SL Baur <steve@altair.xemacs.org> |
4436 | |
4437 * XEmacs 20.5-beta30 is released. | |
4438 | |
4439 1998-03-05 SL Baur <steve@altair.xemacs.org> | |
4440 | |
4441 * PROBLEMS: Update wording of x86 GCC 2.7 problems. | |
4442 | |
4443 Wed Mar 04 08:55:12 1998 Andy Piper <andyp@parallax.co.uk> | |
4444 | |
4445 * configure.in: add a --with-msw option. Make X and msw work | |
4446 together if the user asks. | |
4447 | |
4448 1998-03-02 SL Baur <steve@altair.xemacs.org> | |
4449 | |
4450 * PROBLEMS: Update documentation of gcc bugs that impact XEmacs. | |
4451 | |
4452 1998-03-01 SL Baur <steve@altair.xemacs.org> | |
4453 | |
4454 * configure.in: Add substitutable variable ld_dynamic_link_flags | |
4455 for special required linker flags for building DLL capable | |
4456 binaries. | |
4457 | |
261 | 4458 1998-02-28 SL Baur <steve@altair.xemacs.org> |
4459 | |
4460 * Makefile.in (top_distclean): Remove Installation.el. | |
4461 (xemacs): New target. Formerly it was `all:'. | |
4462 (all): New default, dist: is now superfluous. | |
4463 | |
4464 1998-02-27 SL Baur <steve@altair.xemacs.org> | |
4465 | |
4466 * configure.in (GNU_MALLOC): add --with-dlmalloc to allow | |
4467 selective use of Doug Lea malloc in Linux C Library and GNU C Library. | |
4468 (Installation): Add XEmacs version and generate `Installation.el'. | |
4469 | |
4470 1998-02-26 SL Baur <steve@altair.xemacs.org> | |
4471 | |
4472 * configure.in (with_ldap: Fix -lldap autodection. | |
4473 Suggested by Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch> | |
4474 (Installation): Only keep the last configuration. | |
4475 | |
259 | 4476 1998-02-25 SL Baur <steve@altair.xemacs.org> |
4477 | |
4478 * XEmacs 20.5-beta28 is released. | |
4479 | |
4480 * configure.in (with_session): Fix reporting of the setting. | |
4481 (with_database_gnudbm): Correctly report setting. | |
4482 | |
4483 1998-02-24 SL Baur <steve@altair.xemacs.org> | |
4484 | |
4485 * configure.usage: Restore documentation of graphics library | |
4486 flags. | |
4487 From Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
4488 | |
4489 1998-02-19 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
4490 | |
4491 * PROBLEMS: Tell of the `gpm' SIGTSTP bug and `C-z' on the Linux | |
4492 console. | |
4493 | |
4494 1998-02-23 SL Baur <steve@altair.xemacs.org> | |
4495 | |
4496 * XEmacs 20.4 is released to the beta testers. | |
4497 | |
4498 1998-02-21 SL Baur <steve@altair.xemacs.org> | |
4499 | |
384 | 4500 * configure.in (after_morecore_hook_exists): Modify dlmalloc tests |
259 | 4501 to also test for Linux libc5. |
4502 | |
255 | 4503 1998-02-19 SL Baur <steve@altair.xemacs.org> |
4504 | |
257 | 4505 * XEmacs 20.5-beta27 is released. |
4506 * XEmacs-20.4-pre4 is released. | |
4507 | |
4508 * configure.in (doug_lea_malloc): Requires USE_MINIMAL_TAGBITS. | |
4509 (--with-gung): Implement it. | |
4510 | |
4511 * configure.usage (--with-gung): Document. Turns on | |
4512 USE_MINIMAL_TAGBITS and USE_INDEXED_LRECORD_IMPLEMENTATION. | |
4513 (--with-term): Remove. | |
384 | 4514 |
255 | 4515 * XEmacs-20.5-beta26 is released. |
4516 | |
4517 1998-02-18 SL Baur <steve@altair.xemacs.org> | |
4518 | |
4519 * XEmacs-20.4-pre3 is released. | |
4520 | |
4521 * Makefile.in: use better feedback while rebuilding finder database. | |
4522 Suggested by Stephen J. Turnbull <turnbull@sk.tsukuba.ac.jp> | |
4523 | |
4524 1998-02-15 SL Baur <steve@altair.xemacs.org> | |
4525 | |
4526 * configure.in (doug_lea_malloc): Add checking for Doug Lea | |
4527 Malloc. | |
4528 | |
253 | 4529 1998-02-14 SL Baur <steve@altair.xemacs.org> |
4530 | |
255 | 4531 * configure.in (OFFIX_O): Don't use OffiX if no real Xmu support. |
4532 Suggested by Pekka Marjola <pema@iki.fi> | |
4533 | |
4534 * XEmacs-20.4-pre2 is released. | |
253 | 4535 * XEmacs-20.5-beta25 is released. |
4536 | |
4537 1998-02-13 SL Baur <steve@altair.xemacs.org> | |
4538 | |
4539 * INSTALL: Update for Cygwin and Microsoft Windows. | |
4540 | |
4541 * README: Update for Microsoft Windows. | |
4542 | |
251 | 4543 1998-02-09 SL Baur <steve@altair.xemacs.org> |
4544 | |
253 | 4545 * XEmacs 20.4-pre1 is released. |
251 | 4546 * XEmacs 20.5-beta24 is released. |
4547 | |
4548 Wed Jan 28 13:41:22 1998 Andy Piper <andyp@parallax.co.uk> | |
4549 | |
4550 * configure.in: add mule-coding target which defines MULE_CODING, | |
4551 nothing uses it as yet. add gif objects to msw support. define | |
4552 const_is_losing=no for msw. make msw not selected if tty selected. | |
4553 add -lshell32 for dnd support. check for a.out.h rather than | |
4554 coff.h | |
4555 | |
4556 * lib-src/make-docfile.c: add cygwin support and generalise the | |
4557 remaining open calls. IMHO this should really include sysfile.h. | |
4558 | |
249 | 4559 1998-02-03 SL Baur <steve@altair.xemacs.org> |
4560 | |
4561 * XEmacs 20.5-beta23 is released. | |
4562 | |
247 | 4563 1998-01-27 SL Baur <steve@altair.xemacs.org> |
4564 | |
4565 * XEmacs 20.5-beta22 is released. | |
4566 | |
245 | 4567 1998-01-25 SL Baur <steve@altair.xemacs.org> |
4568 | |
4569 * XEmacs 20.5-beta21 is released. | |
4570 | |
4571 Wed Jan 21 10:49:47 1998 Andy Piper <andyp@parallax.co.uk> | |
4572 | |
4573 * configure.in: check for coff.h | |
4574 | |
4575 1998-01-21 Hrvoje Niksic <hniksic@srce.hr> | |
4576 | |
4577 * configure.in: Added support for `--with-shlib'. | |
4578 | |
243 | 4579 1998-01-18 SL Baur <steve@altair.xemacs.org> |
4580 | |
4581 * XEmacs 20.5-beta20 is released. | |
4582 | |
4583 1998-01-13 Martin Buchholz <martin@xemacs.org> | |
4584 | |
384 | 4585 * configure.usage: |
243 | 4586 Remove doc for configure-time INFOPATH, no longer used. |
4587 | |
4588 * configure.in: | |
4589 * src/config.h.in: | |
4590 Define HAVE_INVERSE_HYPERBOLIC using 1 configure test, not 3. | |
4591 | |
384 | 4592 * lwlib/lwlib.h: |
4593 * lwlib/lwlib.c: | |
4594 * lwlib/lwlib-config.c: | |
4595 * lwlib/lwlib-Xm.c: | |
4596 * lwlib/lwlib-Xaw.c: | |
4597 * lwlib/lwlib-Xlw.c: | |
4598 * lwlib/config.h.in: | |
243 | 4599 * src/menubar-x.c: |
4600 Prepend LWLIB_ to (SCROLLBARS|MENUBARS|DIALOGS)_(MOTIF|LUCID|ATHENA). | |
4601 Maintain only one set of variables. | |
4602 | |
4603 * Makefile.in (install-arch-dep): Simplify. | |
384 | 4604 Replace construct `test -d $dir && foo' with |
243 | 4605 `if test -d $dir; then foo; fi' |
4606 | |
384 | 4607 * lwlib/xlwmenu.c: |
4608 * lwlib/xlwscrollbar.c: | |
4609 * lwlib/lwlib-Xlw.c: | |
4610 * lwlib/lwlib-Xm.c: | |
243 | 4611 Always assume presence of limits.h (ANSI). |
4612 | |
241 | 4613 1998-01-12 SL Baur <steve@altair.xemacs.org> |
4614 | |
243 | 4615 * INSTALL: Updated for recent Mule/package changes. |
4616 | |
241 | 4617 * XEmacs 20.5-beta19 is released. |
4618 | |
4619 1998-01-12 Damon Lipparelli <lipp@primus.com> | |
4620 | |
4621 * Makefile.in: Yow! Fixed paths to install dirs when --prefix != | |
4622 --exec-prefix. | |
4623 | |
239 | 4624 1998-01-10 SL Baur <steve@altair.xemacs.org> |
4625 | |
4626 * XEmacs 20.5-beta18 is released. | |
4627 | |
442 | 4628 1998-01-08 Didier Verna <didier@xemacs.org> |
239 | 4629 |
4630 * configure.in: Get rid of INFOPATH for configure time. | |
4631 * configure.usage (Usage): Ditto. | |
4632 | |
4633 1998-01-09 SL Baur <steve@altair.xemacs.org> | |
4634 | |
4635 * Makefine.in: Correct reported amount of disk savings from | |
4636 compression. | |
4637 From Markus Linnala <maage@cs.tut.fi> | |
4638 | |
4639 Thu Jan 08 09:42:36 1998 <andyp@parallax.co.uk> | |
4640 | |
4641 * configure.in: detect and set scrollbars and menubars with | |
4642 MS-Windows more appropriately. Check for sys/un.h to use in | |
4643 gnuserv. | |
4644 | |
4645 1998-01-07 SL Baur <steve@altair.xemacs.org> | |
4646 | |
4647 * Makefile.in (progname): Cleanly parameterize XEmacs-specific | |
4648 naming. | |
4649 | |
4650 1998-01-05 Glynn Clements <glynn@sensei.co.uk> | |
4651 | |
4652 * lwlib/xlwmenu.c (push_button_draw): use inactive_gc instead of | |
4653 inactive_button_gc for menu entries. | |
4654 (remap_menubar): ignore the enabled status | |
4655 | |
237 | 4656 1998-01-04 SL Baur <steve@altair.xemacs.org> |
4657 | |
4658 * XEmacs 20.5-beta17 is released. | |
4659 | |
4660 * Makefile.in (finder): Use -vanilla. | |
4661 (lisp/finder-inf.el): Ditto. | |
4662 (check-features): New target. Do a sanity check prior to | |
4663 installation. | |
4664 | |
235 | 4665 1997-01-03 SL Baur <steve@altair.xemacs.org> |
4666 | |
4667 * XEmacs 20.5-beta16 is released. | |
4668 | |
233 | 4669 1997-12-30 SL Baur <steve@altair.xemacs.org> |
4670 | |
4671 * XEmacs 20.5-beta15 is released. | |
4672 | |
4673 1997-12-29 SL Baur <steve@altair.xemacs.org> | |
4674 | |
4675 * Makefile.in (${SUBDIR}): Remove bogus .RECURSIVE dependency. | |
4676 | |
231 | 4677 1997-12-27 SL Baur <steve@altair.xemacs.org> |
4678 | |
4679 * XEmacs 20.5-beta14 is released. | |
4680 | |
4010 | 4681 1997-12-23 Andy Piper <andyp@parallax.co.uk> |
231 | 4682 |
4683 * configure.in: support for *-pc-cygwin32 config | |
4684 | |
229 | 4685 1997-12-25 SL Baur <steve@altair.xemacs.org> |
4686 | |
4687 * XEmacs 20.5-beta13 is released. | |
4688 | |
227 | 4689 1997-12-20 SL Baur <steve@altair.xemacs.org> |
4690 | |
4691 * XEmacs 20.5-beta 12 is released. | |
4692 | |
4693 1997-12-19 SL Baur <steve@altair.xemacs.org> | |
4694 | |
384 | 4695 * configure.in (bitmapdir): Reenable --with-session by default for |
227 | 4696 testing. |
4697 | |
4698 1997-12-17 SL Baur <steve@altair.xemacs.org> | |
4699 | |
4700 * info/dir (File): Skk and Gnats are packaged. | |
4701 | |
4702 * PROBLEMS (Note): Update version numbers. | |
4703 | |
4704 * info/dir (File): Update version number. | |
4705 | |
225 | 4706 1997-12-16 SL Baur <steve@altair.xemacs.org> |
4707 | |
227 | 4708 * XEmacs 20.5-beta11 is released. |
225 | 4709 |
4710 1997-12-14 SL Baur <steve@altair.xemacs.org> | |
4711 | |
4712 * configure.in: Don't bypass graphics library detection | |
4713 if the `--with-imagick' option is given to configure. | |
4714 : Print autodetected graphics libraries to be linked with Imagick. | |
4715 | |
4716 * Makefile.in (lisp/finder-inf.el): Reverse previous change. | |
4717 | |
4718 1997-12-14 Olivier Galibert <olivier.galibert@mines.u-nancy.fr> | |
4719 | |
4720 * Makefile.in (install-arch-indep): Build info files if needed. | |
4721 | |
223 | 4722 1997-12-13 SL Baur <steve@altair.xemacs.org> |
4723 | |
225 | 4724 * Makefile.in (lisp/finder-inf.el): Add dependency on src/. |
4725 | |
227 | 4726 * XEmacs 20.5-beta10 is released. |
223 | 4727 |
4728 1997-12-12 SL Baur <steve@altair.xemacs.org> | |
4729 | |
4730 * configure.in (CPP): Don't add special CFLAGS for ix86/Linux. | |
4731 | |
4732 1997-12-10 Karl M. Hegbloom <karlheg@bittersweet.inetarena.com> | |
4733 | |
4734 * configure.in (autodetect ImageMagick): also look for | |
4735 "X11/magick/magick.h", and if present, define | |
4736 MAGICK_HEADERS_ARE_UNDER_X11 | |
4737 | |
4738 1997-12-11 SL Baur <steve@altair.xemacs.org> | |
4739 | |
4740 * configure.in (imagick_libs): Add autodetection for freetype | |
4741 -lttf library. | |
4742 | |
4010 | 4743 1997-12-09 SL Baur <steve@altair.xemacs.org> |
221 | 4744 |
227 | 4745 * XEmacs 20.5-beta9 is released. |
221 | 4746 |
4010 | 4747 1997-12-06 SL Baur <steve@altair.xemacs.org> |
219 | 4748 |
227 | 4749 * XEmacs 20.5-beta8 is released. |
219 | 4750 |
4751 * info/dir: update for further packaging. | |
4752 * configure.in: remove `tree-x' from XEmacs build. | |
4753 | |
4010 | 4754 1997-11-29 Jeff Miller <jmiller@smart.net> |
219 | 4755 |
4756 * configure.in: motif menubars need xlwmenu.o | |
4757 | |
4758 * updated files in src/ to allow an XEmacs configured for | |
4759 motif menubars to at least compile. Motif menubars are still | |
4760 very broken. | |
4761 | |
4762 1997-12-02 P E Jareth Hein <jareth@camelot-soft.com> | |
4763 | |
4764 * lwlib/xlwscrollbar.c: fixed colormap/visual handling to work | |
4765 properly with the information in the core. | |
4766 | |
4767 * lwlib/xlwmenu.c: fixed colormap/visual handling to work properly with | |
4768 the information in the core, and fixed a potental problem with | |
4769 parentage. | |
4770 | |
4771 1997-12-01 SL Baur <steve@altair.xemacs.org> | |
4772 | |
4773 * configure.in (with_session): Properly display flag in configure | |
4774 status report. | |
4775 | |
4776 1997-11-29 SL Baur <steve@altair.xemacs.org> | |
4777 | |
4778 * configure.usage: Remove documentation of obsolete option | |
4779 --with-gif. | |
4780 | |
217 | 4781 1997-11-27 SL Baur <steve@altair.xemacs.org> |
4782 | |
227 | 4783 * XEmacs 20.5-beta7 is released. |
217 | 4784 |
4785 * configure.in: When testing for -ltiff, fall back on the extra | |
4786 libraries -ljpeg, and -lz since some -ltiff's need them. | |
4787 | |
4788 1997-11-26 SL Baur <steve@altair.xemacs.org> | |
4789 | |
4790 * lwlib/xlwmenu.c (display_menu): Defer incremental menus properly. | |
4791 From Glynn Clements <glynn@sensei.co.uk> | |
4792 | |
4010 | 4793 1997-11-25 Kazuyuki IENAGA <ienaga@jsys.co.jp> |
217 | 4794 |
4795 * configure.in: Improve auto detect of libraries ImageMagick rely | |
4796 on. | |
4797 | |
4010 | 4798 1997-11-23 Jeff Miller <jmiller@smart.net> |
217 | 4799 |
4800 * Energize is dead. Removed ENERGIZE ifdef's from code in lwlib | |
4801 and src. Configure.in modified. --with-energize is no longer a | |
4802 valid configure option. | |
4803 | |
4804 * lwlib/Makefile.in.in removed energize support | |
4805 * lwlib/lwlib-Xm.c removed energize support | |
4806 * lwlib/lwlib-config.c removed energize support | |
4807 | |
4808 * lwlib/energize/* removed | |
4809 | |
4810 1997-11-23 SL Baur <steve@altair.xemacs.org> | |
4811 | |
4812 * Makefile.in: Change references of lisp/utils/finder-inf.el to | |
4813 lisp/finder-inf.el. | |
4814 | |
215 | 4815 1997-11-20 SL Baur <steve@altair.xemacs.org> |
4816 | |
227 | 4817 * XEmacs 20.5-beta6 is released. |
215 | 4818 |
4819 1997-11-21 Stephen Turnbull <turnbull@sk.tsukuba.ac.jp> | |
4820 | |
4821 * configure.usage: Use `--' convention in "usage:" line. | |
4822 | |
4010 | 4823 1997-11-20 Stephen Turnbull <turnbull@sk.tsukuba.ac.jp> |
215 | 4824 |
4825 * configure.in: added `with_xfs' to list of boolean features. | |
4826 | |
4827 1997-11-20 SL Baur <steve@altair.xemacs.org> | |
4828 | |
217 | 4829 * XEmacs 20.3 is released for binary kit building. |
215 | 4830 |
4010 | 4831 1997-11-19 Tor Arntsen <tor@spacetec.no> |
215 | 4832 |
4833 * PROBLEMS: Removed IRIX entry about xemacs core dumps when using | |
4834 xemacs dumped on one machine on another. Problem was fixed by 20.3. | |
4835 | |
4836 1997-11-18 SL Baur <steve@altair.xemacs.org> | |
4837 | |
4838 * configure.usage: New file. | |
4839 | |
4840 * configure.in: Use it instead of monster 10k shell variable. | |
4841 | |
4842 1997-11-17 SL Baur <steve@altair.xemacs.org> | |
4843 | |
4844 * XEmacs 20.3-pre4 is released. | |
4845 | |
4846 1997-11-17 Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp> | |
4847 | |
4848 * configure.in (infopath): List "/usr/local/" dirs before "/usr/" | |
4849 dirs. | |
4850 | |
4851 1997-11-17 SL Baur <steve@altair.xemacs.org> | |
4852 | |
4853 * configure.in: Initialize infodir off of datadir. | |
4854 | |
4855 * Makefile.in: Force LANG = C for building. | |
4856 | |
4857 1997-11-15 SL Baur <steve@altair.xemacs.org> | |
4858 | |
4859 * XEmacs 20.3-pre3 is released. | |
227 | 4860 * XEmacs 20.5-beta5 is released. |
215 | 4861 |
4010 | 4862 1997-11-13 Marc Paquette <marcpa@cam.org> |
213 | 4863 |
4864 * nt/Todo: added a task for support of lisp packages through | |
4865 the registry. | |
4866 | |
4010 | 4867 1997-11-13 Jonathan Harris <jhar@tardis.ed.ac.uk> |
213 | 4868 |
4869 * Renamed files *w32* to *msw* | |
4870 | |
4871 * Changed 'w32' and 'win32' to 'mswindows', and HAVE_W32GUI to | |
4872 HAVE_MS_WINDOWS. Changed files: | |
4873 cus-edit.el, device.el, faces.el, frame.el, msw-faces.el, | |
4874 msw.init.el, igrep.el, dumped-lisp.el, font.el, hippie-exp.el, | |
4875 sysdep.el, console-msw.c, console-msw.h, console.c, | |
4876 device-msw.c, emacs.c, event-msw.c, event-msw.h, event-stream.c, | |
4877 events.c, events.h, faces.c, frame-msw.c, frame.c, general.c, | |
4878 msw-proc.c, objects-msw.c, objects-msw.h, redisplay-msw.c, | |
384 | 4879 redisplay.c, symsinit.h, |
213 | 4880 |
4881 * Didn't change 'win32' in nt.c, nt.h, ntproc.c | |
4882 | |
4883 * Deleted w32 build directory since nt build directory now handles | |
4884 X and native mswindows builds. | |
4885 | |
215 | 4886 1997-11-11 SL Baur <steve@altair.xemacs.org> |
4887 | |
227 | 4888 * XEmacs 20.5-beta4 is released. |
215 | 4889 |
211 | 4890 1997-11-10 SL Baur <steve@altair.xemacs.org> |
4891 | |
4892 * info/dir: remove packaged entries. | |
4893 From Glynn Clements <glynn@sensei.co.uk> | |
4894 | |
4895 * configure.in: Puke and die if NAS sound is selected without X. | |
4896 | |
209 | 4897 1997-11-08 SL Baur <steve@altair.xemacs.org> |
4898 | |
227 | 4899 * XEmacs 20.5-beta3 is released. |
209 | 4900 * XEmacs 20.3-pre2 is released. |
4901 | |
4902 Wed November 05 23:40:00 1997 <jhar@tardis.ed.ac.uk> | |
4903 | |
4904 * w32/xemacs.mak: moved building the DOC file to after the .elcs. | |
4905 | |
4906 Sun November 01 12:00:00 1997 <jhar@tardis.ed.ac.uk> | |
4907 | |
4908 * Files split from nt to new w32 directory: | |
4909 ChangeLog, README, Todo, paths.h, config.h, inc/*, runemacs.c, | |
4910 xemacs.mak. | |
4911 | |
442 | 4912 1997-11-05 Didier Verna <didier@xemacs.org> |
209 | 4913 |
4914 * configure.in: Added the --site-prefixes options for the configure | |
384 | 4915 script. You give a colon or space separated list of prefixes, and |
209 | 4916 subdirectories include/ and lib/ will be added with -I and -L. |
4917 | |
4010 | 4918 1997-11-05 Martin Buchholz <martin@xemacs.org> |
209 | 4919 |
4920 * configure.in: AIX + gcc fixes. | |
4921 - Don't wrap -B. aixflags changed to start_flags. | |
4922 | |
4923 1997-11-04 SL Baur <steve@altair.xemacs.org> | |
4924 | |
4925 * lwlib/lwlib-Xm.c(update_one_menu_entry): Add missing variable. | |
4926 From Skip Montanaro <skip@calendar.com> | |
4927 | |
4928 1997-11-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
4929 | |
4930 * Delete etc/TUTORIAL.th because Thai is not supported yet. | |
4931 | |
4932 1997-11-02 Kyle Jones <kyle_jones@wonderworks.com> | |
4933 | |
4934 * lwlib/lwlib-Xaw.c (xaw_pop_instance): Don't use parent | |
4935 window's coordinates and dimensions to center the | |
4936 dialog box unless its mapped_when_managed property is | |
4937 true. This should avoid the top level widget that the | |
4938 HAVE_SESSION code creates, which is unmapped and | |
4939 useless for this purpose. | |
4940 | |
4941 1997-11-01 SL Baur <steve@altair.xemacs.org> | |
4942 | |
4943 * XEmacs 20.3-pre1 is released. | |
4944 | |
207 | 4945 1997-10-31 SL Baur <steve@altair.xemacs.org> |
4946 | |
209 | 4947 * XEmacs 19.16 is released. |
4948 | |
4949 1997-10-31 SL Baur <steve@altair.xemacs.org> | |
4950 | |
227 | 4951 * XEmacs 20.5-beta2 is released. |
207 | 4952 |
4953 1997-10-30 SL Baur <steve@altair.xemacs.org> | |
4954 | |
4955 * configure.in (xetest): Eliminate tests for PNG, JPEG, | |
4956 TIFF(broken) and replace with test for ImageMagick. | |
4957 | |
4958 1997-10-30 Kyle Jones <kyle_jones@wonderworks.com> | |
384 | 4959 |
207 | 4960 * lwlib/xlwmenu.h: Added string macro declarations for |
4961 titleForeground and highlightForeground properties. | |
4962 | |
4963 * lwlib/xlwmenuP.h: Added struct fields for title and | |
4964 highlight colors. | |
4965 | |
4966 * lwlib/xlwmenu.c: Added initialization and usage code | |
4967 for the new titleForeground and highlightForeground | |
4968 properties. | |
4969 | |
4970 1997-10-28 SL Baur <steve@altair.xemacs.org> | |
4971 | |
4972 * XEmacs 20.3-beta94 is released. | |
4973 | |
4974 1997-10-28 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
4975 | |
4976 * configure.in: Correct last patch for berkdb. | |
4977 | |
4978 1997-10-28 SL Baur <steve@altair.xemacs.org> | |
4979 | |
4980 * XEmacs 20.3-beta93 is released. | |
4981 | |
4982 1997-10-27 Martin Buchholz <mrb@eng.sun.com> | |
4983 | |
4984 * lib-src/make-path.c: | |
4985 * lib-src/digest-doc.c: | |
4986 * lib-src/gnuslib.c: Always include config.h before system headers | |
4987 * configure.in: Improve AIX configure support | |
4988 - NON_GNU_CC defaults to `xlc' | |
384 | 4989 - CFLAGS defaults to "-O3 -qstrict -qlibansi -qinfo -qro |
207 | 4990 -qmaxmem=20000" |
4991 - check for sin instead of sqrt in -lm to avoid xlc internal error | |
4992 - Detect -li18n for use with Motif | |
4993 - Move weird AIX static linking flags from s&m files to configure.in | |
4994 - use #pragma instead of -ma flag to avoid compiler warnings | |
4995 | |
4996 1997-10-25 Kyle Jones <kyle_jones@wonderworks.com> | |
4997 | |
4998 * lwlib/xlwmenu.c: Use XtRDimension in place of | |
4999 XmRHorizontalDimension in shadowThickness resource | |
5000 declaration. | |
5001 | |
5002 * lwlib/xlwmenu.c (label_button_draw): Use the button_gc | |
5003 color as the foreground for selected entries. | |
5004 | |
5005 * lwlib/xlwmenu.c (push_button_draw): Use the button_gc | |
5006 color as the foreground for selected entries. | |
5007 | |
5008 * lwlib/xlwmenu.c (toggle_decoration_height): Force | |
5009 height to be minimum of 2x the shadow thickness. | |
5010 | |
5011 1997-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de> | |
5012 | |
5013 * configure.in: Don't choke on Berkeley DB 2.x. | |
5014 | |
5015 1997-10-24 SL Baur <steve@altair.xemacs.org> | |
5016 | |
5017 * XEmacs 20.3-beta92 is released. | |
5018 | |
5019 1997-10-21 SL Baur <steve@altair.xemacs.org> | |
5020 | |
5021 * Makefile.in (lisp/utils/finder-inf.el): Don't force rebuild if | |
5022 it already exists (use `make finder' to force rebuild). | |
5023 | |
5024 1997-10-18 SL Baur <steve@altair.xemacs.org> | |
5025 | |
424 | 5026 * XEmacs 20.3-beta91 is released. |
207 | 5027 |
5028 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr> | |
5029 | |
5030 * configure.in: Removed -Olimit=2000 from cc for IRIX. | |
5031 | |
5032 1997-10-12 Karl M. Hegbloom <karlheg@inetarena.com> | |
5033 | |
5034 * configure.in (null_string): Added AC_SUBST(infodir_user_defined) | |
5035 and removed backquoted echo statement from the infopath report line. | |
5036 | |
5037 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr> | |
5038 | |
5039 * configure.in: Added detection of the declaration of the timezone | |
5040 variable in system files. Defines HAVE_TIMEZONE_DECL if yes. | |
5041 | |
5042 | |
5043 1997-10-15 Olivier Galibert <olivier.galibert@mines.u-nancy.fr> | |
5044 | |
5045 * config.h.in: Add HAVE_TIMEZONE_DECL for detection of declaration | |
5046 of the timezone variable in system headers. | |
5047 | |
5048 * systime.h: Use HAVE_TIMEZONE_DECL. | |
5049 | |
5050 1997-10-14 SL Baur <steve@altair.xemacs.org> | |
5051 | |
5052 * configure.in (all_widgets): Don't allow configuration of | |
5053 --with-mule if Mule lisp hasn't been installed. | |
5054 | |
5055 1997-10-13 SL Baur <steve@altair.xemacs.org> | |
5056 | |
5057 * configure.in: Remove `site-lisp' from list of directories to | |
5058 make symbolic links for. | |
5059 | |
5060 * XEmacs 20.3-beta90 is released. | |
5061 | |
5062 1997-10-12 Glynn Clements <glynn@sensei.co.uk> | |
5063 | |
5064 * info/dir: Cosmetic changes to info/dir | |
5065 | |
205 | 5066 1997-10-12 SL Baur <steve@altair.xemacs.org> |
5067 | |
227 | 5068 * XEmacs 20.5-beta1 is released. |
205 | 5069 |
5070 * XEmacs 19.16-pre9 is released. | |
5071 | |
5072 * XEmacs 19.16-pre8 is released. | |
5073 | |
203 | 5074 1997-10-11 SL Baur <steve@altair.xemacs.org> |
5075 | |
205 | 5076 * XEmacs 20.3-beta28 is released. |
5077 | |
203 | 5078 * Makefile.in (src/paths.h): Update PATH_INFOPATH |
5079 (infopath): New shell variable. | |
5080 (infopath_user_defined): Ditto. | |
5081 | |
5082 * configure.in (infodir_user_defined): Spelling fixes. | |
5083 | |
5084 1997-10-10 Karl M. Hegbloom <karlheg@inetarena.com> | |
5085 | |
5086 * configure.in: added options and option help docs for infopath | |
5087 and lockdir | |
5088 * '' added a line to the report for infopath and lockdir | |
5089 | |
5090 1997-10-10 Karl M. Hegbloom <karlheg@inetarena.com> | |
5091 | |
5092 * Makefile.in.in (INFOPATH): Added variable and put it into | |
5093 DUMPENV. | |
5094 | |
5095 1997-10-11 SL Baur <steve@altair.xemacs.org> | |
5096 | |
5097 * packages/info/localdir: New directory and file. | |
5098 | |
5099 * packages/README: New directory & file. | |
5100 | |
5101 1997-10-10 Martin Buchholz <mrb@eng.sun.com> | |
5102 | |
5103 * Makefile.in: Add `make configure' target | |
5104 | |
5105 1997-10-07 SL Baur <steve@altair.xemacs.org> | |
5106 | |
5107 * XEmacs 19.16-pre7 is released. | |
5108 | |
5109 1997-10-05 Damon Lipparelli <lipp@aa.net> | |
5110 | |
5111 * Makefile.in (install-arch-dep, install-arch-indep): Move the | |
5112 commands for symlink'ing the system-independent bits into the | |
5113 system-dependent directory structure from "install-arch-indep" to | |
5114 "install-arch-dep". | |
5115 | |
5116 1997-10-06 Jens-Ulrik Holger Petersen <petersen@kurims.kyoto-u.ac.jp> | |
5117 | |
5118 * Makefile.in (blddir): variable from "configure". | |
5119 (finder): use it. | |
5120 | |
5121 1997-10-05 SL Baur <steve@altair.xemacs.org> | |
5122 | |
5123 * Makefile.in (GENERATED_LISP): New variable. | |
5124 (all): Force dependency on finder-inf.el. | |
5125 (lisp/utils/finder-inf.el): new rule. | |
5126 | |
5127 1997-10-04 SL Baur <steve@altair.xemacs.org> | |
5128 | |
5129 * XEmacs 19.16-pre6 is released. | |
5130 | |
201 | 5131 1997-10-04 SL Baur <steve@altair.xemacs.org> |
5132 | |
5133 * XEmacs 20.3-beta27 is released. | |
5134 | |
5135 1997-10-03 Damon Lipparelli <lipp@primus.com> | |
5136 | |
5137 * Makefile.in (install-arch-indep): When --prefix != | |
5138 --exec-prefix, symlink the system-independent bits into the | |
5139 system-dependent directory structure (rather than the other way | |
5140 around). | |
5141 | |
5142 1997-10-03 Martin Buchholz <mrb@eng.sun.com> | |
5143 | |
5144 * lib-src/etags.c: etags 12.28 + prototypization | |
384 | 5145 * INSTALL: Better document --site-runtime-libraries |
5146 * src/scrollbar-x.c (x_update_scrollbar_instance_status): | |
201 | 5147 FIX: M-x scroll-left; horizontal scrollbar appears; drag it |
5148 left; scrollbar disappears; keyboard inoperative. | |
5149 * configure.in: Remove left-over references to *_switch_x_* | |
5150 - NAS libaudio is part of $libs_x, not $LIBS | |
5151 | |
199 | 5152 1997-10-02 SL Baur <steve@altair.xemacs.org> |
5153 | |
5154 * XEmacs 20.3-beta26 is released. | |
5155 | |
197 | 5156 1997-09-30 SL Baur <steve@altair.xemacs.org> |
5157 | |
5158 * XEmacs 20.3-beta25 is released. | |
5159 | |
5160 * Makefile.in (install-arch-dep): Install the `Installation' for | |
5161 future reference. | |
5162 | |
5163 * Makefile.in (top_distclean): Remove finder-inf.el*. | |
5164 | |
5165 * configure.in (use_union_type): Default to "yes". | |
5166 | |
5167 1997-09-29 Martin Buchholz <mrb@eng.sun.com> | |
5168 | |
5169 * configure.in: Add tiff autodetection | |
5170 | |
5171 1997-09-29 SL Baur <steve@altair.xemacs.org> | |
5172 | |
5173 * lwlib/xlwmenu.c: Add bounds checking. | |
5174 Check error return on XmStringGetLtoR. | |
5175 | |
195 | 5176 1997-09-27 SL Baur <steve@altair.xemacs.org> |
5177 | |
5178 * XEmacs 20.3-beta24 is released. | |
5179 | |
5180 1997-09-27 Hrvoje Niksic <hniksic@srce.hr> | |
5181 | |
5182 * Makefile.in (custom-loads): New target. | |
5183 | |
5184 1997-09-23 SL Baur <steve@altair.xemacs.org> | |
5185 | |
5186 * lwlib/xlwmenu.c: Fix compilation problem with USE_XFONTSET. | |
5187 From Kazuyuki IENAGA <ienaga@jsys.co.jp> | |
5188 | |
5189 1997-09-22 SL Baur <steve@altair.xemacs.org> | |
5190 | |
5191 * XEmacs 19.16-pre4 is released. | |
5192 | |
193 | 5193 1997-09-20 SL Baur <steve@altair.xemacs.org> |
5194 | |
5195 * XEmacs 20.3-beta23 is released. | |
5196 | |
4010 | 5197 1997-09-19 SL Baur <steve@altair.xemacs.org> |
193 | 5198 |
5199 * XEmacs 19.16-pre3 is released. | |
5200 | |
5201 1997-09-19 Martin Buchholz <mrb@eng.sun.com> | |
5202 | |
5203 * src/redisplay-tty.c: Fix crashes with non-7bit tty escape | |
5204 sequences (needs more testing). | |
384 | 5205 * */Makefile*: |
193 | 5206 - Cleanup man/*/Makefile for consistency. |
5207 - use $(MAKEFINFO), $(TEXI2DVI), etc... | |
5208 - Make combination --with-srcdir + Sun make work properly. | |
384 | 5209 - Change construct: test -d $${dir} || mkdir $${dir} |
193 | 5210 --> if test ! -d $${dir}; then mkdir $${dir}; fi |
5211 * lisp/x11/x-win-sun.el: Fix remaining glitches with | |
5212 re-mappings of Sun function keys. | |
5213 * configure.in: Detect libXaw AFTER libXpm to support libXawXpm. | |
5214 * man/internals/internals.texi: Fix makeinfo compilation error. | |
5215 | |
191 | 5216 1997-09-17 SL Baur <steve@altair.xemacs.org> |
5217 | |
5218 * XEmacs 20.3-beta22 is released. | |
5219 | |
189 | 5220 1997-09-16 SL Baur <steve@altair.xemacs.org> |
5221 | |
5222 * XEmacs 20.3-beta21 is released. | |
5223 | |
5224 * XEmacs 19.16-pre2 is released. | |
5225 | |
187 | 5226 1997-09-13 SL Baur <steve@altair.xemacs.org> |
5227 | |
5228 * XEmacs 20.3-beta20 is released. | |
5229 | |
5230 1997-09-11 Martin Buchholz <mrb@eng.sun.com> | |
5231 | |
5232 * configure.in: Use `PATH' for options that take multiple dirs. | |
5233 - Fix test for $PWD == `pwd` | |
5234 - Prefer autodetected X11R6 to X11 so that broken HP and Linux | |
5235 systems can work. (untested) | |
5236 | |
5237 * lisp/cl/cl.el: Fix `loop' indentation to be same as `defun'. | |
5238 * lisp/prim/dumped-lisp.el: cl-extra and cl-seq always end up | |
5239 being autoloaded - let's make them part of the core. | |
5240 | |
5241 * lisp/x11/x-compose.el: | |
5242 * lisp/x11/x-init.el: | |
5243 * lisp/x11/x-win-sun.el: | |
5244 * lisp/x11/x-winxfree86.el: | |
5245 * src/device-x.c: | |
5246 * src/event-Xt.c: | |
5247 - Yet another rewrite of key handling (not the last, though) | |
5248 - x-keysym-on-keyboard-p is much faster. | |
5249 - x-keysym-on-keyboard-sans-modifiers-p introduced. | |
5250 - x-keysym-hashtable introduced. | |
5251 - allow X11R4 libs to guess keysyms on X11R5 servers. | |
384 | 5252 - A better workaround for the bug that some Xlibs generate |
187 | 5253 Multi_key a adiaeresis when pressing Multi_key a " |
384 | 5254 |
187 | 5255 * src/dgif_lib.c: Make sure size_t is defined before using it. |
5256 | |
5257 1997-09-12 SL Baur <steve@altair.xemacs.org> | |
5258 | |
5259 XEmacs 19.16-pre1 "Queens" is released. | |
5260 | |
5261 1997-09-08 SL Baur <steve@altair.xemacs.org> | |
5262 | |
5263 * configure.in: Reverse package-path. | |
5264 From Colin Rafferty <craffert@ml.com> | |
5265 | |
185 | 5266 1997-09-02 SL Baur <steve@altair.xemacs.org> |
5267 | |
5268 * XEmacs 20.3-beta19 is released. | |
5269 | |
5270 * Makefile.in (finder): New target. | |
5271 | |
5272 1997-08-29 SL Baur <steve@altair.xemacs.org> | |
5273 | |
5274 * XEmacs 19.16-beta91 is released. | |
5275 | |
5276 1997-08-25 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5277 | |
5278 * lisp/apel/emu-x20.el (mime-charset-coding-system-alist): | |
5279 iso-2022-jp-2 is defined as coding-system. | |
5280 | |
5281 * lisp/mule/mule-coding.el: Rename `iso-2022-ss2-{7|8}' -> | |
5282 `iso-2022-{7|8}bit-ss2' to sync with Emacs 20.0.96. | |
5283 | |
5284 (iso-2022-jp-2): New coding system. | |
5285 | |
5286 1997-08-23 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5287 | |
5288 * lisp/prim/about.el (about-maintainer-glyph): Fix problem with | |
5289 jka-compr.el. | |
5290 | |
5291 1997-08-20 SL Baur <steve@altair.xemacs.org> | |
5292 | |
5293 * XEmacs 19.16-beta90 is released. | |
5294 | |
183 | 5295 1997-08-16 SL Baur <steve@altair.xemacs.org> |
5296 | |
5297 * XEmacs 20.3-beta18 is released. | |
5298 | |
181 | 5299 1997-08-09 SL Baur <steve@altair.xemacs.org> |
5300 | |
5301 * XEmacs 20.3-beta17 is released. | |
5302 | |
5303 1997-08-09 Martin Buchholz <mrb@eng.sun.com> | |
5304 | |
5305 * configure.in: | |
5306 - use-system-malloc renamed to with-system-malloc. | |
5307 - config.el reimplemented for improved accuracy. | |
5308 - new variable `blddir' introduced for informational purposes. | |
5309 * lib-src/config.values.in: new config.el implementation | |
5310 * lib-src/config.values.sh: new config.el implementation | |
384 | 5311 * lisp/modes/pascal.el: Sync with GNU Emacs, fix infloop problem |
181 | 5312 (thanks to Espen Skoglund, pascal.el maintainer) |
5313 * src/chartab.c: maintainability improvements. | |
5314 * src/mule-coding.c: FIX for: editing DOS files with ISO2022* | |
5315 coding systems results in extra CR's inserted into file on saving. | |
5316 | |
5317 1997-08-06 SL Baur <steve@altair.xemacs.org> | |
5318 | |
5319 * configure.in: Crash & burn if db-2 is detected. | |
5320 From Soren Dayton <csdayton@cs.uchicago.edu> | |
5321 | |
179 | 5322 1997-07-31 SL Baur <steve@altair.xemacs.org> |
5323 | |
5324 * XEmacs 20.3-beta16 is released. | |
5325 | |
5326 1997-07-31 Martin Buchholz <mrb@eng.sun.com> | |
5327 | |
5328 * configure.in: --with-x11=no --> --with-xface=no | |
5329 * lisp/efs/dired-xemacs.el: Rationalize mouse file functions | |
5330 * src/input-method-xlib.c: Allow xemacs to connect to kinput2 | |
5331 * event-Xt.c: Fix crashes when no input context available. | |
5332 * src/mule-coding.c: Use enum eol_type instead of int consistently | |
5333 * regex.c: Use (void *) 0 instead of NULL in varargs function calls | |
5334 * src/s/freebsd.h: Wrap #include X11/Xlocale.h inside #ifndef | |
5335 NOT_C_CODE | |
5336 | |
177 | 5337 1997-07-26 SL Baur <steve@altair.xemacs.org> |
5338 | |
5339 * XEmacs 20.3-beta15 is released. | |
5340 | |
5341 1997-07-25 SL Baur <steve@altair.xemacs.org> | |
5342 | |
5343 * lwlib/xlwscrollbar.c: Add debug malloc support. | |
5344 * lwlib/xlwmenu.c: Ditto. | |
5345 * lwlib/lwlib-utils.h: Ditto. | |
5346 | |
5347 * configure.in (null_string): Add --use-debug-malloc option. | |
5348 | |
5349 1997-07-21 SL Baur <steve@altair.xemacs.org> | |
5350 | |
5351 * info/dir (Packages): Remove AUCTeX, Gnus and Message manuals. | |
5352 | |
5353 1997-07-20 SL Baur <steve@altair.xemacs.org> | |
5354 | |
5355 * Makefile.in (install-arch-indep): Create required links when | |
5356 prefixdir != execdir. | |
5357 | |
5358 1997-07-19 SL Baur <steve@altair.xemacs.org> | |
175 | 5359 |
5360 * XEmacs 20.3-beta14 is released. | |
5361 | |
5362 1997-07-19 Martin Buchholz <mrb@eng.sun.com> | |
5363 | |
177 | 5364 * src/fns.c (require): Print messages when loading a file as a |
175 | 5365 result of require. |
384 | 5366 |
175 | 5367 * configure.in: |
5368 * lisp/utils/config.el: | |
384 | 5369 * lib-src/config.values: |
175 | 5370 - new file created and installed by building. |
5371 - Allow configuration time values to be queried by the lisp code. | |
5372 | |
5373 * configure.in: | |
5374 - check for alloca in libPW on hpux. | |
5375 - Redo --with-clash-detection | |
5376 - need to check for termios and friends even if with-tty=no. | |
5377 - Always define SIGNALS_VIA_CHARACTERS if HAVE_TERMIOS | |
5378 - better quoting for AIX_SMT_EXP (untested) | |
5379 - gcc flags now default to "-g -O2 -Wall -Wno-switch" | |
5380 | |
5381 * *.[ch]: more warning elimination | |
5382 | |
5383 * src/input-method*.c: | |
5384 * src/s/freebsd.h: | |
5385 - remove freebsd ifdefs from C code. | |
5386 | |
5387 * src/specifier.c: | |
5388 - fix Fdisplay-table-specifier-p | |
5389 | |
173 | 5390 1997-07-13 Steven L Baur <steve@altair.xemacs.org> |
5391 | |
5392 * XEmacs 20.3-beta13 is released. | |
5393 | |
5394 * info/dir (Packages): Integrate texinfo manual for PH. | |
5395 | |
5396 1997-07-10 Hrvoje Niksic <hniksic@srce.hr> | |
5397 | |
5398 * extents.c (print_extent): Print correctly. | |
384 | 5399 |
173 | 5400 1997-07-13 Steven L Baur <steve@altair.xemacs.org> |
5401 | |
5402 * configure.in (CPP): Add -Wall to default gcc CFLAGS. | |
5403 | |
5404 1997-07-11 Martin Buchholz <mrb@eng.sun.com> | |
5405 | |
5406 * *Makefile*: More cleanup. | |
5407 - MAKE CFLAGS=-foo now works with recursive invocations on old makes | |
5408 - Nuke ld_call_shared from s&m files | |
5409 - Nuke src/s/*-static.h | |
5410 - Nuke Solaris and DEC OSF static build support. | |
5411 - Nuke SHORTNAMES | |
5412 - Nuke libmld | |
5413 - CLASH_DETECTION configurable, off by default. | |
5414 | |
5415 * *.[ch]: Warning elimination, code cleanup, some 64-bit | |
5416 safeguarding. | |
5417 | |
5418 * sol2.h: More bullet-proofing for Sun bugs in header files. | |
5419 | |
5420 * lib-src/etags.c: etags version 12.19. | |
5421 | |
5422 * lisp/x11/x-select.el: | |
5423 * src/xselect.c: Try STRING if selection owner couldn't convert | |
384 | 5424 COMPOUND_TEXT. |
173 | 5425 |
5426 * src/*.c: Change defalt to default_, and in general allow | |
5427 doc-snarfing functions to recognize and ignore trailing `_' | |
5428 | |
384 | 5429 * src/*.[ch]: Introduce XVECTOR_DATA and XVECTOR_LENGTH macros and |
173 | 5430 convert source code to use them consistently. |
5431 | |
171 | 5432 1997-07-08 Steven L Baur <steve@altair.xemacs.org> |
5433 | |
5434 * XEmacs 20.3-beta12 is released. | |
5435 | |
5436 1997-07-08 Martin Buchholz <mrb@eng.sun.com> | |
5437 | |
384 | 5438 * configure.in: Set options differently, depending on beta-ness of |
171 | 5439 build tree. |
5440 * *Makefile*: Clean up *clean: targets, esp. Steven's beloved | |
5441 distclean. | |
5442 | |
5443 1997-07-08 Steven L Baur <steve@altair.xemacs.org> | |
5444 | |
5445 * pkg-src/tree-x/Makefile.in.in (xoobr): Pass CFLAGS to the | |
5446 linker. | |
5447 From Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr> | |
5448 | |
5449 1997-07-07 Steven L Baur <steve@altair.xemacs.org> | |
5450 | |
5451 * pkg-src/tree-x/Makefile.in.in (distclean): Add target. | |
5452 | |
5453 1997-07-06 Steven L Baur <steve@altair.xemacs.org> | |
5454 | |
5455 * lwlib/lwlib-Xm.c (xm_update_one_value): Hand application of mrb | |
5456 fix. Restoration of lossage from beta10->beta11 upgrade. | |
5457 | |
5458 * XEmacs 20.3-beta11 is released. | |
5459 | |
5460 1997-07-08 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5461 | |
5462 * lisp/language/english.el: Add quail-british for British. | |
5463 | |
5464 * lisp/language/european.el: Register input-method for various non | |
5465 quail-latin-1 methods. | |
5466 | |
169 | 5467 1997-07-05 Martin Buchholz <mrb@eng.sun.com> |
5468 | |
5469 * lib-src/getopt*.c: Don't redefine const - let configure do that. | |
5470 | |
5471 * configure.in: Better behavior for `configure --with-gcc=no' | |
5472 - Autodetect ulimit.h | |
5473 - Remove broken SunOS4 kludge for libXmu | |
5474 - Autodetect usleep | |
5475 | |
5476 * src/s/sol2.h: Support gcc on various Solaris releases. | |
384 | 5477 |
169 | 5478 * lib-src/*.c: Ansify prototypes. |
5479 | |
5480 * lisp/prim/files.el: Optimize auto-mode-alist. | |
5481 | |
5482 * pkg-src/tree-x/Makefile.in.in: `make distclean' now works | |
5483 - `make install' now works. | |
5484 - dependencies updated. | |
5485 | |
5486 * pkg-src/tree-x/*.[ch]: Fix compile warnings. | |
5487 - Replace uses of XtVa* with non-varargs variants. | |
5488 | |
5489 1997-07-01 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5490 | |
5491 * lisp/modes/image-mode.el: Add `image-maybe-restore' to | |
5492 `change-major-mode-hook'. | |
5493 | |
5494 * lisp/modes/image-mode.el (image-maybe-restore): New function. | |
5495 | |
5496 * src/glyphs.c (make_string_from_file): must protect from | |
5497 `format-alist'. | |
5498 | |
5499 1997-06-30 Steven L Baur <steve@altair.xemacs.org> | |
5500 | |
5501 * pkg-src/tree-x/Makefile.in.in (INSTALL): Add configure written | |
5502 variable. | |
5503 | |
167 | 5504 1997-06-29 Steven L Baur <steve@altair.xemacs.org> |
5505 | |
169 | 5506 * configure.in (CPP): Correct typo `print-lib-gcc-file-name' |
5507 should be `print-libgcc-file-name' | |
5508 From Katsumi Yamaoka <yamaoka@ga.sony.co.jp> | |
384 | 5509 |
167 | 5510 * XEmacs 20.3-beta10 is released. |
5511 | |
5512 1997-06-29 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5513 | |
5514 * lisp/language/chinese.el: Add chinese-isoir165 (CCITT Extended | |
5515 GB). | |
5516 | |
5517 * lisp/language/chinese.el: Modify charset DOC-strings for CNS | |
5518 11643 to be more detailed. | |
5519 | |
5520 * lisp/language/arabic.el: Rename `arabic-0', `arabic-1' and | |
5521 `arabic-2' to `arabic-digit', `arabic-1-column' and | |
5522 `arabic-2-column' to sync with Emacs/mule-19.34.94-zeta. | |
5523 | |
5524 * src/mule-charset.c: Modify charset DOC-strings to be more | |
5525 detailed. | |
5526 | |
5527 Use BOX DRAWINGS characters of JIS X0208. | |
5528 | |
5529 1997-06-28 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5530 | |
5531 * lisp/apel/richtext.el: Add autoload comments for | |
5532 `richtext-encode' and `richtext-decode'. | |
5533 | |
5534 * lisp/prim/format.el (format-alist): Add `text/richtext'. | |
5535 | |
5536 * lisp/tl/chartblxmas.el: New file. | |
5537 | |
5538 * lisp/x11/x-menubar.el (default-menubar): Add "Show character | |
5539 table" for MULE menu. | |
5540 | |
5541 * lisp/apel/emu.el: Check richtext.el is bundled. | |
5542 | |
5543 * lisp/tl/char-table.el (view-charset): New command. | |
5544 | |
5545 * lisp/tl/char-table.el: Rename some functions. | |
5546 | |
5547 * lisp/packages/hexl.el (hexl-mode-exit): Run | |
5548 `hexl-mode-exit-hook'. | |
5549 | |
5550 * lisp/x11/x-menubar.el (default-menubar): Fix "Describe language | |
5551 support" and "Set language environment" of mule menu. | |
5552 | |
5553 * lisp/apel/file-detect.el: Add autoload comments for function | |
5554 `add-path', `add-latest-path', `get-latest-path', | |
5555 `file-installed-p', `exec-installed-p', `module-installed-p' and | |
5556 variable `exec-suffix-list'. | |
5557 | |
5558 * lisp/prim/format.el (format-alist): Add image/jpeg, image/gif, | |
5559 image/png and image/x-xpm. | |
5560 | |
5561 * lisp/modes/image-mode.el: New file. | |
5562 | |
5563 1997-06-27 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5564 | |
5565 * lisp/tm/tm-ew-e.el (tm-eword::encode-string-1): avoid infinite | |
5566 loop caused by long non-encoded-word element. (cf. [tm-en:1356]) | |
5567 | |
5568 (mime/field-encoding-method-alist): Add "Message-ID" as ignored. | |
5569 | |
165 | 5570 1997-06-25 Steven L Baur <steve@altair.xemacs.org> |
5571 | |
5572 * XEmacs 20.3-beta9 is released. | |
5573 | |
5574 * Makefile.in (dist): Make `make dist' work for me. | |
5575 | |
5576 1997-06-25 Martin Buchholz <mrb@eng.sun.com> | |
5577 | |
5578 * configure.in: | |
5579 - Change "t" to tabs in sed commands | |
5580 - Add /g to sed substitition commands when appropriate | |
5581 - Change XtVa[SG]etValue to Xt[SG]etValue | |
5582 - Make version variables into Lisp_Objects. | |
5583 | |
5584 1997-06-19 Martin Buchholz <mrb@eng.sun.com> | |
5585 | |
5586 * src/config.h.in: | |
5587 * configure.in: | |
5588 - Autodetect X defines using xmkmf. | |
5589 - Compute rpath on *bsd* systems as well. | |
5590 - rewrite PRINT_VAR m4 macro. | |
5591 - detect sizes of void* and long long for future use by unex*.c | |
5592 * regex.c: _GNU_SOURCE may be defined by config.h; don't redefine. | |
5593 | |
5594 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5595 | |
5596 * lisp/language/arabic.el: moved from lisp/mule/arabic-hooks.el. | |
5597 | |
5598 * lisp/mh-e/mh-e.el (mh-get-new-mail): Decode output as | |
5599 `mh-folder-coding-system'. | |
5600 | |
5601 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5602 | |
5603 * lisp/language/ethio-util.el: imported from | |
5604 Emacs/mule-19.34.94-zeta. | |
5605 | |
5606 * lisp/language/arabic-util.el: moved from lisp/mule/arabic.el; | |
5607 repair Arabic characters. | |
5608 | |
5609 1997-06-24 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5610 | |
5611 * lib-src/update-autoloads.sh: Search lisp/mule/. | |
5612 | |
5613 * lisp/x11/x-menubar.el: Fix "Describe language support" and "Set | |
5614 language environment" of Mule menu. | |
5615 | |
5616 * lisp/language/visual-mode.el: moved from mule/. | |
5617 | |
5618 * lisp/language/ethiopic.el: Modify for XEmacs. | |
5619 | |
5620 * lisp/language/cyrillic.el: Modify DOC-string of koi8-r; Fixed | |
5621 problem of setting for `language-info-alist' about koi8-r. | |
5622 | |
5623 * lisp/mule/auto-autoloads.el: Enable auto-autoloads.el for mule/. | |
5624 | |
5625 * lisp/mule/mule-util.el: New file (imported from | |
5626 Emacs/mule-19.34.94-zeta). | |
5627 | |
5628 * lisp/mule/mule-misc.el: Function `truncate-string-to-width' was | |
5629 moved to mule-util.el. | |
5630 | |
5631 * lisp/prim/dumped-lisp.el, lisp/mule/mule-load.el: | |
5632 lisp/mule/arabic-hooks.el was moved to lisp/language/arabic.el; | |
5633 lisp/mule/arabic.el was moved to lisp/language/arabic-util.el; Use | |
5634 lisp/language/ethiopic.el instead of lisp/mule/ethiopic-hooks.el; | |
5635 Use lisp/language/ethio-util.el instead of lisp/mule/ethiopic.el. | |
5636 | |
5637 * lisp/mule/mule-coding.el (coding-system-docstring): New alias to | |
5638 emulate Emacs/mule-19.34.94-zeta function. | |
5639 | |
5640 * lisp/mule/mule-cmds.el: modified to sync with | |
5641 Emacs/mule-19.34.94-zeta (mule-prefix was changed to "C-x C-m") | |
5642 | |
5643 (set-language-info): Add to "Describe Language Support" and "Set | |
5644 Language Environment" menu. | |
5645 | |
5646 * lisp/mule/mule-charset.el: Function `compose-region' and | |
5647 `decompose-region' were moved to mule-util.el. | |
5648 | |
5649 * lisp/leim/quail.el: modify to sync with latest quail.el of | |
5650 Emacs/mule in ETL. | |
5651 | |
5652 (quail-toggle-mode-temporarily): check `quail-conv-overlay'. | |
5653 | |
5654 (quail-map-p): Use `characterp' instead of `integerp'. | |
5655 | |
163 | 5656 1997-06-21 Steven L Baur <steve@altair.xemacs.org> |
5657 | |
165 | 5658 * Makefile.in: Missing FRC.info. |
5659 (install-arch-dep): Add missing backslash. | |
5660 From Glynn Clements <glynn@sensei.co.uk> | |
5661 | |
163 | 5662 * XEmacs 20.3-beta8 is released. |
5663 | |
4010 | 5664 1997-06-20 Olivier Galibert <Olivier.Galibert@mines.u-nancy.fr> |
163 | 5665 |
5666 * lwlib/lwlib-Xaw.c, lwlib/lwlib-Xlw.c, lwlib/lwlib-Xm.c, | |
5667 lwlib/lwlib.c: Make 64 bit clean. | |
384 | 5668 |
163 | 5669 1997-06-19 Martin Buchholz <mrb@eng.sun.com> |
5670 | |
5671 * configure.in: | |
5672 - Autodetect X defines using xmkmf. | |
5673 - Compute rpath on *bsd* systems as well. | |
5674 - rewrite PRINT_VAR m4 macro. | |
5675 - detect sizes of void* and long long for future use by unex*.c | |
5676 | |
5677 1997-06-18 Martin Buchholz <mrb@eng.sun.com> | |
5678 | |
5679 * */Makefile.in.in: Another rewrite | |
5680 Make makefiles immune from being mangled by various cpp | |
384 | 5681 implementations by quoting non-preprocessor directive lines. |
163 | 5682 - random cleanup |
5683 - Use $(RM) and $(pwd) macros consistently | |
5684 - Add dependencies for balloon-help source files | |
5685 - Use getcwd by default instead of getwd. | |
5686 * lwlib/config.h: Now includes src/config.h | |
5687 * lwlib/*.c: Use config.h, but DON'T use Xos.h | |
5688 * lib-src/*.c: Fix compiler warnings | |
5689 * lisp/version.el: | |
5690 - Put version information in version.sh instead of version.el | |
5691 | |
5692 Wed Jun 18 16:41:43 1997 Steven L Baur <steve@altair.xemacs.org> | |
5693 | |
5694 * configure.in (CPP): Remove hardcoding of -L/usr/local/lib | |
5695 -I/usr/local/include. | |
5696 | |
161 | 5697 1997-06-14 Steven L Baur <steve@altair.xemacs.org> |
5698 | |
5699 * XEmacs 20.3-beta7 is released. | |
5700 | |
5701 1997-06-13 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5702 | |
5703 * lisp/gnus/smiley.el (smiley-deformed-regexp-alist): Modify | |
5704 regexp for horizontal smiley faces. | |
5705 (smiley-nosey-regexp-alist): Add horizontal smiley faces. | |
5706 | |
5707 * lisp/leim/quail.el (quail-get-translation): Don't use | |
5708 `string-to-vector' for XEmacs. | |
5709 | |
5710 1997-06-13 Gary D. Foster <Gary.Foster@corp.Sun.COM> | |
5711 | |
5712 * lisp/modes/*.el: Removed all "\177" bindings that were | |
5713 previously commented out and normalized everything vis a vis | |
5714 'backspace and 'delete keysyms. | |
5715 * lisp/packages/*.el: Normalized all the "\177" bindings | |
384 | 5716 * lisp/modes/cperl-mode.el: Created cperl-electric-delete function |
161 | 5717 which is a "smart" version of the cperl-electric-backspace |
5718 function (it honors the desired delete direction). Bound it to | |
5719 'delete and the electric-backspace to 'backspace. | |
384 | 5720 * lisp/packages/pending-del.el: Added cperl-electric-backspace and |
161 | 5721 cperl-electric-delete to the 'supersede list. |
5722 | |
159 | 5723 1997-06-11 Steven L Baur <steve@altair.xemacs.org> |
5724 | |
5725 * XEmacs 20.3-b6 is released. | |
5726 | |
5727 * configure.in (GNU_MALLOC): Check for (-l)PW instead of (-l)-lPW. | |
5728 Suggested by Martin Buchholz <mrb@eng.sun.com> | |
5729 | |
5730 1997-06-11 Martin Buchholz <mrb@eng.sun.com> | |
5731 | |
384 | 5732 * src/Makefile.in: |
5733 * lwlib/Makefile.in: | |
5734 * lib-src/Makefile.in: | |
159 | 5735 * Makefile.in: More Makefile cleanup |
5736 - add .PHONY targets where necessary | |
5737 - remove most builtin rules using .SUFFIXES | |
5738 - -lXau only gets used for linking gnuserv binaries | |
5739 - No VPATH for root Makefile | |
5740 - remove gcc v1 support | |
384 | 5741 * configure.in: |
159 | 5742 - A new test to autodetect need to define NARROWPROTO, |
5743 needed by XFree86 | |
5744 - Consistently use idiom foo=`echo '' $foo | sed -s 's:^ ::' -e ...` | |
5745 - Immediately exit if SIZEOF_* tests fail. | |
5746 - Check for libPW | |
5747 - Use more sophisticated Xpm test that confirms xpm.h and libXpm | |
5748 are in sync. | |
384 | 5749 * src/s/linux.h: |
159 | 5750 * src/m/intel386.h: Yet another attempt to clean up linux defines. |
5751 | |
5752 1997-06-10 Steven L Baur <steve@altair.xemacs.org> | |
5753 | |
5754 * lib-src/pop.c: Correct incantation for pop.h. | |
5755 From Martin Buchholz <mrb@Eng.Sun.COM> | |
5756 | |
5757 Tue Jun 10 15:11:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
5758 | |
5759 * configure.in (beta): Correct test looking for Beta number. | |
5760 | |
5761 1997-06-11 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5762 | |
5763 * src/Makefile.in.in, mule/language/misc-lang.el, | |
5764 mule/mule-load.el, mule/ipa-hooks.el: Use | |
5765 lisp/mule/language/misc-lang.el instead of lisp/mule/ipa-hooks.el; | |
5766 mule/ipa-hooks.el was deleted. | |
5767 | |
5768 1997-06-10 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5769 | |
5770 * Use lisp/mule/language/thai-util.el instead of | |
5771 lisp/mule/thai.el. | |
5772 | |
5773 * lisp/custom/wid-edit.el: Add widget `coding-system' for mule. | |
5774 | |
5775 * lisp/mule/thai-hooks.el, lisp/mule/mule-load.el: Use | |
5776 lisp/mule/language/thai.el instead of lisp/mule/thai-hooks.el. | |
5777 | |
5778 * lisp/mule/language/thai.el: modified for XEmacs. | |
5779 | |
5780 1997-06-09 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5781 | |
5782 * lisp/mule/mule-load.el, src/Makefile.in.in: Use | |
5783 lisp/mule/language/chinese.el, lisp/mule/language/cyrillic.el, | |
5784 lisp/mule/language/european.el, lisp/mule/language/greek.el, | |
5785 lisp/mule/language/japanese.el and lisp/mule/language/korean.el | |
5786 instead of lisp/mule/chinese-hooks.el, | |
5787 lisp/mule/cyrillic-hooks.el, lisp/mule/european-hooks.el, | |
5788 lisp/mule/greek-hooks.el, lisp/mule/japanese-hooks.el and | |
5789 lisp/mule/korean-hooks.el. | |
5790 | |
5791 * lisp/mule/language/*.el was imported from | |
5792 Emacs/mule-19.34.94-zeta. | |
5793 | |
5794 * Use lisp/mule/language/china-util.el instead of | |
5795 lisp/mule/chinese.el. | |
5796 | |
5797 1997-06-08 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5798 | |
5799 * lisp/apel/emu-x20.el (mime-charset-coding-system-alist): | |
5800 iso-8859-1, hz-gb-2312, cn-gb-2312, gb2312, cn-big5 and koi8-r | |
5801 were defined as coding-system. | |
5802 | |
5803 1997-06-07 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5804 | |
5805 * lisp/gnus/smiley.el (smiley-deformed-regexp-alist): Add Japanese | |
5806 smiley faces. | |
5807 | |
163 | 5808 1997-06-10 Gary D. Foster <Gary.Foster@corp.sun.com> |
384 | 5809 |
163 | 5810 * lisp/modes/view-less.el: Changed \177 bindings to 'delete |
5811 * lisp/modes/help.el: Changed \177 bindings to 'delete | |
5812 | |
5813 1997-06-10 Gary D. Foster <Gary.Foster@corp.sun.com> | |
5814 | |
5815 * lisp/prim/keydefs.el: Changed all 'delete key bindings to point to | |
5816 the `backward-or-forward-foo' functions. | |
5817 * lisp/prim/simple.el: | |
5818 - Renamed `delete-erases-forward' to `delete-key-deletes-forward'. | |
5819 - Removed `backspace-or-delete-hook' | |
5820 - Renamed `backspace-or-delete' to `backward-or-forward-delete-char' | |
5821 - Added functions: `backward-or-forward-kill-word' | |
5822 `backward-or-forward-kill-sentence' | |
5823 `backward-or-forward-kill-sexp' | |
5824 - Removed the zmacs hacks from all the `b-or-f-foo' functions and | |
5825 began playing nicely with pending-del. | |
5826 * lisp/modes/cc-mode.el: | |
5827 * lisp/modes/cperl-mode.el: Fixed references to delete functions | |
5828 to use the new names. | |
384 | 5829 |
157 | 5830 1997-06-09 Steven L Baur <steve@altair.xemacs.org> |
5831 | |
5832 * XEmacs 20.3-b5 is released. | |
5833 | |
155 | 5834 1997-06-05 Steven L Baur <steve@altair.xemacs.org> |
5835 | |
5836 * XEmacs 20.3-b4 is released. | |
5837 | |
5838 1997-06-04 Martin Buchholz <mrb@eng.sun.com> | |
5839 | |
5840 * src/*/*.h: Remove definitions of HAVE_UNION_WAIT, in accordance | |
5841 with new Autoconf 2 mechanisms. | |
5842 * src/syswait.h: | |
5843 * src/sysdep.c: | |
5844 * src/process.c: Use only Posix.1 sys/wait.h-defined symbols | |
5845 | |
5846 * src/s/netbsd.h: complete rewrite, use ORDINARY_LINK, #ifdef out | |
5847 old cruft that can be obtained from system header files. | |
5848 * lib-src/getopt*: Synch with FSF, remove compiler warnings. | |
384 | 5849 |
5850 * lib-src/b2m.c: | |
5851 * src/gifalloc.c: | |
5852 * lib-src/gnuslib.c: | |
5853 * lib-src/profile.c: | |
155 | 5854 * lib-src/movemail.c: Fix compiler warnings |
384 | 5855 |
155 | 5856 * lib-src/Makefile.in.in: Remove unused -DCONFIG_BROKETS flag |
5857 - Fix up compile flags for new etags version | |
5858 | |
384 | 5859 * man/xemacs/programs.texi: |
155 | 5860 * lib-src/etags.c: Upgraded to etags 12.11 |
5861 | |
5862 * src/config.h.in: Fix inline keyword support | |
384 | 5863 |
5864 * configure.in: Use a different mechanism for removing extra white | |
155 | 5865 space. Avoid using foo=`echo $bar`, which loses with various echos. |
5866 - new M4 macro XE_SPACE(var, words...) | |
5867 - Use autoconf 2's AC_HEADER_SYS_WAIT | |
5868 - Check for Xpm-XpmFree instead of Xpm-XpmReadFileToData to avoid | |
5869 linking with losing Xpm implementations | |
5870 - Check for correct wnn4 lib symbols | |
5871 - Only link with inline.o when using gcc | |
5872 - Support inline keywords inline, __inline, __inline__ | |
5873 - Ultrix now implies have_mmap=no | |
5874 - Sun sound in non-standard dirs now works | |
5875 - --native-sound-lib no longer ignored on HP & SGI | |
5876 - gpm configure tests moved after curses configure tests | |
163 | 5877 |
5878 1997-06-04 Gary D. Foster <Gary.Foster@corp.sun.com> | |
5879 | |
384 | 5880 * lisp/modes/cc-mode.el: Modified `c-electric-delete' to honor the |
163 | 5881 desired delete direction in both normal and "hungry" modes. |
384 | 5882 * lisp/modes/cperl-mode.el: Modified `cperl-electric-backspace' to |
163 | 5883 honor the desired delete direction. |
384 | 5884 |
155 | 5885 1997-05-30 Martin Buchholz <mrb@eng.sun.com> |
5886 | |
5887 * configure.in: Automagically compute -R path for gcc | |
5888 | |
163 | 5889 1997-05-30 Gary D. Foster <Gary.Foster@corp.sun.com> |
5890 | |
5891 * lisp/vm/vm-vars.el: Fixed delete key binding to call | |
5892 `vm-scroll-down' | |
384 | 5893 |
155 | 5894 Thu May 29 15:35:07 1997 Martin Buchholz <mrb@eng.sun.com> |
5895 | |
5896 * configure.in: Add support for Solaris2.6 -z ignore linker flags | |
5897 | |
5898 1997-05-29 Martin Buchholz <mrb@eng.sun.com> | |
5899 | |
5900 * configure.in: Replace standard Autoconf MMAP test with Neal | |
5901 Becker's replacement, hacked somewhat. | |
5902 | |
163 | 5903 1997-05-16 Gary D. Foster <Gary.Foster@corp.sun.com> |
5904 | |
5905 * lisp/prim/simple.el: Created `backspace-or-delete' function and | |
5906 `backspace-or-delete-hook' | |
5907 * lisp/prim/keydefs.el: Changed \177 bindings to point to new | |
5908 delete function. | |
5909 * lisp/modes/*.el: Removed conflicting \177 bindings. | |
5910 * lisp/modes/cc-mode.el: Modified `c-electric-delete' to use new | |
5911 delete bindings. | |
384 | 5912 * lisp/modes/cperl-mode.el: Modified `cperl-electric-backspace' to |
163 | 5913 use new delete bindings. |
384 | 5914 |
155 | 5915 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> |
5916 | |
5917 * lisp/x11/x-menubar.el (default-menubar): Add menu for Mule. | |
5918 | |
5919 * lisp/mule/mule-cmds.el: Menu for XEmacs were moved to | |
5920 x11/x-menubar.el. | |
5921 | |
5922 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5923 | |
5924 * lisp/leim/quail.el: to avoid compiling warnings about | |
5925 overlay.el. | |
5926 | |
5927 1997-06-03 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5928 | |
5929 * lisp/leim/quail.el: to sync with quail.el of | |
5930 Emacs-19.34.94-zeta. | |
5931 | |
5932 * lisp/leim/quail/ziranma.el, lisp/leim/quail/tonepy.el, | |
5933 lisp/leim/quail/py.el, lisp/leim/quail/qj.el, | |
5934 lisp/leim/quail/sw.el, lisp/leim/quail/ccdospy.el, | |
5935 lisp/leim/quail/punct.el, lisp/leim/quail/4corner.el, | |
5936 lisp/leim/quail/symbol-ksc.el, lisp/leim/quail/ethiopic.el, | |
5937 lisp/leim/quail/hanja.el, lisp/leim/quail/quick-cns.el, | |
5938 lisp/leim/quail/tsangchi-cns.el, lisp/leim/quail/lrt.el, | |
5939 lisp/leim/quail/tsangchi-b5.el, lisp/leim/quail/devanagari.el, | |
5940 lisp/leim/quail/japanese.el, lisp/leim/quail/quick-b5.el, | |
5941 lisp/leim/quail/punct-b5.el, lisp/leim/quail/qj-b5.el, | |
5942 lisp/leim/quail/py-b5.el, lisp/leim/quail/ctlau.el, | |
5943 lisp/leim/quail/ctlaub.el, lisp/leim/quail/ecdict.el, | |
5944 lisp/leim/quail/array30.el, lisp/leim/quail/hangul3.el, | |
5945 lisp/leim/quail/hanja-jis.el, lisp/leim/quail/cyrillic.el, | |
5946 lisp/leim/quail/etzy.el, lisp/leim/quail/greek.el, | |
5947 lisp/leim/quail/ipa.el, lisp/leim/quail/lao.el, | |
5948 lisp/leim/quail/zozy.el, lisp/leim/quail/viqr.el, | |
5949 lisp/leim/quail/latin.el, lisp/leim/quail/thai.el, | |
5950 lisp/leim/quail/hangul.el: quail of LEIM for Emacs-19.34.94-zeta. | |
5951 | |
5952 1997-06-02 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5953 | |
5954 * mule/korean.el was abolished because it seems not to be used. | |
5955 | |
5956 * mule/japanese.el was abolished because it seems not to be used. | |
5957 | |
5958 1997-06-01 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5959 | |
5960 * lisp/tm/gnus-mime-old.el was abolished because XEmacs 20.3 has | |
5961 Gnus 5.4. | |
5962 | |
5963 * lisp/tm/tm-edit.el: updated to 7.108. | |
5964 | |
5965 * lisp/tm/tm-view.el: updated to 7.83. | |
5966 | |
5967 * lisp/leim/quail.el: modified for XEmacs. | |
5968 | |
5969 * lisp/mule/mule-load.el, lisp/mule/mule-process.el: delete | |
5970 mule-process.el because it is not used. | |
5971 | |
5972 * lisp/mule/european.el was abolished because it seems not to be | |
5973 used. | |
5974 | |
5975 * lisp/mule/mule-load.el: must load mule-cmds before setting for | |
5976 language-environment. | |
5977 | |
5978 * lisp/mule/european-hooks.el: Modified for LEIM. | |
5979 | |
5980 * lisp/mule/mule-cmds.el: Uncomment key definition for | |
5981 `toggle-input-method'. | |
5982 | |
5983 * lisp/mule/mule-init.el: Comment out about `mule-keymap' (moved | |
5984 to mule-cmds.el). | |
5985 | |
5986 * lisp/mule/mule-cmds.el: Uncomment about `mule-keymap' (moved | |
5987 from mule-init.el). | |
5988 | |
5989 * lisp/tl/tl-atype.el: Don't require tl-str. | |
5990 | |
5991 * lisp/tl/tl-atype.el: Use atype.el of APEL. | |
5992 | |
5993 * lisp/tl/tl-list.el: Use alist.el of APEL. | |
5994 | |
5995 1997-05-31 MORIOKA Tomohiko <morioka@jaist.ac.jp> | |
5996 | |
5997 * lisp/tl/richtext.el, lisp/tl/emu-x20.el, lisp/tl/emu-xemacs.el, | |
5998 lisp/tl/emu.el, lisp/tl/emu-e19.el: moved to apel/. | |
5999 | |
6000 * lisp/tl/file-detect.el, lisp/tl/filename.el: replaced by APEL's. | |
6001 | |
6002 * lisp/mu/std11-parse.el, lisp/mu/std11.el: moved to apel/. | |
6003 | |
6004 * lisp/leim/quail.el: Add new quail.el (imported from Emacs | |
6005 19.34.94-epsilon). | |
6006 | |
6007 * lisp/leim/skk/skkdic.el: delete skkdic.el temporary because | |
6008 XEmacs can not compile it. | |
6009 | |
6010 * lisp/leim/skk/skkdic.el, lisp/leim/quail/zozy.el, | |
6011 lisp/leim/quail/ziranma.el, lisp/leim/quail/viqr.el, | |
6012 lisp/leim/quail/tsangchi-cns.el, lisp/leim/quail/tsangchi-b5.el, | |
6013 lisp/leim/quail/symbol-ksc.el, lisp/leim/quail/thai.el, | |
6014 lisp/leim/quail/tonepy.el, lisp/leim/quail/quick-cns.el, | |
6015 lisp/leim/quail/sw.el, lisp/leim/quail/qj-b5.el, | |
6016 lisp/leim/quail/qj.el, lisp/leim/quail/quick-b5.el, | |
6017 lisp/leim/quail/py-b5.el, lisp/leim/quail/py.el, | |
6018 lisp/leim/quail/lao.el, lisp/leim/quail/latin.el, | |
6019 lisp/leim/quail/lrt.el, lisp/leim/quail/punct-b5.el, | |
6020 lisp/leim/quail/punct.el, lisp/leim/quail/hanja-jis.el, | |
6021 lisp/leim/quail/hanja.el, lisp/leim/quail/ipa.el, | |
6022 lisp/leim/quail/japanese.el, lisp/leim/quail/hangul3.el, | |
6023 lisp/leim/quail/etzy.el, lisp/leim/quail/greek.el, | |
6024 lisp/leim/quail/hangul.el, lisp/leim/quail/ethiopic.el, | |
6025 lisp/leim/quail/devanagari.el, lisp/leim/quail/ecdict.el, | |
6026 lisp/leim/quail/ctlau.el, lisp/leim/quail/ctlaub.el, | |
6027 lisp/leim/quail/cyrillic.el, lisp/leim/quail/array30.el, | |
6028 lisp/leim/quail/ccdospy.el, lisp/leim/quail/4corner.el: Add LEIM | |
6029 elisp files; old lisp/quail was abolished. | |
6030 | |
6031 * src/Makefile.in.in: Add mule-cmds.elc. | |
6032 | |
6033 * lisp/mule/mule-load.el, lisp/mule/mule-cmds.el: Add mule-cmds.el | |
6034 (imported from Emacs-19.34.94-epsilon and comment out a lot to | |
6035 avoid conflict with mule-init.el or other XEmacs/mule files). | |
6036 | |
6037 * lisp/prim/simple.el (assoc-ignore-case): New function; imported | |
6038 from Emacs-19.34.94-epsilon. | |
6039 | |
153 | 6040 1997-05-29 Steven L Baur <steve@altair.xemacs.org> |
6041 | |
6042 * XEmacs 20.3-beta3 is released. | |
6043 | |
6044 * INSTALL: Delete documentation of mocklisp support. | |
6045 | |
6046 * configure.in: Delete mocklisp support. | |
6047 | |
6048 1997-05-29 Martin Buchholz <mrb@eng.sun.com> | |
6049 | |
6050 * configure.in: Replace standard Autoconf MMAP test with Neal | |
6051 Becker's replacement, hacked somewhat. | |
6052 | |
6053 1997-05-28 Martin Buchholz <mrb@eng.sun.com> | |
6054 | |
6055 * lisp/prim/files.el (auto-mode-alist): Reorg auto-mode-alist again. | |
6056 | |
6057 * lib-src/etags.c: Version 12.7 from Francesco. | |
6058 | |
6059 * configure.in: Juggle link order of X libraries. | |
6060 Add support for using zsh to run configure. | |
6061 Document --with-tty=no. | |
6062 Fix -no-recursion option. | |
6063 Recognize and ignore --cache-file option. | |
6064 Recognize null values for preprocessor symbols converted to shell | |
6065 variables. This maybe fixes the "-ltermcap" problem. | |
6066 Remove spurious blanks from various SUBST-ituted variables. | |
6067 Fix conditional creation of gdbinit. | |
6068 Conditionally create .sbinit for Sunpro C. | |
6069 | |
151 | 6070 1997-05-22 Steven L Baur <steve@altair.xemacs.org> |
6071 | |
6072 * XEmacs 20.3-beta2 is released. | |
6073 | |
6074 Thu May 22 04:19:09 1997 Martin Buchholz <mrb@eng.sun.com> | |
6075 | |
6076 * configure.in: Try to fix all reported bugs with 20.3-b1. | |
6077 Change HAVE_WNN6 to WNN6. WNN6 correctly autodetected. | |
6078 extra-verbose now default on beta builds. | |
6079 extra-verbose now much more verbose. | |
6080 Don't set libs_termcap to " ". | |
6081 Detect -lXm AFTER detecting -lXpm. | |
6082 Use runtime paths before running tests, since AC_TRY_RUN may | |
6083 depend on it. | |
6084 with-xim=motif only default on Solaris. | |
6085 realpath moved from s&m to configure.in. | |
384 | 6086 xemacs-version.h removed. main_1 now contains $canonical as well, |
151 | 6087 for even more useful backtraces. |
6088 termcap handling rewritten. | |
6089 Create .sbinit for Sun's source browser. | |
6090 Warn user if no XPM support present. | |
6091 Warn user if compiling in error checking. | |
6092 | |
384 | 6093 * Makefile.in: use MAKE_SUBDIR consistently. Remove references to |
151 | 6094 dynodump. Remove core when cleaning. Remove config.log. |
6095 make distclean now functional. | |
6096 | |
6097 Sun May 18 13:03:20 1997 Steven L Baur <steve@altair.xemacs.org> | |
6098 | |
6099 * lwlib/Makefile.in.in (distclean): Clean up config.h. | |
6100 | |
6101 * Makefile.in (distclean): Remve config.log. | |
6102 remove broken dynodump stuffs. | |
6103 | |
149 | 6104 Sat May 17 20:30:54 1997 Steven L Baur <steve@altair.xemacs.org> |
6105 | |
6106 * XEmacs 20.3-b1 is released. | |
6107 | |
6108 Fri May 16 20:38:19 1997 Steven L Baur <steve@altair.xemacs.org> | |
6109 | |
6110 * info/dir (Packages): Update minor version number. | |
6111 | |
6112 * README: Update minor version number. | |
6113 | |
146 | 6114 Tue May 13 20:35:52 1997 Steven L Baur <steve@altair.xemacs.org> |
6115 | |
6116 * XEmacs-20.2 is released. | |
6117 | |
144 | 6118 Sat May 10 16:14:30 1997 Steven L Baur <steve@altair.xemacs.org> |
6119 | |
6120 * XEmacs 20.2-b6 is released. | |
6121 | |
142 | 6122 Thu May 8 20:22:34 1997 Steven L Baur <steve@altair.xemacs.org> |
6123 | |
6124 * XEmacs 20.2-b5 is released. | |
6125 | |
140 | 6126 Fri May 2 16:50:02 1997 Steven L Baur <steve@altair.xemacs.org> |
6127 | |
6128 * XEmacs 20.2-b4 is released. | |
6129 | |
6130 Thu May 1 18:13:38 1997 Steven L Baur <steve@altair.xemacs.org> | |
6131 | |
6132 * configure.in (--with-xim): Don't default it to Motif since it | |
6133 causes crashes at startup on some systems. | |
6134 | |
138 | 6135 Sun Apr 27 12:25:55 1997 Steven L Baur <steve@altair.xemacs.org> |
6136 | |
6137 * XEmacs 20.2-b3 is released. | |
6138 | |
136 | 6139 Wed Apr 23 10:33:58 1997 Steven L Baur <steve@altair.xemacs.org> |
6140 | |
6141 * XEmacs 20.2-b2 is released. | |
6142 | |
6143 * configure.in (beta): OPENWINHOME misspelled. | |
6144 | |
134 | 6145 Sat Apr 19 16:13:16 1997 Steven L Baur <steve@altair.xemacs.org> |
6146 | |
6147 * XEmacs 20.2-b1 is released. | |
6148 | |
6149 Thu Apr 17 21:33:59 1997 Steven L Baur <steve@altair.xemacs.org> | |
6150 | |
6151 * configure.in (beta): SONY NEWS-OS has /etc/osversion and not | |
6152 uname. | |
6153 | |
131 | 6154 Wed Apr 16 17:44:05 1997 Steven L Baur <steve@altair.xemacs.org> |
6155 | |
6156 * XEmacs 20.1 is re-released. | |
6157 | |
126 | 6158 Tue Apr 15 21:03:22 1997 Steven L Baur <steve@altair.xemacs.org> |
6159 | |
6160 * XEmacs 20.1 is released. | |
6161 | |
124 | 6162 Sat Apr 12 20:11:08 1997 Steven L Baur <steve@altair.xemacs.org> |
6163 | |
6164 * XEmacs 20.1-b15 is released. | |
6165 | |
6166 Sat Apr 12 09:01:32 1997 Hrvoje Niksic <hniksic@srce.hr> | |
6167 * PROBLEMS: I have cleaned up a bit the PROBLEMS file, by: | |
6168 1) changing it into sections -- there is now a section for building, | |
6169 running and compatibility problems | |
6170 | |
6171 2) removing some obviously obsolete entries -- e.g. those pertaining | |
6172 to Emacs 18, etc. --> size is off by 20K | |
6173 | |
6174 3) Rearranging the entries by relevance. I have tried to put the most | |
6175 relevant entries in front. | |
384 | 6176 |
122 | 6177 Thu Apr 10 19:07:26 1997 Steven L Baur <steve@altair.xemacs.org> |
6178 | |
6179 * XEmacs 20.1-b14 is released. (Beta 13 was skipped). | |
6180 | |
120 | 6181 Wed Apr 9 22:52:06 1997 Steven L Baur <steve@altair.xemacs.org> |
6182 | |
6183 * XEmacs 20.1-b12 is released. | |
6184 | |
6185 Sun Apr 6 22:31:00 1997 Tatsuya Ichikawa <ichikawa@hv.epson.co.jp> | |
6186 | |
6187 * configure.in: Cosmetic change to summary print of POP/Kerberos/ | |
6188 Hesiod options. | |
6189 | |
118 | 6190 Sat Apr 5 09:11:36 1997 Steven L Baur <steve@altair.xemacs.org> |
6191 | |
6192 * XEmacs 20.1-b11 is released. | |
6193 | |
6194 Wed Apr 2 15:27:35 1997 Steven L Baur <steve@altair.xemacs.org> | |
6195 | |
384 | 6196 * Makefile.in (install-only): New target. Functionality suggested |
118 | 6197 by Larry Schwimmer, correct way of doing it suggested by Chuck |
6198 Thompson. | |
6199 | |
6200 * configure.in: Default to "-Olimit 2000" as suggested by Jamie | |
6201 Zawinski for SGI cc and Irix 6. | |
6202 | |
6203 Tue Apr 1 12:23:13 1997 Steven L Baur <steve@altair.xemacs.org> | |
6204 | |
6205 * configure.in: Add configuration parameters for Emacs 19.34 | |
6206 movemail.c (--with-pop, --with-kerberos, --with-hesiod). | |
6207 | |
6208 Fri Mar 28 19:58:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
6209 | |
6210 * configure.in: Remove garbage if [ ... ] constructs and a | |
6211 mispatch. | |
6212 | |
116 | 6213 Thu Mar 27 18:24:19 1997 Steven L Baur <steve@altair.xemacs.org> |
6214 | |
6215 * XEmacs 20.1-b10 is released. | |
6216 | |
6217 Wed Mar 26 22:31:10 1997 Steven L Baur <steve@altair.xemacs.org> | |
6218 | |
6219 * Remove vms top-level directory. | |
384 | 6220 |
116 | 6221 * XEmacs 19.15 final released to beta testers. |
6222 | |
6223 Tue Mar 25 19:13:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
6224 | |
6225 * XEmacs 19.15 prefinal released to beta testers. | |
6226 | |
6227 Mon Mar 24 12:28:17 1997 Steven L Baur <steve@altair.xemacs.org> | |
6228 | |
6229 * configure.in (--debug): Correct documentation. | |
6230 | |
6231 Sun Mar 23 17:24:38 1997 Steven L Baur <steve@altair.xemacs.org> | |
6232 | |
6233 * XEmacs 19.15-b104 is released. | |
6234 | |
6235 Sat Mar 22 17:55:15 1997 Darrell Kindred <dkindred@cmu.edu> | |
6236 | |
6237 * configure.in (beta): Add configure support for the -rpath flag | |
6238 for IRIX analogous to the Solaris "-R". | |
6239 | |
6240 Sat Mar 22 16:47:08 1997 Steven L Baur <steve@altair.xemacs.org> | |
6241 | |
6242 * info/dir (Packages): Add HM-HTML-Mode to menu. | |
6243 | |
6244 Sat Mar 22 21:27:41 1997 Tomasz J. Cholewo <t.cholewo@ieee.org> | |
6245 | |
424 | 6246 * configure.in: Echo only current configuration using 'tee -a'. |
116 | 6247 |
114 | 6248 Fri Mar 21 21:26:01 1997 Steven L Baur <steve@altair.xemacs.org> |
6249 | |
6250 * XEmacs-19.15-b103 is released. | |
6251 * XEmacs-20.0-b9 is released. | |
6252 | |
6253 * Makefile.in (top_distclean): Add `Installation' to distclean | |
6254 rule. | |
6255 | |
6256 Fri Mar 21 20:05:29 1997 Darrell Kindred <dkindred@cmu.edu> | |
6257 | |
6258 * Makefile.in (autoloads): Pass $(MAKE) to update-elc.sh and | |
6259 update-autoloads.sh. | |
6260 | |
6261 Thu Mar 20 20:14:16 1997 Steven L Baur <steve@altair.xemacs.org> | |
6262 | |
6263 * XEmacs-19.15-b102 is released. | |
6264 | |
6265 Tue Mar 18 21:52:36 1997 Steven L Baur <steve@altair.xemacs.org> | |
6266 | |
6267 * XEmacs-19.15-b101 is released. | |
6268 | |
112 | 6269 Mon Mar 17 19:09:29 1997 Steven L Baur <steve@altair.xemacs.org> |
6270 | |
6271 * XEmacs-20.1-b8 is released. | |
6272 * XEmacs-19.15-b100 is released. | |
6273 | |
110 | 6274 Sat Mar 15 17:15:18 1997 Steven L Baur <steve@altair.xemacs.org> |
6275 | |
112 | 6276 * XEmacs-20.1-b7 is released. |
6277 * XEmacs-19.15-b99 is released. | |
6278 | |
110 | 6279 Thu Mar 13 10:40:11 1997 Steven L Baur <steve@altair.xemacs.org> |
6280 | |
6281 * configure.in: Add sunos4-1-4 header files. | |
6282 | |
6283 Wed Mar 12 18:53:08 1997 Steven L Baur <steve@altair.xemacs.org> | |
6284 | |
6285 * configure.in: Use new file bsdos3.h with BSDI 3.0. | |
6286 | |
108 | 6287 Sat Mar 8 15:19:33 1997 Steven L Baur <steve@altair.xemacs.org> |
6288 | |
6289 * XEmacs-20.1-b6 is released. | |
6290 * XEmacs-19.15-b98 is released. | |
6291 | |
6292 Wed Mar 5 18:55:36 1997 Steven L Baur <steve@altair.xemacs.org> | |
6293 | |
6294 * Makefile.in (install-arch-indep): Offer to compress lisp sources. | |
6295 (gzip-el): New targe for compressed installed lisp sources. | |
6296 | |
6297 Tue Mar 4 23:28:37 1997 Martin Buchholz <mrb@eng.sun.com> | |
6298 | |
6299 * lib-src/update-elc.sh: VM is compiled after the byte-compiler, | |
6300 but before anything else. More flexible about finding an xemacs | |
6301 to use for byte-compilation (default src/xemacs). Other minor fixes. | |
6302 | |
106 | 6303 Mon Mar 3 23:57:56 1997 Steven L Baur <steve@altair.xemacs.org> |
6304 | |
6305 * XEmacs 20.1-b5 is released. | |
6306 | |
104 | 6307 Mon Mar 3 18:09:17 1997 Steven L Baur <steve@altair.xemacs.org> |
6308 | |
6309 * XEmacs 20.1-b4 is released. | |
6310 | |
6311 Sat Mar 1 15:38:30 1997 Steven L Baur <steve@altair.xemacs.org> | |
6312 | |
6313 * Makefile.in (distclean): Correct typos. | |
6314 | |
6315 * XEmacs 19.15-b96 is released. | |
6316 | |
6317 * configure.in: Symlink site-lisp when using --srcdir. | |
6318 Add special handling of lisp directory to allow for multiple | |
6319 site-packages files. | |
6320 | |
6321 Fri Feb 28 20:38:46 1997 Steven L Baur <steve@altair.xemacs.org> | |
6322 | |
6323 * Makefile.in (distclean): Create lock and site-lisp directories | |
6324 when they don't exist (after being pruned by CVS). | |
6325 | |
102 | 6326 Wed Feb 26 22:12:12 1997 Steven L Baur <steve@altair.xemacs.org> |
6327 | |
6328 * Makefile.in (top_distclean): Reset src/PURESIZE.h for | |
6329 distribution. | |
6330 | |
6331 * XEmacs 20.1-b3 is released. | |
6332 | |
100 | 6333 Sun Feb 23 17:10:09 1997 Steven L Baur <steve@altair.xemacs.org> |
6334 | |
6335 * XEmacs 20.1-b2 is released. | |
6336 | |
6337 Sat Feb 22 14:29:44 1997 Steven L Baur <steve@altair.xemacs.org> | |
6338 | |
6339 * XEmacs 19-15-b'95 is released. | |
6340 | |
102 | 6341 Fri Feb 21 22:29:51 1997 Martin Buchholz <mrb@eng.sun.com> |
6342 | |
6343 * lwlib/xlwscrollbar.c : Fix many scrollbar bugs: | |
6344 - "knob" renamed to "slider" | |
6345 - leftmost pixel wasn't sensitive to button clicks, while righmost | |
6346 pixel was. | |
6347 - many glitches fixed if Emacs*XlwScrollBar.ArrowPosition:same: | |
6348 - goobers on top of up-arrow removed. | |
6349 - up-arrow would not always be redrawn when necessary | |
6350 - slider drag would be `off' by size of up-arrow | |
6351 - horizontal and vertical scrollbars didn't use exactly the same | |
6352 dimensions. | |
6353 - slider was never drawn if XlwScrollBar.shadowThickness was 0. | |
6354 - Now up- and down-arrows actually work near beginning/end of buffer! | |
6355 | |
100 | 6356 Thu Feb 20 12:40:57 1997 Jan Vroonhof <vroonhof@math.ethz.ch> |
6357 | |
6358 * configure.in (with_xauth): Attempted correction of test for | |
6359 libXmu on SunOS. | |
6360 | |
98 | 6361 Sat Feb 15 14:11:03 1997 Steven L Baur <steve@altair.xemacs.org> |
6362 | |
6363 * XEmacs 20.1-b1 is released. | |
6364 * XEmacs 19.15-b94 is released. | |
6365 | |
6366 Fri Feb 14 23:23:03 1997 Steven L Baur <steve@altair.xemacs.org> | |
6367 | |
6368 * README: ``This directory tree holds version 19.13 ...'' ??? | |
6369 | |
6370 Sun Feb 9 16:15:55 1997 Steven L Baur <steve@altair.xemacs.org> | |
6371 | |
6372 * XEmacs 19.15-b93 is released. | |
6373 XEmacs 20.0 is released to the 'net. | |
6374 | |
96 | 6375 Fri Feb 7 19:21:34 1997 Steven L Baur <steve@altair.xemacs.org> |
6376 | |
6377 * XEmacs 20.0try3 is released. | |
6378 | |
94 | 6379 Wed Feb 5 18:03:06 1997 Steven L Baur <steve@altair.xemacs.org> |
6380 | |
96 | 6381 * XEmacs 20.0try2 is released. |
94 | 6382 |
96 | 6383 Mon Feb 3 19:39:08 1997 Steven L Baur <steve@altair.xemacs.org> |
94 | 6384 |
6385 * XEmacs 19.15-b92 is released. | |
6386 | |
88 | 6387 Sat Feb 1 18:17:38 1997 Steven L Baur <steve@altair.xemacs.org> |
6388 | |
96 | 6389 * XEmacs 20.0try1 is released. |
94 | 6390 * XEmacs 19.15-b91 AKA XEmacs '97 NOT! is released. |
88 | 6391 |
6392 Sat Feb 1 00:00:48 1997 Steven L Baur <steve@altair.xemacs.org> | |
6393 | |
6394 * PROBLEMS: Updated from beta test bug reports. | |
6395 Put in outline-mode/outl-mouse-minor-mode by default. | |
6396 | |
6397 Wed Jan 29 19:59:41 1997 Steven L Baur <steve@altair.xemacs.org> | |
6398 | |
6399 * CHANGES-beta: XEmacs 20.0-b93 is released. | |
6400 | |
84 | 6401 Sat Jan 25 15:43:59 1997 Steven L Baur <steve@altair.xemacs.org> |
6402 | |
6403 * CHANGES-beta: XEmacs 20.0-b92 is released. | |
6404 | |
6405 Fri Jan 24 09:54:01 1997 Steven L Baur <steve@altair.xemacs.org> | |
6406 | |
6407 * lwlib/xlwmenu.c (massage_resource_name): Changed comparison of | |
6408 char and pointer. | |
6409 | |
6410 Thu Jan 23 10:39:34 1997 Martin Buchholz <mrb@eng.sun.com> | |
6411 | |
6412 * lib-src/update-elc.sh (ignore_dirs): Quoting portability. | |
6413 | |
82 | 6414 Wed Jan 22 21:07:17 1997 Steven L Baur <steve@altair.xemacs.org> |
6415 * XEmacs 20.0-b91 (prerelease 2) is released. | |
6416 | |
6417 * configure.in (--with-scrollbars): Add Athena3d as a toolkit | |
6418 type. | |
6419 | |
6420 * lwlib/lwlib-Xaw.c (xaw_update_one_widget): Let Athena 3d have 0 | |
6421 borderwidth. | |
6422 (xaw_scrollbar_scroll): Use SCROLLBAR_LINE_UP and | |
6423 SCROLLBAR_LINE_DOWN since that's current the only to get to the | |
6424 bottom of the buffer. :-( | |
6425 | |
6426 Tue Jan 21 20:01:19 1997 Steven L. Baur <steve@altair.xemacs.org> | |
6427 | |
6428 * configure.in (beta): Add LWLIB_USES_ATHENA for odd | |
6429 configurations that use both Motif and Athena. | |
6430 | |
6431 Wed Jan 15 12:55:19 1997 Steven L Baur <steve@altair.xemacs.org> | |
6432 | |
6433 * info/dir (Gnus): Updated spelling and info. | |
6434 | |
6435 Mon Jan 13 13:37:27 1997 Steven L Baur <steve@altair.xemacs.org> | |
6436 | |
6437 * configure.in: Remove assignment of NON_GNU_CPP for irix-6.0. | |
6438 | |
6439 Mon Jan 13 00:36:01 1997 Martin Buchholz <mrb@eng.sun.com> | |
6440 | |
6441 * lib-src/make-docfile.c (scan_lisp_file): eliminate doc-string | |
6442 warnings for ccl-read-* | |
6443 | |
80 | 6444 Sat Jan 11 12:05:31 1997 Steven L Baur <steve@altair.xemacs.org> |
82 | 6445 |
80 | 6446 * XEmacs 20.0 beta90 (prerelease 1) is released. |
6447 * XEmacs 19.15 beta90 (prerelease 1) is released. | |
384 | 6448 |
80 | 6449 Tue Jan 7 08:45:16 1997 Steven L Baur <steve@altair.xemacs.org> |
6450 | |
6451 * configure.in (LIBS): Revise test for XFree86 (look for XF86Config). | |
6452 | |
78 | 6453 Sat Jan 4 14:52:57 1997 Steven L Baur <steve@altair.xemacs.org> |
6454 * XEmacs 20.0 beta 34 is released. | |
6455 * XEmacs 19.15 beta 7 is released. | |
6456 | |
177 | 6457 Fri Jan 3 15:18:59 1997 Jeff Miller <jmiller@smart.net> |
78 | 6458 |
6459 * lwlib/Makefile.in.in: lwlib is required if X11 is used. | |
6460 | |
80 | 6461 Wed Jan 1 08:30:48 1997 Martin Buchholz <mrb@eng.sun.com> |
6462 | |
384 | 6463 * src/emacs.c: Make sure |
6464 `./temacs -batch -l loadup.el run-temacs <emacs-args>' | |
80 | 6465 works properly |
6466 | |
6467 * src/Makefile.in.in (rtcmacs): Add support for RTC, Sun's | |
6468 competitor to Purify. | |
6469 | |
6470 * man/lispref/symbols.texi: Fix up bit vector documentation | |
6471 * man/lispref/sequences.texi: Fix up bit vector documentation | |
6472 | |
6473 * lisp/sunpro/sunpro-load.el: Only preload mime-setup for Sun. | |
6474 | |
6475 * lisp/prim/update-elc.el: Don't rely on autoloads. | |
6476 | |
6477 Tue Dec 31 09:46:13 1996 Martin Buchholz <mrb@eng.sun.com> | |
6478 | |
6479 * lisp/prim/auto-autoloads.el: New, completely program-generated, file | |
6480 * lib-src/update-autoloads.sh: Rewritten to use auto-autoloads.el. | |
6481 * lisp/utils/autoload.el: Reorganization of autoload mechanism: | |
6482 Errors during autoload generation are just that - errors. | |
384 | 6483 |
80 | 6484 Generated autoloads are now in a separate file of their own. |
384 | 6485 |
80 | 6486 Reliability of autoload generation greatly increased. |
384 | 6487 |
80 | 6488 Distribution smaller by about 100k. |
384 | 6489 |
80 | 6490 `make autoloads' is still the preferred mechanism for update. |
384 | 6491 |
80 | 6492 Autoloads are always regenerated completely from scratch. This |
6493 avoids errors with obsolete or corrupted autoload entries. | |
6494 | |
6495 Caching of autoload entries using timestamps has been eliminated. | |
384 | 6496 |
80 | 6497 Files that have no autoloads no longer have a comment placed into |
6498 the generated autoloads file. | |
6499 | |
6500 There was a bug where autoload entries would sometimes end up | |
6501 being inserted into the *middle* of other autoload entries, | |
6502 thereby corrupting them. | |
6503 | |
6504 * src/event-Xt.c: Remove SUNOS_GCC_L0_BUG kludge. | |
6505 | |
6506 Sun Dec 29 05:37:43 1996 Martin Buchholz <mrb@eng.sun.com> | |
6507 | |
6508 * lib-src/update-autoloads.sh: Make sure that `make autoloads' | |
6509 doesn't use the autoload facility to load `autoload'; | |
6510 load it explicity instead. | |
6511 | |
6512 * lib-src/update-elc.sh (ignore_dirs): ignore SCCS, CVS, RCS dirs | |
6513 | |
6514 * man/Makefile: Reinstate hyperbole & oo-browser manuals | |
6515 | |
6516 * lisp/modes/mail-abbrevs.el: Apply patch originated from Noah Friedman | |
6517 | |
6518 * src/mule-charset.c: Use lower case for charset registry, to | |
6519 match XLFD. | |
6520 | |
6521 * Makefile.in: replace list of info files with *.info* - one less | |
6522 maintenance headache | |
6523 | |
6524 * man/oo-browser.texi: Fix TeXability | |
6525 | |
6526 * man/hyperbole.texi: Fix TeXability | |
6527 | |
6528 * man/vhdl-mode.texi: Fix TeXability | |
6529 | |
6530 * lisp/prim/loaddefs.el: Wholesale housecleaning | |
6531 `make autoloads' should finally work. | |
6532 | |
6533 * lib-src/emacsclient.c (main): ANSIfication, compiler warning removal | |
6534 | |
6535 * lisp/mule/mule-files.el: Add support for multi-lingual info files. | |
6536 | |
6537 * lib-src/update-elc.sh: `make all-elc' was updating files in | |
6538 `special' directories without using the Makefiles | |
6539 designed for that purpose. | |
6540 - make sure ilisp isn't remade every time through `make all-elc'. | |
6541 | |
6542 * info/dir (Packages): Add Japanese TM info files | |
6543 | |
6544 * src/inline.c: Allow compilation with `gcc -g' | |
6545 | |
6546 * src/syntax.c (word_constituent_p): Allow compilation with `gcc -g' | |
6547 | |
6548 * src/lread.c: Don't put `...' immediately after a filename, so | |
6549 that various tools can recognize the filename as such. | |
6550 | |
6551 * src/event-Xt.c (x_to_emacs_keysym): Fix crash when | |
384 | 6552 --with-xim=xlib and key event on window frame. |
80 | 6553 Change return foo to return (foo) when return is a macro. |
6554 | |
6555 * src/editfns.c (Ffollowing_char): docstring fixes. | |
6556 | |
6557 * man/tm/Makefile: Add support for Japanese TM info (but not dvi) files. | |
6558 This Makefile is no longer officially broken. | |
6559 | |
6560 * info/dir: Add Japanese tm documents. | |
6561 | |
6562 * man/tm/tm-vm-en.texi: Make document TeX-friendly. | |
6563 | |
6564 * lib-src/update-autoloads.sh (EMACS): Don't rely on non-portable | |
6565 xargs -i flag. | |
6566 | |
6567 * lisp/mule/mule-files.el (file-coding-system-alist): Make sure | |
6568 the `binary' coding system is used for .gz and .Z extensions. | |
6569 | |
6570 * man/viper.texi: Viper version 2.90 | |
6571 | |
6572 * man/ediff.texi: Ediff Version 2.62 | |
6573 | |
6574 * lisp/packages/ispell.el (ispell-word): Avoid using strings with | |
6575 define-key, for compatibility with loaddefs.el | |
6576 | |
6577 * lisp/modes/eiffel3.el: Make compatible with update-autoloads. | |
6578 | |
6579 * lisp/ilisp/Makefile (elc): Add target to avoid re-compilation. | |
6580 | |
6581 * lib-src/update-elc.sh: XEmacs sometimes re-byte-compiled elisp | |
6582 files in dirs that have their own Makefiles. | |
6583 | |
78 | 6584 Sun Dec 29 17:02:49 1996 Steven L Baur <steve@altair.xemacs.org> |
6585 | |
6586 * Makefile.in (install-arch-indep): Force compression with `gzip -f'. | |
6587 | |
6588 * lib-src/update-elc.sh (NUMTOCOMPILE): Ignore CVS directories. | |
6589 | |
6590 * Makefile.in (install-arch-indep): Catch .info-[0-9]* files for | |
6591 installation. | |
6592 | |
6593 Sat Dec 28 15:33:27 1996 Steven L Baur <steve@altair.xemacs.org> | |
6594 | |
6595 * XEmacs 20.0 beta 33 is released. | |
6596 * XEmacs 19.15 beta 6 is released. | |
6597 | |
76 | 6598 Fri Dec 27 01:02:41 1996 Martin Buchholz <mrb@eng.sun.com> |
6599 | |
6600 * Makefile.in (install-arch-indep): Simplify installation of info | |
6601 pages. | |
6602 | |
6603 Sat Dec 21 15:20:20 1996 Steven L Baur <steve@altair.xemacs.org> | |
6604 * XEmacs 20.0-b32 released. | |
6605 | |
6606 * XEmacs 19.15-b5 released. | |
6607 | |
74 | 6608 Wed Dec 18 20:22:08 1996 Martin Buchholz <mrb@eng.sun.com> |
6609 | |
6610 * configure.in: Reformat. Fix shared include file rename | |
6611 problem. | |
6612 | |
6613 * configure: Reformat. Fix shared include file rename problem. | |
6614 | |
6615 * dynodump/dynodump.c (__EXTENSIONS__): Define it. | |
6616 | |
6617 Thu Dec 12 13:19:00 1996 Joseph J Nuspl <nuspl@nvwls.cc.purdue.edu> | |
6618 | |
6619 * Makefile.in (install-arch-indep): Install infofiles gzipped by | |
6620 default. | |
6621 | |
6622 Tue Dec 10 19:25:25 1996 Steven L Baur <steve@altair.xemacs.org> | |
6623 | |
6624 * CHANGES-beta: XEmacs 20.0-b31 is released. | |
6625 | |
72 | 6626 Tue Dec 10 18:33:19 1996 Rod Whitby <rwhitby@asc.sps.mot.com> |
6627 | |
6628 * info/vhdl-mode.info: New file. | |
6629 | |
6630 * info/dir (Packages): Add vhdl-mode documentation. | |
6631 | |
6632 Tue Dec 10 18:27:02 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
6633 | |
6634 * configure: Make shared/dynamic flags work much more logically. | |
6635 | |
6636 Tue Dec 10 09:17:22 1996 David Worenklein <dcw@gcm.com> | |
6637 | |
6638 * configure.in (machine): Patch to make newly renamed shared | |
6639 link include files work. | |
6640 | |
6641 Sat Dec 7 16:28:10 1996 Martin Buchholz <mrb@Eng.Sun.COM> | |
6642 | |
6643 * configure.in: Configure for POSIX getcwd if available. | |
6644 | |
6645 Thu Dec 5 11:56:05 1996 Joseph J Nuspl <nuspl@nvwls.cc.purdue.edu> | |
6646 | |
6647 * configure.in (LIBS): Fix typo in dialog box test. |