* 23.0.60; does not compile in src/font.c because not updated
@ 2007-12-02 18:43 Peter Dyballa
2007-12-03 11:43 ` Kenichi Handa
0 siblings, 1 reply; 7+ messages in thread
From: Peter Dyballa @ 2007-12-02 18:43 UTC (permalink / raw)
To: emacs-pretest-bug
Hello!
When trying a 'make bootstrap' from freshly and completely checked-
out code (around 17:00 UTC+1) it fails with:
font.c: In function ‘font_list_entities’:
font.c:2188: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c: In function ‘font_matching_entity’:
font.c:2264: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c: In function ‘font_open_entity’:
font.c:2336: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c: In function ‘font_has_char’:
font.c:2405: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c: In function ‘font_load_for_face’:
font.c:2655: error: ‘struct face’ has no member named ‘font_info’
font.c:2662: error: ‘struct face’ has no member named ‘font_info’
font.c: In function ‘font_prepare_for_face’:
font.c:2677: error: ‘struct face’ has no member named ‘font_info’
font.c: In function ‘font_done_for_face’:
font.c:2691: error: ‘struct face’ has no member named ‘font_info’
font.c:2695: error: ‘struct face’ has no member named ‘extra’
font.c: In function ‘register_font_driver’:
font.c:2772: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c:2790: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c: In function ‘free_font_driver_list’:
font.c:2804: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c:2806: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c:2808: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c:2809: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c: In function ‘font_update_drivers’:
font.c:2832: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c:2841: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c: In function ‘font_put_frame_data’:
font.c:2865: error: ‘struct frame’ has no member named ‘font_data_list’
font.c:2876: error: ‘struct frame’ has no member named ‘font_data_list’
font.c:2888: error: ‘struct frame’ has no member named ‘font_data_list’
font.c:2889: error: ‘struct frame’ has no member named ‘font_data_list’
font.c: In function ‘font_get_frame_data’:
font.c:2903: error: ‘struct frame’ has no member named ‘font_data_list’
font.c: In function ‘font_at’:
font.c:2943: error: ‘struct face’ has no member named ‘font_info’
font.c:2945: error: ‘struct face’ has no member named ‘font_info’
font.c: In function ‘Flist_families’:
font.c:3139: error: ‘struct frame’ has no member named
‘font_driver_list’
font.c: In function ‘Fclear_font_cache’:
font.c:3209: error: ‘struct frame’ has no member named
‘font_driver_list’
make[2]: *** [font.o] Error 1
Indeed the struct frame as defined in src/frame.h does not have these
members.
--
Greetings
Pete
Real Time, adj.:
Here and now, as opposed to fake time, which only occurs there and then.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; does not compile in src/font.c because not updated
2007-12-02 18:43 23.0.60; does not compile in src/font.c because not updated Peter Dyballa
@ 2007-12-03 11:43 ` Kenichi Handa
2007-12-03 14:47 ` Peter Dyballa
0 siblings, 1 reply; 7+ messages in thread
From: Kenichi Handa @ 2007-12-03 11:43 UTC (permalink / raw)
To: Peter Dyballa; +Cc: emacs-pretest-bug
In article <4037A4FD-C9A2-4B5C-BA48-B7476E1E015A@Freenet.DE>, Peter Dyballa <Peter_Dyballa@Freenet.DE> writes:
> When trying a 'make bootstrap' from freshly and completely checked-
> out code (around 17:00 UTC+1) it fails with:
> font.c: In function font_list_entities:
> font.c:2188: error: struct frame has no member named
> font_driver_list
Sorry, I'm now removing many #ifdef USE_FONT_BACKEND in font
related code. I'll fix codes to be compilable even without
font-backend soon.
---
Kenichi Handa
handa@ni.aist.go.jp
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; does not compile in src/font.c because not updated
2007-12-03 11:43 ` Kenichi Handa
@ 2007-12-03 14:47 ` Peter Dyballa
2007-12-04 6:17 ` Kenichi Handa
0 siblings, 1 reply; 7+ messages in thread
From: Peter Dyballa @ 2007-12-03 14:47 UTC (permalink / raw)
To: Kenichi Handa; +Cc: emacs-pretest-bug
Am 03.12.2007 um 12:43 schrieb Kenichi Handa:
> In article <4037A4FD-C9A2-4B5C-BA48-B7476E1E015A@Freenet.DE>, Peter
> Dyballa writes:
>
>> When trying a 'make bootstrap' from freshly and completely checked-
>> out code (around 17:00 UTC+1) it fails with:
>
>> font.c: In function font_list_entities:
>> font.c:2188: error: struct frame has no member named
>> font_driver_list
>
> Sorry, I'm now removing many #ifdef USE_FONT_BACKEND in font
> related code. I'll fix codes to be compilable even without
> font-backend soon.
>
When configuring with font-backend enabled I get:
/sw/lib/odcctools/bin/ld: multiple definitions of symbol _Qx
frame.o definition of _Qx in section (__DATA,__common)
xfont.o definition of _Qx in section (__DATA,__common)
and no temacs gets built.
--
Greetings
Pete
...And always remember the last words of my grandfather, who said:
“A truck!” — Emo Phillips
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; does not compile in src/font.c because not updated
2007-12-03 14:47 ` Peter Dyballa
@ 2007-12-04 6:17 ` Kenichi Handa
2007-12-04 18:35 ` Peter Dyballa
2007-12-05 0:38 ` Peter Dyballa
0 siblings, 2 replies; 7+ messages in thread
From: Kenichi Handa @ 2007-12-04 6:17 UTC (permalink / raw)
To: Peter Dyballa; +Cc: emacs-pretest-bug
In article <669878EA-8CB7-403D-873E-E6D1A25C846E@Freenet.DE>, Peter Dyballa <Peter_Dyballa@Freenet.DE> writes:
> > Sorry, I'm now removing many #ifdef USE_FONT_BACKEND in font
> > related code. I'll fix codes to be compilable even without
> > font-backend soon.
> >
> When configuring with font-backend enabled I get:
> /sw/lib/odcctools/bin/ld: multiple definitions of symbol _Qx
> frame.o definition of _Qx in section (__DATA,__common)
> xfont.o definition of _Qx in section (__DATA,__common)
> and no temacs gets built.
I've just installed a fix. Could you please try again?
---
Kenichi Handa
handa@ni.aist.go.jp
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; does not compile in src/font.c because not updated
2007-12-04 6:17 ` Kenichi Handa
@ 2007-12-04 18:35 ` Peter Dyballa
2007-12-05 0:38 ` Peter Dyballa
1 sibling, 0 replies; 7+ messages in thread
From: Peter Dyballa @ 2007-12-04 18:35 UTC (permalink / raw)
To: Kenichi Handa; +Cc: emacs-pretest-bug
Am 04.12.2007 um 07:17 schrieb Kenichi Handa:
>> /sw/lib/odcctools/bin/ld: multiple definitions of symbol _Qx
>> frame.o definition of _Qx in section (__DATA,__common)
>> xfont.o definition of _Qx in section (__DATA,__common)
>
>> and no temacs gets built.
>
> I've just installed a fix. Could you please try again?
Compiles, but src/emacs, when configured with enabled font backend,
crashes after a minute without opening a frame:
pete 315 /\ src/emacs -Q --debug-init &
[1]
pete 316 /\
[1] Segmentation fault src/emacs -Q --debug-init
Time spent in user mode (CPU seconds) : 32.779s
Time spent in kernel mode (CPU seconds) : 4.905s
Total time : 1:30.86s
CPU utilisation (percentage) : 41.4%
--
Greetings
Pete
’Twas a woman who drove me to drink, and I never had the courtesy
to thank her for it. — W.C. Fields
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; does not compile in src/font.c because not updated
2007-12-04 6:17 ` Kenichi Handa
2007-12-04 18:35 ` Peter Dyballa
@ 2007-12-05 0:38 ` Peter Dyballa
2007-12-06 1:18 ` Kenichi Handa
1 sibling, 1 reply; 7+ messages in thread
From: Peter Dyballa @ 2007-12-05 0:38 UTC (permalink / raw)
To: Kenichi Handa; +Cc: emacs-pretest-bug
Am 04.12.2007 um 07:17 schrieb Kenichi Handa:
> I've just installed a fix. Could you please try again?
Configuring without an enabled font backend leads after compiling to
a GNU Emacs launches (I stopped thinking 'round midnight and made
another bootstrap!). It still has a bug with calendar: when I choose
to display the holidays of year 2007 this gets translated to holiday-
list(2002) which then fails (in 23.0.50 it's already fixed). 23.0.50
has also a fixed configure script which adds -lresolv on Mac OS X.
--
Greetings
Pete
Windows, c'est un peu comme le beaujolais nouveau: à chaque nouvelle
cuvée on sait que ce sera dégueulasse, mais on en prend quand même,
par masochisme.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: 23.0.60; does not compile in src/font.c because not updated
2007-12-05 0:38 ` Peter Dyballa
@ 2007-12-06 1:18 ` Kenichi Handa
0 siblings, 0 replies; 7+ messages in thread
From: Kenichi Handa @ 2007-12-06 1:18 UTC (permalink / raw)
To: Peter Dyballa; +Cc: emacs-pretest-bug
In article <01BAF341-0C54-464C-94B5-2230A082CE89@Freenet.DE>, Peter Dyballa <Peter_Dyballa@Freenet.DE> writes:
> Am 04.12.2007 um 07:17 schrieb Kenichi Handa:
> > I've just installed a fix. Could you please try again?
> Configuring without an enabled font backend leads after compiling to
> a GNU Emacs launches (I stopped thinking 'round midnight and made
> another bootstrap!). It still has a bug with calendar: when I choose
> to display the holidays of year 2007 this gets translated to holiday-
> list(2002) which then fails (in 23.0.50 it's already fixed). 23.0.50
> has also a fixed configure script which adds -lresolv on Mac OS X.
If it is fixed in the trunk, that fix will be propagated to
emacs-unicode-2 sooner or later.
---
Kenichi Handa
handa@ni.aist.go.jp
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-12-06 1:18 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-02 18:43 23.0.60; does not compile in src/font.c because not updated Peter Dyballa
2007-12-03 11:43 ` Kenichi Handa
2007-12-03 14:47 ` Peter Dyballa
2007-12-04 6:17 ` Kenichi Handa
2007-12-04 18:35 ` Peter Dyballa
2007-12-05 0:38 ` Peter Dyballa
2007-12-06 1:18 ` Kenichi Handa
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).