Update of /cvsroot/blob/blob
In directory usw-pr-cvs1:/tmp/cvs-serv15413
Modified Files:
configure.in acconfig.h
Log Message:
Export CPU type in the config file
Index: configure.in
===================================================================
RCS file: /cvsroot/blob/blob/configure.in,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- configure.in 2002/01/06 18:59:40 1.33
+++ configure.in 2002/01/07 14:58:16 1.34
@@ -238,10 +238,12 @@
MEMSETUP="memsetup-sa1110.o"
else
AC_MSG_WARN([No CPU defined!]);
+ use_cpu="(none)"
MEMSETUP=""
fi
AC_SUBST(MEMSETUP)
+AC_DEFINE_UNQUOTED(CPU, "${use_cpu}")
Index: acconfig.h
===================================================================
RCS file: /cvsroot/blob/blob/acconfig.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- acconfig.h 2002/01/06 18:59:40 1.11
+++ acconfig.h 2002/01/07 14:58:16 1.12
@@ -101,6 +101,9 @@
/* Define if MD5 support is wanted */
#undef CONFIG_MD5_SUPPORT
+/* Define the CPU type */
+#undef CPU
+
@BOTTOM@
#endif
|