Update of /cvsroot/ctypes/ctypes/source/libffi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31869
Modified Files:
Tag: branch_1_0
configure configure.ac fficonfig.h.in
Log Message:
Disable the raw-api support since we don't need it and some code for
raw-api even doesn't compile in Solaris assembler.
Index: fficonfig.h.in
===================================================================
RCS file: /cvsroot/ctypes/ctypes/source/libffi/Attic/fficonfig.h.in,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -d -r1.1.2.4 -r1.1.2.5
*** fficonfig.h.in 1 Feb 2006 20:31:51 -0000 1.1.2.4
--- fficonfig.h.in 4 Feb 2006 06:33:05 -0000 1.1.2.5
***************
*** 12,15 ****
--- 12,18 ----
#undef EH_FRAME_FLAGS
+ /* Define this is you do not want support for the raw API. */
+ #undef FFI_NO_RAW_API
+
/* Define to 1 if you have `alloca', as a function or macro. */
#undef HAVE_ALLOCA
Index: configure.ac
===================================================================
RCS file: /cvsroot/ctypes/ctypes/source/libffi/Attic/configure.ac,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -d -r1.1.2.4 -r1.1.2.5
*** configure.ac 1 Feb 2006 20:31:51 -0000 1.1.2.4
--- configure.ac 4 Feb 2006 06:33:05 -0000 1.1.2.5
***************
*** 186,189 ****
--- 186,191 ----
AC_SUBST(SHELL)
+ AC_DEFINE(FFI_NO_RAW_API, 1, [Define this is you do not want support for the raw API.])
+
AC_CONFIG_COMMANDS(include, [test -d include || mkdir include])
AC_CONFIG_COMMANDS(src, [
Index: configure
===================================================================
RCS file: /cvsroot/ctypes/ctypes/source/libffi/Attic/configure,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -d -r1.1.2.4 -r1.1.2.5
*** configure 1 Feb 2006 20:31:51 -0000 1.1.2.4
--- configure 4 Feb 2006 06:33:05 -0000 1.1.2.5
***************
*** 5456,5459 ****
--- 5456,5465 ----
+
+ cat >>confdefs.h <<\_ACEOF
+ #define FFI_NO_RAW_API 1
+ _ACEOF
+
+
ac_config_commands="$ac_config_commands include"
|