all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Compilation bug with the gsettings stuff
@ 2011-06-30 14:42 Lars Magne Ingebrigtsen
  2011-06-30 14:55 ` Jan Djärv
  2011-06-30 15:08 ` Jan Djärv
  0 siblings, 2 replies; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 2011-06-30 14:42 UTC (permalink / raw)
  To: Jan D.; +Cc: emacs-devel

After pulling bzr now, first ./configure would infloop because of a
missing "&& test", which I fixed.

But now compilation fails with:

xsettings.c:211: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
xsettings.c: In function 'init_gsettings':
xsettings.c:791: error: 'gsettings_client' undeclared (first use in this function)
xsettings.c:791: error: (Each undeclared identifier is reported only once
xsettings.c:791: error: for each function it appears in.)
xsettings.c:791: warning: implicit declaration of function 'g_settings_new'
xsettings.c:803: warning: implicit declaration of function 'g_settings_get_value'
xsettings.c:812: warning: implicit declaration of function 'g_settings_bind'
xsettings.c:813: error: 'G_SETTINGS_BIND_GET' undeclared (first use in this function)
xsettings.c: In function 'syms_of_xsettings':
xsettings.c:937: error: 'gsettings_client' undeclared (first use in this function)
make[1]: *** [xsettings.o] Error 1

-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/



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

* Re: Compilation bug with the gsettings stuff
  2011-06-30 14:42 Compilation bug with the gsettings stuff Lars Magne Ingebrigtsen
@ 2011-06-30 14:55 ` Jan Djärv
  2011-06-30 15:08 ` Jan Djärv
  1 sibling, 0 replies; 4+ messages in thread
From: Jan Djärv @ 2011-06-30 14:55 UTC (permalink / raw)
  To: Lars Magne Ingebrigtsen; +Cc: emacs-devel

Try with --without-gsettings.  I'll fix it.

	Jan D.


Lars Magne Ingebrigtsen skrev 2011-06-30 16.42:
> After pulling bzr now, first ./configure would infloop because of a
> missing "&&  test", which I fixed.
>
> But now compilation fails with:
>
> xsettings.c:211: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
> xsettings.c: In function 'init_gsettings':
> xsettings.c:791: error: 'gsettings_client' undeclared (first use in this function)
> xsettings.c:791: error: (Each undeclared identifier is reported only once
> xsettings.c:791: error: for each function it appears in.)
> xsettings.c:791: warning: implicit declaration of function 'g_settings_new'
> xsettings.c:803: warning: implicit declaration of function 'g_settings_get_value'
> xsettings.c:812: warning: implicit declaration of function 'g_settings_bind'
> xsettings.c:813: error: 'G_SETTINGS_BIND_GET' undeclared (first use in this function)
> xsettings.c: In function 'syms_of_xsettings':
> xsettings.c:937: error: 'gsettings_client' undeclared (first use in this function)
> make[1]: *** [xsettings.o] Error 1
>



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

* Re: Compilation bug with the gsettings stuff
  2011-06-30 14:42 Compilation bug with the gsettings stuff Lars Magne Ingebrigtsen
  2011-06-30 14:55 ` Jan Djärv
@ 2011-06-30 15:08 ` Jan Djärv
  2011-06-30 15:10   ` Lars Magne Ingebrigtsen
  1 sibling, 1 reply; 4+ messages in thread
From: Jan Djärv @ 2011-06-30 15:08 UTC (permalink / raw)
  To: Lars Magne Ingebrigtsen; +Cc: emacs-devel

Fix checked in, please try again.

	Jan D.

Lars Magne Ingebrigtsen skrev 2011-06-30 16.42:
> After pulling bzr now, first ./configure would infloop because of a
> missing "&&  test", which I fixed.
>
> But now compilation fails with:
>
> xsettings.c:211: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token
> xsettings.c: In function 'init_gsettings':
> xsettings.c:791: error: 'gsettings_client' undeclared (first use in this function)
> xsettings.c:791: error: (Each undeclared identifier is reported only once
> xsettings.c:791: error: for each function it appears in.)
> xsettings.c:791: warning: implicit declaration of function 'g_settings_new'
> xsettings.c:803: warning: implicit declaration of function 'g_settings_get_value'
> xsettings.c:812: warning: implicit declaration of function 'g_settings_bind'
> xsettings.c:813: error: 'G_SETTINGS_BIND_GET' undeclared (first use in this function)
> xsettings.c: In function 'syms_of_xsettings':
> xsettings.c:937: error: 'gsettings_client' undeclared (first use in this function)
> make[1]: *** [xsettings.o] Error 1
>



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

* Re: Compilation bug with the gsettings stuff
  2011-06-30 15:08 ` Jan Djärv
@ 2011-06-30 15:10   ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 2011-06-30 15:10 UTC (permalink / raw)
  To: Jan Djärv; +Cc: emacs-devel

Jan Djärv <jan.h.d@swipnet.se> writes:

> Fix checked in, please try again.

Thanks; compiles fine now.

-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/



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

end of thread, other threads:[~2011-06-30 15:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-30 14:42 Compilation bug with the gsettings stuff Lars Magne Ingebrigtsen
2011-06-30 14:55 ` Jan Djärv
2011-06-30 15:08 ` Jan Djärv
2011-06-30 15:10   ` Lars Magne Ingebrigtsen

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.