* bug#5857: 23.1.95; gcc: unrecognized option '-2.0/'
@ 2010-04-07 21:28 Sven Joachim
2010-04-07 22:02 ` Sven Joachim
2010-04-23 5:42 ` bug#5857: Glenn Morris
0 siblings, 2 replies; 4+ messages in thread
From: Sven Joachim @ 2010-04-07 21:28 UTC (permalink / raw)
To: 5857; +Cc: Sven Joachim
I noticed strange gcc warnings like this for files in the src/ directory
in both emacs-23 and the trunk:
,----
| make[1]: Entering directory `/usr/local/src/emacs-git/src'
| gcc -c -D_BSD_SOURCE -Demacs -DHAVE_CONFIG_H -I. -I/usr/local/src/emacs-git/src -D_BSD_SOURCE -D_REENTRANT -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/gio-1 -2.0/ -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/directfb -I/usr/include/libpng12 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/alsa -pthread -D_REENTRANT -I/usr/include/librsvg-2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/gtk-2.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/directfb -I/usr/include/libpng12 -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -g -O2 -Wdeclaration-after-statement -Wno-poin
ter-sign -I/usr/include/freetype2 -MMD -MF deps/pre-crt0.d pre-crt0.c
| gcc: unrecognized option '-2.0/'
`----
These rather baffling messages happen because src/Makefile contains this
line:
,----
| ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAGS) -I. -I${srcdir} -D_BSD_SOURCE -D_REENTRANT -pthread -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/gio-1 -2.0/ -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/directfb -I/usr/include/libpng12 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 ${CFLAGS_SOUND} ${RSVG_CFLAGS} ${DBUS_CFLAGS} ${GCONF_CFLAGS} ${CFLAGS} -I/usr/include/freetype2 ${DEPFLAGS}
`----
Note the "-I/usr/include/gio-1 -2.0/" part with the space in it. Now
the interesting question is where that comes from, grepping shows that
src/Makefile is the only file in the Emacs tree to contain a "gio-1"
string. The following directories in /usr/include have a "gio" in in
their name:
,----
| % ls /usr/include | grep gio
| gio-unix-2.0
| giomm-2.4
`----
There is a pkgconfig file corresponding to the /usr/include/gio-unix-2.0
directory:
,----
| % cat /usr/lib/pkgconfig/gio-unix-2.0.pc
| prefix=/usr
| exec_prefix=${prefix}
| libdir=${exec_prefix}/lib
| includedir=${prefix}/include
|
| Name: GIO unix specific APIs
| Description: unix specific headers for glib I/O library
| Version: 2.24.0
| Requires: gobject-2.0,gmodule-no-export-2.0,gio-2.0
| Libs: -L${libdir} -lgio-2.0
| Cflags: -I${includedir}/gio-unix-2.0/
`----
My preliminary conclusion is that the 'configure' script, in the
subshell following the "echo creating src/Makefile" line, does something
like 's/unix/1 /' with sed to create the "-I/usr/include/gio-1 -2.0/"
part of ALL_CFLAGS.
Note that I had upgraded glib to version 2.24.0 recently, with 2.22.4
this problem did not show up.
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#5857: 23.1.95; gcc: unrecognized option '-2.0/'
2010-04-07 21:28 bug#5857: 23.1.95; gcc: unrecognized option '-2.0/' Sven Joachim
@ 2010-04-07 22:02 ` Sven Joachim
2010-04-23 5:42 ` bug#5857: Glenn Morris
1 sibling, 0 replies; 4+ messages in thread
From: Sven Joachim @ 2010-04-07 22:02 UTC (permalink / raw)
To: 5857
On 2010-04-07 23:28 +0200, Sven Joachim wrote:
> My preliminary conclusion is that the 'configure' script, in the
> subshell following the "echo creating src/Makefile" line, does something
> like 's/unix/1 /' with sed to create the "-I/usr/include/gio-1 -2.0/"
> part of ALL_CFLAGS.
Or, more likely, gcc does that substitution because it #defines unix as 1.
Sven
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#5857:
2010-04-07 21:28 bug#5857: 23.1.95; gcc: unrecognized option '-2.0/' Sven Joachim
2010-04-07 22:02 ` Sven Joachim
@ 2010-04-23 5:42 ` Glenn Morris
2010-05-08 17:21 ` bug#5857: Sven Joachim
1 sibling, 1 reply; 4+ messages in thread
From: Glenn Morris @ 2010-04-23 5:42 UTC (permalink / raw)
To: 5857-done
2010-04-22 Miles Bader <miles at gnu.org>
* configure.in: Get rid of "unix" pre-defined macro when
preprocessing Makefile. (Bug#5857)
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#5857:
2010-04-23 5:42 ` bug#5857: Glenn Morris
@ 2010-05-08 17:21 ` Sven Joachim
0 siblings, 0 replies; 4+ messages in thread
From: Sven Joachim @ 2010-05-08 17:21 UTC (permalink / raw)
To: 5857
On 2010-04-23 07:42 +0200, Glenn Morris wrote:
> 2010-04-22 Miles Bader <miles at gnu.org>
>
> * configure.in: Get rid of "unix" pre-defined macro when
> preprocessing Makefile. (Bug#5857)
Could this be applied to the emacs-23 branch, now that 23.2 is
released? The fix seems rather safe, and the warnings are annoying
although currently harmless.
Sven
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-05-08 17:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-07 21:28 bug#5857: 23.1.95; gcc: unrecognized option '-2.0/' Sven Joachim
2010-04-07 22:02 ` Sven Joachim
2010-04-23 5:42 ` bug#5857: Glenn Morris
2010-05-08 17:21 ` bug#5857: Sven Joachim
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).