Martin Koeppe wrote:
> Hi all,
> 
> I have a system without the type uintptr_t.
> There the build of autogen 5.9.2 fails, caused by double handling of
> missing uintptr_t.
> 
> First, if configure:26097ff  detects that uintptr_t is missing, it puts a
>   #define uintptr_t unsigned long
> into config.h, and second in compat/compat.h:303ff a
>   typedef unsigned long   uintptr_t;
> gets issued as well when uintptr_t is missing. Because of the macro, the
> typedef becomes a syntax error.

Thank you, Martin.  I'll change compat.h to read as follows:

#if ! defined(HAVE_UINTPTR_T) && ! defined(uintptr_t)
  typedef unsigned long uintptr_t;
#endif

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Autogen-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/autogen-users

Reply via email to