Fix UXA to build with Sun compilers (use __func__ instead of __FUNCTION__)
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
This commit is contained in:
parent
5d6f4f6eb7
commit
b8ca146b06
|
|
@ -40,7 +40,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
#define _INTEL_COMMON_H_
|
||||
|
||||
/* Provide substitutes for gcc's __FUNCTION__ on other compilers */
|
||||
#ifndef __GNUC__
|
||||
#if !defined(__GNUC__) && !defined(__FUNCTION__)
|
||||
# if defined(__STDC__) && (__STDC_VERSION__>=199901L) /* C99 */
|
||||
# define __FUNCTION__ __func__
|
||||
# else
|
||||
|
|
|
|||
|
|
@ -64,6 +64,16 @@
|
|||
#endif
|
||||
#include "damage.h"
|
||||
|
||||
/* Provide substitutes for gcc's __FUNCTION__ on other compilers */
|
||||
#if !defined(__GNUC__) && !defined(__FUNCTION__)
|
||||
# if defined(__STDC__) && (__STDC_VERSION__>=199901L) /* C99 */
|
||||
# define __FUNCTION__ __func__
|
||||
# else
|
||||
# define __FUNCTION__ ""
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
/* 1.6 and earlier server compat */
|
||||
#ifndef miGetCompositeClip
|
||||
#define miCopyRegion fbCopyRegion
|
||||
|
|
|
|||
Loading…
Reference in New Issue