all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Dan Nicolaescu <dann@gnu.org>
To: Giorgos Keramidas <keramida@ceid.upatras.gr>
Cc: emacs-devel@gnu.org
Subject: Re: alloca() warnings on freebsd
Date: Mon, 09 Aug 2010 19:16:33 -0400	[thread overview]
Message-ID: <yxqmxsv1ini.fsf@fencepost.gnu.org> (raw)
In-Reply-To: <87ocdbbfpz.fsf@kobe.laptop> (Giorgos Keramidas's message of "Tue\, 10 Aug 2010 01\:09\:44 +0300")

Giorgos Keramidas <keramida@ceid.upatras.gr> writes:

> Some time during the recent past an alloca() prototype was introduced to
> config.h that conflicts with the stdlib.h prototype of alloca() on my
> FreeBSD laptop.
>
> The current check near line 1148 of config.in is:
>
>     #ifdef HAVE_ALLOCA_H
>     # include <alloca.h>
>     #elif defined __GNUC__
>     # define alloca __builtin_alloca
>     #elif defined _AIX
>     # define alloca __alloca
>     #else
>     # include <stddef.h>
>     # ifdef  __cplusplus
>     extern "C"
>     # endif
>     void *alloca (size_t);
>     #endif
>
> The tricky bit is that FreeBSD *does* have alloca() but not alloca.h, so
> the final #else part declares a redundant prototype.  This causes a very
> minor but frequent warning for all source files that include config.h:
>
>     In file included from /hg/emacs/gker/lib-src/test-distrib.c:23:
>     ../src/config.h:1152:1: warning: "alloca" redefined
>     In file included from ../src/config.h:1146,
>                      from /hg/emacs/gker/lib-src/test-distrib.c:23:
>     /usr/include/stdlib.h:233:1: warning: this is the location of the previous definition
>     ...
>
> The attached patch is an attempt to fix this for FreeBSD without
> breaking alloca() on other platforms.
>
> Does it look ok for trunk?

What we use now is a shorter version what the autoconf manual recommends.
Could you ask the autoconf guys about this, and post the solution here?
That would help fix the same problem for other programs, not only for emacs.



  reply	other threads:[~2010-08-09 23:16 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-08-09 22:09 alloca() warnings on freebsd Giorgos Keramidas
2010-08-09 23:16 ` Dan Nicolaescu [this message]
2010-08-10  9:38   ` Giorgos Keramidas
2010-09-07 19:01     ` Giorgos Keramidas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=yxqmxsv1ini.fsf@fencepost.gnu.org \
    --to=dann@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=keramida@ceid.upatras.gr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.