unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Cannot build emacs without x
@ 2008-05-20  6:09 Herbert Euler
  2008-05-20 18:16 ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Herbert Euler @ 2008-05-20  6:09 UTC (permalink / raw)
  To: emacs-devel



I have trouble building emacs without x.  It is configured with

  CFLAGS="-g -g3 -gdwarf-2" ./configure --without-x

and the build process fails with

gcc -Demacs -DHAVE_CONFIG_H  -I. -I/home/bihong/src/emacs/src -D_BSD_SOURCE    -g -g3 -gdwarf-2 -Wl,-znocombreloc /home/bihong/src/emacs/src/prefix-args.c -o prefix-args
echo "dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o charset.o coding.o category.o ccl.o character.o chartab.o cm.o term.o terminal.o xfaces.o    emacs.o keyboard.o macros.o keymap.o sysdep.o buffer.o filelock.o insdel.o marker.o minibuf.o fileio.o dired.o filemode.o cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o alloc.o data.o doc.o editfns.o callint.o eval.o floatfns.o fns.o print.o lread.o syntax.o unexelf.o bytecode.o process.o callproc.o region-cache.o sound.o atimer.o doprnt.o strftime.o intervals.o textprop.o composite.o md5.o     terminfo.o lastfile.o   vm-limit.o  mktime.o "> buildobj.lst
gcc -nostdlib `./prefix-args -Xlinker  -z nocombreloc` -Wl,-znocombreloc -o temacs pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o charset.o coding.o category.o ccl.o character.o chartab.o cm.o term.o terminal.o xfaces.o    emacs.o keyboard.o macros.o keymap.o sysdep.o buffer.o filelock.o insdel.o marker.o minibuf.o fileio.o dired.o filemode.o cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o alloc.o data.o doc.o editfns.o callint.o eval.o floatfns.o fns.o print.o lread.o syntax.o unexelf.o bytecode.o process.o callproc.o region-cache.o sound.o atimer.o doprnt.o strftime.o intervals.o textprop.o composite.o md5.o     terminfo.o lastfile.o   vm-limit.o  mktime.o       -lgpm -lncurses   -lm -lgcc -lc -lgcc /usr/lib/crtn.o 
xfaces.o(.text+0x11cb): In function `merge_face_ref':
/home/bihong/src/emacs/src/xfaces.c:2700: undefined reference to `FONT_WEIGHT_NAME_NUMERIC'
xfaces.o(.text+0x120f):/home/bihong/src/emacs/src/xfaces.c:2712: undefined reference to `FONT_SLANT_NAME_NUMERIC'
xfaces.o(.text+0x1454):/home/bihong/src/emacs/src/xfaces.c:2795: undefined reference to `FONT_WIDTH_NAME_NUMERIC'
xfaces.o(.text+0x1d1c): In function `Finternal_set_lisp_face_attribute':
/home/bihong/src/emacs/src/xfaces.c:3123: undefined reference to `FONT_WEIGHT_NAME_NUMERIC'
xfaces.o(.text+0x1d98):/home/bihong/src/emacs/src/xfaces.c:3137: undefined reference to `FONT_SLANT_NAME_NUMERIC'
xfaces.o(.text+0x22f8):/home/bihong/src/emacs/src/xfaces.c:3307: undefined reference to `FONT_WIDTH_NAME_NUMERIC'
xfaces.o(.text+0x3e91): In function `tty_supports_face_attributes_p':
/home/bihong/src/emacs/src/xfaces.c:5119: undefined reference to `FONT_WEIGHT_NAME_NUMERIC'
xfaces.o(.text+0x3ead):/home/bihong/src/emacs/src/xfaces.c:5122: undefined reference to `FONT_WEIGHT_NAME_NUMERIC'
xfaces.o(.text+0x45d4): In function `Finternal_set_font_selection_order':
/home/bihong/src/emacs/src/xfaces.c:5389: undefined reference to `font_update_sort_order'
xfaces.o(.text+0x4e18): In function `realize_tty_face':
/home/bihong/src/emacs/src/xfaces.c:6061: undefined reference to `FONT_WEIGHT_NAME_NUMERIC'
xfaces.o(.text+0x4e2e):/home/bihong/src/emacs/src/xfaces.c:6062: undefined reference to `FONT_SLANT_NAME_NUMERIC'
print.o(.text+0x62c2): In function `print_object':
/home/bihong/src/emacs/src/print.c:2147: undefined reference to `font_style_symbolic'
collect2: ld returned 1 exit status
gmake[2]: *** [temacs] Error 1
gmake[2]: Leaving directory `/home/bihong/src/emacs/src'
gmake[1]: *** [bootstrap-build] Error 2
gmake[1]: Leaving directory `/home/bihong/src/emacs'
gmake: *** [bootstrap] Error 2

Regards,
Guanpeng Xu
_________________________________________________________________
Connect to the next generation of MSN Messenger 
http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlmailtagline



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Cannot build emacs without x
  2008-05-20  6:09 Cannot build emacs without x Herbert Euler
@ 2008-05-20 18:16 ` Eli Zaretskii
  2008-05-20 18:49   ` Eli Zaretskii
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2008-05-20 18:16 UTC (permalink / raw)
  To: Herbert Euler; +Cc: emacs-devel

> From: Herbert Euler <herberteuler@hotmail.com>
> Date: Tue, 20 May 2008 14:09:44 +0800
> 
> 
> 
> I have trouble building emacs without x.  It is configured with
> 
>   CFLAGS="-g -g3 -gdwarf-2" ./configure --without-x
> 
> and the build process fails with

Yes, this is a known problem, reported a few days ago.  Handa-san
promised to work on it soon.




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Cannot build emacs without x
  2008-05-20 18:16 ` Eli Zaretskii
@ 2008-05-20 18:49   ` Eli Zaretskii
  2008-05-21  3:25     ` Herbert Euler
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2008-05-20 18:49 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: herberteuler, emacs-devel

> Date: Tue, 20 May 2008 21:16:22 +0300
> From: Eli Zaretskii <eliz@gnu.org>
> Cc: emacs-devel@gnu.org
> 
> > From: Herbert Euler <herberteuler@hotmail.com>
> > Date: Tue, 20 May 2008 14:09:44 +0800
> > 
> > 
> > 
> > I have trouble building emacs without x.  It is configured with
> > 
> >   CFLAGS="-g -g3 -gdwarf-2" ./configure --without-x
> > 
> > and the build process fails with
> 
> Yes, this is a known problem, reported a few days ago.  Handa-san
> promised to work on it soon.

Oops, I see he already did.




^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: Cannot build emacs without x
  2008-05-20 18:49   ` Eli Zaretskii
@ 2008-05-21  3:25     ` Herbert Euler
  0 siblings, 0 replies; 4+ messages in thread
From: Herbert Euler @ 2008-05-21  3:25 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: emacs-devel


>>> I have trouble building emacs without x. It is configured with
>>>
>>> CFLAGS="-g -g3 -gdwarf-2" ./configure --without-x
>>>
>>> and the build process fails with
>>
>> Yes, this is a known problem, reported a few days ago. Handa-san
>> promised to work on it soon.
>
> Oops, I see he already did.

Thanks, I see that too.

Regards,
Guanpeng Xu
_________________________________________________________________
Invite your mail contacts to join your friends list with Windows Live Spaces. It's easy!
http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-05-21  3:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-20  6:09 Cannot build emacs without x Herbert Euler
2008-05-20 18:16 ` Eli Zaretskii
2008-05-20 18:49   ` Eli Zaretskii
2008-05-21  3:25     ` Herbert Euler

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).