all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: Daniel Colascione <dancol@dancol.org>
Cc: emacs-devel@gnu.org
Subject: Re: Revision 110444 breaks the native MS-Windows build
Date: Mon, 08 Oct 2012 13:56:28 +0200	[thread overview]
Message-ID: <83r4p941oz.fsf@gnu.org> (raw)
In-Reply-To: <5072A8DC.6010208@dancol.org>

> Date: Mon, 08 Oct 2012 03:20:12 -0700
> From: Daniel Colascione <dancol@dancol.org>
> CC: emacs-devel@gnu.org
> 
> > and in jconfig.h, a jpeglib header included by jpeglib.h, I see this:
> > 
> >   #ifdef _WIN32
> >   # include <windows.h>
> >   /* Define "boolean" as unsigned char, not int, per Windows custom */
> >   # if !defined __RPCNDR_H__ || defined __MINGW32__    /* don't conflict if rpcndr.h already read */
> >   #  ifndef boolean     /* don't conflict if rpcndr.h already read */
> >       typedef unsigned char boolean;
> >   #  endif /* boolean */
> >   # endif /* __RPCNDR_H__ */
> >   # define HAVE_BOOLEAN     /* prevent jmorecfg.h from redefining it */
> >   # define USE_WINDOWS_MESSAGEBOX 1
> >   #endif /* _WIN32 */
> > 
> > This seems to be in perfect order, so I don't understand the conflict
> > you were seeing.
> > 
> > In any case, you cannot hope for the above to compile unless you also
> > typedef jpeg_boolean.
> 
> My jpeglib doesn't have that code.

Which version of jpeglib is that, and where can I see its full set of
headers?  The latest upstream version, 8d, does seem to have that
code.

> The redefinition actually works fine under
> Cygwin --- the jpeglib headers there just define a type they call "boolean",
> which, thanks to our preprocessor macro, is substituted with jpeg_boolean.
> Presumably, my hack breaks native Windows because there jpeglib _doesn't_ define
> boolean.

Yes.

> I tried replacing my hack with the approach below. It does _not_ work ---
> although this patch allows Emacs to compile under both Cygwin and native
> Windows, it doesn't result in successful JPEG loading under Cygwin, presumably
> due to the ABI we've made the jpeglib headers declare no longer matching the
> compiled libjpeg we're using.

What type does jpeglib define its 'boolean' to in the Cygwin build you
have?  Or does it use Cygwin's own 'boolean'? if so, what is its width?

FWIW, I've just configured the latest jpeglib for MinGW, and the above
conditional definition did appear in jconfig.h that was created.

In any case, this sounds like a problem someone should report
upstream: a Cygwin application using jpeglib could definitely include
Windows headers, can't it?  If jpeglib configured for Cygwin doesn't
include the above conditional, then it will cause bugs on Cygwin, I
think.

> Instead, let's do this:
> 
> +/* rpcndr.h (via windows.h) and jpeglib.h both define boolean types.
> +   Some versions of jpeglib try to detect whether rpcndr.h is loaded,
> +   using the Windows boolean type instead of the jpeglib boolean type
> +   if so.  Cygwin jpeglib, however, doesn't try to detect whether its
> +   headers are included along with windows.h, so under Cygwin, jpeglib
> +   attempts to define a conflicting boolean type.  Worse, forcing
> +   Cygwin jpeglib headers to use the Windows boolean type doesn't work
> +   because it created an ABI incompatibility between the
> +   already-compiled jpeg library and the header interface definition.
> +
> +   The best we can do is to define jpeglib's boolean type to a
> +   different name.  This name, jpeg_boolean, remains in effect through
> +   the rest of image.c.
> +*/
> +#if defined (CYGWIN) && defined (HAVE_NTGUI)
>  #define boolean jpeg_boolean
> +#endif
>  #include <jpeglib.h>
>  #include <jerror.h>

That could be fine, but I'd like to understand the problem some more,
because the problem you had could be specific to some version of
jpeglib, and if so, this change could break with other versions or on
other Cygwin installations.

Thanks.



      reply	other threads:[~2012-10-08 11:56 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-08  8:38 Revision 110444 breaks the native MS-Windows build Eli Zaretskii
2012-10-08  8:40 ` Daniel Colascione
2012-10-08  9:03   ` Eli Zaretskii
2012-10-08  9:20     ` Eli Zaretskii
2012-10-08 10:20     ` Daniel Colascione
2012-10-08 11:56       ` Eli Zaretskii [this message]

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=83r4p941oz.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=dancol@dancol.org \
    --cc=emacs-devel@gnu.org \
    /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.