[Home]

Summary:ASTERISK-10147: /usr/src/asterisk/main/minimime/mm.h uint32_t not recognized
Reporter:Phil Welch (philmorew)Labels:
Date Opened:2007-08-23 05:22:34Date Closed:2007-08-23 10:16:17
Priority:MinorRegression?No
Status:Closed/CompleteComponents:PBX/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:so I added the following to continue the make immediately after:

#include <sys/types.h>

/* start */

#if defined(__OpenBSD__) || defined( __FreeBSD__)
#include <inttypes.h>
#else
#include <stdint.h>
#endif

/*
*  * If you do not have the ISO standard stdint.h header file, then you
*   * must typdef the following:
*    *    name              meaning
*     *  uint32_t         unsigned 32 bit integer
*      *  uint8_t          unsigned 8 bit integer (i.e., unsigned char)
*       *
*        */

/* finish */

****** ADDITIONAL INFORMATION ******

This was from code using svn checkout this morning:  8/23/2007

Comments:By: Phil Welch (philmorew) 2007-08-23 06:12:52

Looks like this was already in the queue:  80429

By: Jason Parker (jparker) 2007-08-23 10:16:17

Already fixed.