all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* term.c:2257: error: 'Qtty_color_mode' undeclared
@ 2010-07-28 23:54 Makoto Fujiwara
  2010-07-29  7:02 ` Jan Djärv
  0 siblings, 1 reply; 2+ messages in thread
From: Makoto Fujiwara @ 2010-07-28 23:54 UTC (permalink / raw)
  To: Emacs Development

Is this only at my environment ?
or already fixed ?

cc -c -I/usr/include -Demacs -DHAVE_CONFIG_H  -I. -I/export/pkgsrc/wip/emacs-current-nox11/work/emacs/src             -MMD -MF deps/term.d  -Wold-style-definition -Wdeclaration-after-statement -Wno-pointer-sign  -O2 -I/usr/include term.c
term.c: In function 'set_tty_color_mode':
term.c:2257: error: 'Qtty_color_mode' undeclared (first use in this function)
term.c:2257: error: (Each undeclared identifier is reported only once
term.c:2257: error: for each function it appears in.)
gmake[2]: *** [term.o] Error 1
gmake[2]: Leaving directory `/export/pkgsrc/wip/emacs-current-nox11/work/emacs/src'
gmake[1]: *** [src] Error 2
gmake[1]: Leaving directory `/export/pkgsrc/wip/emacs-current-nox11/work/emacs'
gmake: *** [bootstrap] Error 2
*** Error code 2

modena@makoto 07:35:07/100729(..wip/emacs-current-nox11)% uname -a
NetBSD modena 5.0_STABLE NetBSD 5.0_STABLE (XEN3_DOM0) #0: Wed Apr  7 02:17:52 UTC 2010  builds@b8.netbsd.org:/home/builds/ab/netbsd-5/amd64/201004070000Z-obj/home/builds/ab/netbsd-5/src/sys/arch/amd64/compile/XEN3_DOM0 amd64
modena@makoto 08:53:40/100729(..wip/emacs-current-nox11)% gcc --version
gcc (GCC) 4.1.3 20080704 prerelease (NetBSD nb2 20081120)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

modena@makoto 08:53:44/100729(..wip/emacs-current-nox11)% 

---
Makoto Fujiwara, 
Chiba, Japan, Narita Airport and Disneyland prefecture.

--- src/term.c.orig	2010-07-27 23:09:41.000000000 +0900
+++ src/term.c	2010-07-27 23:09:50.000000000 +0900
@@ -129,6 +129,7 @@
 /* If true, use "vs", otherwise use "ve" to make the cursor visible.  */
 
 static int visible_cursor;
+Lisp_Object Qtty_color_mode;
 
 /* Display space properties */
 



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

* Re: term.c:2257: error: 'Qtty_color_mode' undeclared
  2010-07-28 23:54 term.c:2257: error: 'Qtty_color_mode' undeclared Makoto Fujiwara
@ 2010-07-29  7:02 ` Jan Djärv
  0 siblings, 0 replies; 2+ messages in thread
From: Jan Djärv @ 2010-07-29  7:02 UTC (permalink / raw)
  To: Makoto Fujiwara; +Cc: Emacs Development

2010-07-29 01:54, Makoto Fujiwara skrev:
> Is this only at my environment ?
> or already fixed ?

It was an error, I fixed it now.

	Jan D.

>
> cc -c -I/usr/include -Demacs -DHAVE_CONFIG_H  -I. -I/export/pkgsrc/wip/emacs-current-nox11/work/emacs/src             -MMD -MF deps/term.d  -Wold-style-definition -Wdeclaration-after-statement -Wno-pointer-sign  -O2 -I/usr/include term.c
> term.c: In function 'set_tty_color_mode':
> term.c:2257: error: 'Qtty_color_mode' undeclared (first use in this function)
> term.c:2257: error: (Each undeclared identifier is reported only once
> term.c:2257: error: for each function it appears in.)
> gmake[2]: *** [term.o] Error 1
> gmake[2]: Leaving directory `/export/pkgsrc/wip/emacs-current-nox11/work/emacs/src'
> gmake[1]: *** [src] Error 2
> gmake[1]: Leaving directory `/export/pkgsrc/wip/emacs-current-nox11/work/emacs'
> gmake: *** [bootstrap] Error 2
> *** Error code 2
>
> modena@makoto 07:35:07/100729(..wip/emacs-current-nox11)% uname -a
> NetBSD modena 5.0_STABLE NetBSD 5.0_STABLE (XEN3_DOM0) #0: Wed Apr  7 02:17:52 UTC 2010  builds@b8.netbsd.org:/home/builds/ab/netbsd-5/amd64/201004070000Z-obj/home/builds/ab/netbsd-5/src/sys/arch/amd64/compile/XEN3_DOM0 amd64
> modena@makoto 08:53:40/100729(..wip/emacs-current-nox11)% gcc --version
> gcc (GCC) 4.1.3 20080704 prerelease (NetBSD nb2 20081120)
> Copyright (C) 2006 Free Software Foundation, Inc.
> This is free software; see the source for copying conditions.  There is NO
> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
>
> modena@makoto 08:53:44/100729(..wip/emacs-current-nox11)%
>
> ---
> Makoto Fujiwara,
> Chiba, Japan, Narita Airport and Disneyland prefecture.
>
> --- src/term.c.orig	2010-07-27 23:09:41.000000000 +0900
> +++ src/term.c	2010-07-27 23:09:50.000000000 +0900
> @@ -129,6 +129,7 @@
>   /* If true, use "vs", otherwise use "ve" to make the cursor visible.  */
>
>   static int visible_cursor;
> +Lisp_Object Qtty_color_mode;
>
>   /* Display space properties */
>




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

end of thread, other threads:[~2010-07-29  7:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-28 23:54 term.c:2257: error: 'Qtty_color_mode' undeclared Makoto Fujiwara
2010-07-29  7:02 ` Jan Djärv

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.