emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#14830: closed ([PATCH] * configure.ac (HAVE_W32):


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#14830: closed ([PATCH] * configure.ac (HAVE_W32): Avoid nested functions)
Date: Tue, 09 Jul 2013 18:09:02 +0000

Your message dated Tue, 09 Jul 2013 21:07:44 +0300
with message-id <address@hidden>
and subject line Re: bug#14830: [PATCH] * configure.ac (HAVE_W32): Avoid nested 
functions
has caused the debbugs.gnu.org bug report #14830,
regarding [PATCH] * configure.ac (HAVE_W32): Avoid nested functions
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
14830: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14830
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] * configure.ac (HAVE_W32): Avoid nested functions Date: Tue, 09 Jul 2013 00:49:43 +0200 User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130620 Thunderbird/17.0.7
diff --git a/ChangeLog b/ChangeLog
index 220cffb..03011cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-07-09  Peter Rosin <address@hidden>  (tiny change>
+
+       * configure.ac (HAVE_W32): Avoid nested functions (the second
+       argument of AC_LANG_PROGRAM is expanded inside a function).
+
 2013-07-08  Magnus Henoch <address@hidden> (tiny change)

        * configure.ac (HAVE_IMAGEMAGICK): Check on NS also (Bug#14798).
diff --git a/configure.ac b/configure.ac
index 3830ee3..1188f1b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1632,10 +1632,10 @@ fi

 if test "${opsys}" = "mingw32"; then
   AC_MSG_CHECKING([whether Windows API headers are recent enough])
-  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+  AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
      #include <windows.h>
-     #include <usp10.h>]],
-   [[void test(PIMAGE_NT_HEADERS pHeader)
+     #include <usp10.h>
+     void test(PIMAGE_NT_HEADERS pHeader)
      {PIMAGE_SECTION_HEADER pSection = IMAGE_FIRST_SECTION(pHeader);}]])],
    [emacs_cv_w32api=yes
     HAVE_W32=yes],
--
1.7.9



--- End Message ---
--- Begin Message --- Subject: Re: bug#14830: [PATCH] * configure.ac (HAVE_W32): Avoid nested functions Date: Tue, 09 Jul 2013 21:07:44 +0300
> Date: Tue, 09 Jul 2013 10:07:28 +0200
> From: Peter Rosin <address@hidden>
> CC: Eli Zaretskii <address@hidden>, address@hidden
> 
> On 2013-07-09 09:17, Andreas Schwab wrote:
> > Peter Rosin <address@hidden> writes:
> > 
> >> #include <windows.h>
> >> #include <usp10.h>
> >>
> >> int
> >> main ()
> >> {
> >>   PIMAGE_SECTION_HEADER pSection = IMAGE_FIRST_SECTION(pHeader);
> > 
> > You need to declare pHeader somewhere.
> 
> Big sigh. Thanks for catching...

Thanks, committed as trunk revision 113349.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]