unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#14414: 24.3.50; configure fails to detect xaw3d on Cygwin
@ 2013-05-17  2:15 Katsumi Yamaoka
  2013-05-17  5:49 ` Katsumi Yamaoka
  2013-05-18 13:02 ` Angelo Graziosi
  0 siblings, 2 replies; 5+ messages in thread
From: Katsumi Yamaoka @ 2013-05-17  2:15 UTC (permalink / raw)
  To: 14414

Hi,

When trying to build Emacs on Cygwin the configure script says:

[...]
checking sys/inotify.h presence... no
checking for sys/inotify.h... no
checking for xaw3d... no
checking for libXaw... configure: error: Lucid toolkit requires X11/Xaw include files

Yesterday it was:
[...]
checking sys/inotify.h presence... no
checking for sys/inotify.h... no
checking for XawScrollbarSetThumb in -lXaw3d... yes
checking for xaw3d... yes; using Lucid toolkit
checking X11 toolkit version... 6 or newer
checking for XmuConvertStandardSelection in -lXmu... yes
checking for XShapeQueryExtension in -lXext... yes
[...]

Libraries have no changed in this PC but I have no clue for this
problem.  Please help.

In GNU Emacs 24.3.50.1 (i686-pc-cygwin, X toolkit, Xaw3d scroll bars)
 of 2013-05-16 on localhost
Bzr revision: 112596 rgm@gnu.org-20130515233510-upvjm6ks2du8cpn5
Windowing system distributor `The Cygwin/X Project', version 11.0.11401000
Configured using:
 `configure --verbose --with-x-toolkit=lucid --without-imagemagick
 --without-dbus --without-gconf --without-gsettings'





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

* bug#14414: 24.3.50; configure fails to detect xaw3d on Cygwin
  2013-05-17  2:15 bug#14414: 24.3.50; configure fails to detect xaw3d on Cygwin Katsumi Yamaoka
@ 2013-05-17  5:49 ` Katsumi Yamaoka
  2013-05-17 11:43   ` Katsumi Yamaoka
  2013-05-18 13:02 ` Angelo Graziosi
  1 sibling, 1 reply; 5+ messages in thread
From: Katsumi Yamaoka @ 2013-05-17  5:49 UTC (permalink / raw)
  To: 14414-done

Katsumi Yamaoka wrote:
> When trying to build Emacs on Cygwin the configure script says:

> [...]
> checking sys/inotify.h presence... no
> checking for sys/inotify.h... no
> checking for xaw3d... no
> checking for libXaw... configure: error: Lucid toolkit requires
> X11/Xaw include files

This should be due to Cygwin update or something, since it happens
with the released version of Emacs 24.3, oops.  I'm closing this.
Sorry for the noise.





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

* bug#14414: 24.3.50; configure fails to detect xaw3d on Cygwin
  2013-05-17  5:49 ` Katsumi Yamaoka
@ 2013-05-17 11:43   ` Katsumi Yamaoka
  0 siblings, 0 replies; 5+ messages in thread
From: Katsumi Yamaoka @ 2013-05-17 11:43 UTC (permalink / raw)
  To: 14414

Katsumi Yamaoka wrote:
>> When trying to build Emacs on Cygwin the configure script says:

>> [...]
>> checking sys/inotify.h presence... no
>> checking for sys/inotify.h... no
>> checking for xaw3d... no
>> checking for libXaw... configure: error: Lucid toolkit requires
>> X11/Xaw include files

> This should be due to Cygwin update or something, since it happens
> with the released version of Emacs 24.3, oops.  I'm closing this.
> Sorry for the noise.

I think the cause of this problem is that LIB_CLOCK_GETTIME in
some files[1] aren't substituted by configure, due to Gcc 4.5.3
that Cygwin updated recently.  Here is a part in question in
config.log:

configure:11868: gcc -std=gnu99 -o conftest.exe  -g3 -O2 -D_REENTRANT -I/usr/include/librsvg-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/libpng15 -I/usr/include/pixman-1 -I/usr/include/freetype2   -I/usr/include/p11-kit-1         conftest.c @LIB_CLOCK_GETTIME@ -lgnutls -lnettle -lhogweed -lgmp -lintl -liconv -ltasn1 -lp11-kit -lz   -lrsvg-2 -lgio-2.0 -lgdk_pixbuf-2.0 -lcairo -lgmodule-2.0 -lgobject-2.0 -lffi -lpixman-1 -lfontconfig -lexpat -lfreetype -lbz2 -lpng15 -lm -lz -lxcb-shm -lxcb-render -lXrender -lXext -lglib-2.0 -lintl -liconv -lpcre -lX11 -lxcb -lXau -lXdmcp   -lX11 -lpthread   >&5 
gcc: @LIB_CLOCK_GETTIME@: No such file or directory

[1]
autogen/Makefile.in:LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
lib-src/Makefile.in:LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
lib/Makefile.in:LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@
src/Makefile.in:LIB_CLOCK_GETTIME=@LIB_CLOCK_GETTIME@

However, manually replacing those @LIB_CLOCK_GETTIME@ with -lrt
(after running autogen.sh) didn't help.  I'm going to tackle it
again next week.





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

* bug#14414: 24.3.50; configure fails to detect xaw3d on Cygwin
  2013-05-17  2:15 bug#14414: 24.3.50; configure fails to detect xaw3d on Cygwin Katsumi Yamaoka
  2013-05-17  5:49 ` Katsumi Yamaoka
@ 2013-05-18 13:02 ` Angelo Graziosi
  2013-05-19 23:23   ` Katsumi Yamaoka
  1 sibling, 1 reply; 5+ messages in thread
From: Angelo Graziosi @ 2013-05-18 13:02 UTC (permalink / raw)
  To: 14414; +Cc: yamaoka

Katsumi Yamaoka wrote:

> I think the cause of this problem is that LIB_CLOCK_GETTIME

This is caused by the upgrade of gnutls-devel package. Reinstalling the 
precious fixes the issue. See this thread on Cygwin list:

   http://cygwin.com/ml/cygwin/2013-05/msg00236.html


Ciao,
   Angelo.





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

* bug#14414: 24.3.50; configure fails to detect xaw3d on Cygwin
  2013-05-18 13:02 ` Angelo Graziosi
@ 2013-05-19 23:23   ` Katsumi Yamaoka
  0 siblings, 0 replies; 5+ messages in thread
From: Katsumi Yamaoka @ 2013-05-19 23:23 UTC (permalink / raw)
  To: angelo.graziosi; +Cc: 14414-done

Angelo Graziosi wrote:
> Katsumi Yamaoka wrote:

>> I think the cause of this problem is that LIB_CLOCK_GETTIME

> This is caused by the upgrade of gnutls-devel package. Reinstalling
> the precious fixes the issue. See this thread on Cygwin list:

>   http://cygwin.com/ml/cygwin/2013-05/msg00236.html

Thank you very much for the information.  I got able to continue
the daily Emacs build. ;)





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

end of thread, other threads:[~2013-05-19 23:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-17  2:15 bug#14414: 24.3.50; configure fails to detect xaw3d on Cygwin Katsumi Yamaoka
2013-05-17  5:49 ` Katsumi Yamaoka
2013-05-17 11:43   ` Katsumi Yamaoka
2013-05-18 13:02 ` Angelo Graziosi
2013-05-19 23:23   ` Katsumi Yamaoka

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