From 43f7cd57777b3b974e5905abad8e650b35b73a9d Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 8 Sep 2006 11:27:01 +0000 Subject: [PATCH] *** empty log message *** --- ase/awk/makefile.sol64 | 4 +++- ase/types.h | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ase/awk/makefile.sol64 b/ase/awk/makefile.sol64 index 7f586fee..1c89cc8e 100644 --- a/ase/awk/makefile.sol64 +++ b/ase/awk/makefile.sol64 @@ -1,4 +1,6 @@ -SRCS = awk.c err.c tree.c str.c tab.c map.c parse.c run.c val.c misc.c +SRCS = \ + awk.c err.c tree.c str.c tab.c map.c parse.c \ + run.c val.c func.c misc.c extio.c rex.c OBJS = $(SRCS:.c=.o) OUT = libxpawk.a diff --git a/ase/types.h b/ase/types.h index e4551bdf..544ebb21 100644 --- a/ase/types.h +++ b/ase/types.h @@ -1,5 +1,5 @@ /* - * $Id: types.h,v 1.54 2006-08-26 16:30:52 bacon Exp $ + * $Id: types.h,v 1.55 2006-09-08 11:27:01 bacon Exp $ */ #ifndef _XP_TYPES_H_ @@ -223,6 +223,9 @@ typedef int xp_mcint_t; #elif defined(__FreeBSD__) typedef int xp_wchar_t; typedef int xp_wcint_t; + #elif (defined(sun) || defined(__sun)) && defined(_LP64) + typedef int xp_wchar_t; + typedef int xp_wcint_t; #elif XP_SIZEOF_LONG == 4 typedef long xp_wchar_t; typedef long xp_wcint_t;