Re: Build Failure in 21.5 sources
16 years, 12 months
Aidan Kehoe
Ar an naoú lá is fiche de mí na Samhain, scríobh Vin Shelton:
> Aidan,
>
> After today's check-ins I'm getting build failures in trying to build
> from a clean copy of the latest CVS sources, here's the error I'm
> getting:
There’s no bug to resolve by inspection in that backtrace, and I can’t
reproduce it locally :-(. Your mail didn’t actually include an Installation
file; my attempts used my normal arguments to configure, and a version of
that in the last Installation file you sent along adapted to my
architecture. Could you send on another?
> [...]
>
> I'm seeing this across a variety of configurations, I've attached one
> of the Installation files.
--
¿Dónde estará ahora mi sobrino Yoghurtu Nghé, que tuvo que huir
precipitadamente de la aldea por culpa de la escasez de rinocerontes?
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
ediff-revision with docdiff
16 years, 12 months
Uwe Brauer
Hello
Docdiff is a nice utility which allows to compare 2 files word by word
and writes the difference in one single HTML file, in which the
differences are highlighted. The result looks very much as if a human
would have corrected some text.
Now I wrote a primitive function which works for two files but I would
like to modify ediff-revision (using RCS) such that docdiff runs on
two versions of a file under version control.
Here is what I did and what does not work:
(defun docdiff-vc-version ()
"Invoke docdiff for the current buffer,
and run mozilla-firefox -remote openfile(filename)
to preview the diff"
(interactive)
(let* ((currentname
(buffer-file-name (current-buffer)))
(newbuffer
(vc-version-other-window (read-string "Version number: ")))
(origname
(vc-version-other-window (read-string "Version number: "))))
(diff-command
"/usr/bin/docdiff --html %s %s > %s")
(mozilla-command-line
"/usr/local/seamonkey/seamonkey -remote 'openfile(%s)'")
(moztmpfile-name
(concat default-directory
".docdiff/docdifftmp.html")))
(shell-command
(format diff-command
origname
newbuffer
moztmpfile-name))
(shell-command
(format mozilla-command-line
moztmpfile-name)))
The problem is the second call:
(vc-version-other-window (read-string "Version number: "))))
in the first call xemacs has identified the other version say,
test.~1.1~ but then in the second call applies it to that file (and
fails since this file is _not_ under version control) and not the
original file which _is_ under version control.
I tried several tricks such that the second vc-version-other-window
call takes place in the original buffer but I did not succeed it also
would help if vc-version-other-window would allow me to specify the
file but it does not. If somebody has an idea I would be grateful.
Thanks
Uwe Brauer
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
XEmacs Packages have been pre-released (2007-11-29-09)
16 years, 12 months
Norbert Koch
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hey there everyone.
I have just added the following packages to the 'Pre-Releases'
directory:
New Packages in Pre-Release:
===========================
net-utils-1.54-pkg.tar.gz upstream version: N/A
Previously Announced Packages Still in Pre-Release:
==================================================
apel-1.33-pkg.tar.gz upstream version: 10.6
auctex-1.48-pkg.tar.gz upstream version: 11.55
calendar-1.34-pkg.tar.gz upstream version: none
dired-1.18-pkg.tar.gz upstream version: 7.14
easypg-1.01-pkg.tar.gz upstream version: 0.0.15
ediff-1.72-pkg.tar.gz upstream version: 2.75
edit-utils-2.38-pkg.tar.gz upstream version: none
edt-1.14-pkg.tar.gz upstream version: none
efs-1.34-pkg.tar.gz upstream version: 1.24
eshell-1.12-pkg.tar.gz upstream version: 2.4.1
eudc-1.40-pkg.tar.gz upstream version: 1.32
general-docs-1.05-pkg.tar.gz upstream version: none
guided-tour-0.51-pkg.tar.gz upstream version: none
hm--html-menus-1.24-pkg.tar.gz upstream version: 5.9
hyperbole-1.17-pkg.tar.gz upstream version: 5.0
igrep-1.15-pkg.tar.gz upstream version: 2.111
leim-1.26-pkg.tar.gz upstream version: none
locale-1.27-pkg.tar.gz upstream version: none
mh-e-1.31-pkg.tar.gz upstream version: 7.4.2
mule-base-1.52-pkg.tar.gz upstream version: none
mule-ucs-1.16-pkg.tar.gz upstream version: 0.84
oo-browser-1.05-pkg.tar.gz upstream version: 4.08
os-utils-1.40-pkg.tar.gz upstream version: none
pcl-cvs-1.68-pkg.tar.gz upstream version: R-2_9_9
perl-modes-1.10-pkg.tar.gz upstream version: none
prog-modes-2.15-pkg.tar.gz upstream version: none
psgml-1.45-pkg.tar.gz upstream version: 1.3.2
python-modes-1.09-pkg.tar.gz upstream version: none
scheme-1.16-pkg.tar.gz upstream version: none
skk-1.24-pkg.tar.gz upstream version: 10.62a
text-modes-1.95-pkg.tar.gz upstream version: none
tramp-1.39-pkg.tar.gz upstream version: 2.0.56
vc-1.45-pkg.tar.gz upstream version: none
viper-1.59-pkg.tar.gz upstream version: 3.09
vm-7.26-pkg.tar.gz upstream version: 7.19
w3-1.34-pkg.tar.gz upstream version: 4.0pre47
xemacs-base-2.11-pkg.tar.gz upstream version: none
xemacs-devel-1.76-pkg.tar.gz upstream version: none
Detailed Changes:
================
- ------- ChangeLog Entries from xemacs-packages/net-utils/ChangeLog -------
2007-11-29 Norbert Koch <viteno(a)xemacs.org>
* Makefile (VERSION): XEmacs package 1.54 released.
2007-11-28 Aidan Kehoe <kehoea(a)parhasard.net>
* xemacsbug.el:
Document that we speak most of the major Western languages plus
Japanese, but that English is the working language of the project
and reports in it are preferred.
* xemacsbug.el (report-xemacs-bug-help):
Don't quote the lambda expression as a list.
* xemacsbug.el (xemacs-default-composefunc-dont-nag): New.
defvar it here (it's been added to the core of 21.5) to avoid
compile errors on 21.4.
* xemacsbug.el (report-xemacs-bug):
Bind xemacs-default-composefunc-dont-nag to avoid warnings about
the crapness of the default email client when reporting bugs.
* xemacsbug.el (report-xemacs-bug-hook):
Don't quote the lambda expression as a list.
Installing These:
================
Manually:
- --------
1) Download the packages that you want to install from:
/ftp.xemacs.org:/pub/xemacs/beta/experimental/packages/
2) Unpack them to: [1]
/usr/local/lib/xemacs/xemacs-packages/
3) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.[245].x):
- ----------------------------------------------
1) Tools -> Packages -> Add Download Site -> Pre-Releases
2) Tools -> Packages -> List and Install
3) Select the packages you wish to install (there are brief
instructions at the bottom of the packages buffer).
4) Packages -> Install/Remove Selected
5) Re-start XEmacs.
Using XEmacs Package Tools (XEmacs 21.1.14):
- -------------------------------------------
1) Options -> Manage Packages -> Add Download Site -> Pre-Releases
2) Options -> Manage Packages -> List and Install
3 - 5) As per XEmacs 21.[245].x.
norbert - XEmacs Package Release Manager.
Footnotes:
[1] Note: Mule packages should be installed into:
/usr/local/lib/xemacs/mule-packages/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHTn6Igu3ywdHdhM0RAkgfAKCz8gBubc6PV8LjbiaKZ9MU0LBMuwCgvOom
VuHv1eLeyoii9jLHXbDYqVo=
=Hoj9
-----END PGP SIGNATURE-----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Package Maintainers Heads Up
16 years, 12 months
Norbert Koch
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello Package Maintainers,
I'd like to officially release the packages in a couple of days. Do you
have any objections to this or mandatory fixes?
Thanks, best regards,
norbert.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHMjcKgu3ywdHdhM0RAv9sAJ9TIhp6bqI1jMVdu2QSjx/fmXrItQCeLWBP
659fDORv1dhVds6G/AY0flg=
=EO/z
-----END PGP SIGNATURE-----
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: Problem installing Xemacs 21.4.15 on Ubuntu
17 years
Jerry James
On Nov 21, 2007 2:10 AM, Cristi Bujor <ctbujor(a)yahoo.com> wrote:
> Hi,
> Can you please help me installing Xemacs 21.4.15 on Linux Ubuntu? I get an
> error when trying to configure for the first time. There is in attach the
> config.log genereated. Please help me if you can.
>
The config.log error indicates that you do not have a termcap library
installed. It looks like you configured XEmacs for TTY support, but don't
have any TTY libraries installed on your machine. Install the ncurses
library or configure without TTY support if you'll always be running in X
Windows.
Also, Ubuntu has prebuilt XEmacs packages for you already, so unless you
want some non-default feature, you don't need to build your own. Check
http://packages.ubuntu.com/ for packages containing "xemacs".
Let us know if you need any more help. Regards,
--
Jerry James
http://loganjerry.googlepages.com/
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Xemacs 21.4.21 failed compile on Fedora 6 system
17 years
Keith Steward
Please describe as succinctly as possible:
- What happened.
- What you thought should have happened.
- Precisely what you were doing at the time.
after download of xemacs 21.4.21 source, un-tarred the .gz, ran configure (it completed w/o errors),
then ran make and got:
--------- last of the make output ----------
...
make[1]: Leaving directory `/root/downloads/xemacs-21.4.21/lib-src'
cd ./lwlib && make all
make[1]: Entering directory `/root/downloads/xemacs-21.4.21/lwlib'
gcc -c -g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes -Wsign-compare -fno-strict-aliasing -Wshadow -I. -DHAVE_CONFIG_H lwlib.c
gcc -c -g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes -Wsign-compare -fno-strict-aliasing -Wshadow -I. -DHAVE_CONFIG_H lwlib-utils.c
gcc -c -g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes -Wsign-compare -fno-strict-aliasing -Wshadow -I. -DHAVE_CONFIG_H lwlib-config.c
gcc -c -g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes -Wsign-compare -fno-strict-aliasing -Wshadow -I. -DHAVE_CONFIG_H lwlib-Xaw.c
gcc -c -g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes -Wsign-compare -fno-strict-aliasing -Wshadow -I. -DHAVE_CONFIG_H xlwmenu.c
xlwmenu.c:39:28: error: X11/bitmaps/gray: No such file or directory
xlwmenu.c: In function 'XlwMenuInitialize':
xlwmenu.c:3015: error: 'gray_bits' undeclared (first use in this function)
xlwmenu.c:3015: error: (Each undeclared identifier is reported only once
xlwmenu.c:3015: error: for each function it appears in.)
xlwmenu.c:3016: error: 'gray_width' undeclared (first use in this function)
xlwmenu.c:3016: error: 'gray_height' undeclared (first use in this function)
make[1]: *** [xlwmenu.o] Error 1
make[1]: Leaving directory `/root/downloads/xemacs-21.4.21/lwlib'
make: *** [lwlib] Error 2
---------- end of make run -------------------------
obviously the issue is X11/bitmaps/gray is missing. Shouldn't configure have reported some missing dependency or something?
My system is a Fedora Core release 6 (Zod).
-keith
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Re: CVS timing out.
17 years
Aidan Kehoe
Ar an ceathrú lá is fiche de mí na Samhain, scríobh Rick Rankin:
> I just did an update. No problems here...
Yeah, now I check pserver is working for me too. But r/w access (= requires
an SSH login as the xemacs user) is still timing out.
--
¿Dónde estará ahora mi sobrino Yoghurtu Nghé, que tuvo que huir
precipitadamente de la aldea por culpa de la escasez de rinocerontes?
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
CVS timing out.
17 years
Aidan Kehoe
bonbon [ cvs update
Connection to cvs.xemacs.org closed by remote host.
cvs [update aborted]: end of file from server (consult above messages if
any)
bonbon [
Anyone know when this is likely to be resolved? Dotsrc.org mentions work and
occasional expected outages two weekends ago, but that should be finished
now.
--
¿Dónde estará ahora mi sobrino Yoghurtu Nghé, que tuvo que huir
precipitadamente de la aldea por culpa de la escasez de rinocerontes?
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
Question: what's the benifit of compile in database support?
17 years
FKtPp
Dear developers,
As the subject said I have a stupid question, what is the advantages
of compile in a database support like:
--8<---------------cut here---------------start------------->8---
Databases:
Compiling in support for Berkeley database.
--8<---------------cut here---------------end--------------->8---
Can I use this in elisp scripts inside XEmacs, If so, how to use it?
Is there any documents/info pages describe this kind of usage?
--
ENCODING
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta