Update of /cvsroot/eas-dev/eas-dev/build/unix
In directory sc8-pr-cvs1:/tmp/cvs-serv8015/build/unix
Modified Files:
config.h.in configure.in
Added Files:
config.h.top
Log Message:
SAL_UNX moved to config.h.top;
GLIB 1.2.0 is now required;
libsxmlstream got output for binary stream
--- NEW FILE: config.h.top ---
/* Define if you have UN*X-like operating system (for ODK) */
#undef SAL_UNX
Index: config.h.in
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/build/unix/config.h.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- config.h.in 23 Jan 2003 03:42:05 -0000 1.3
+++ config.h.in 28 Jan 2003 06:44:32 -0000 1.4
@@ -1,12 +1,16 @@
/* config.h.in. Generated automatically from configure.in by autoheader. */
+/* Define if you have UN*X-like operating system (for ODK) */
+#undef SAL_UNX
+
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
-#undef SAL_UNX
-
/* The number of bytes in a long. */
#undef SIZEOF_LONG
+
+/* The number of bytes in a size_t. */
+#undef SIZEOF_SIZE_T
/* Define if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
Index: configure.in
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/build/unix/configure.in,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- configure.in 28 Jan 2003 03:18:22 -0000 1.9
+++ configure.in 28 Jan 2003 06:44:32 -0000 1.10
@@ -4,11 +4,12 @@
AC_INIT(mk/component.mk.in)
AC_CONFIG_AUX_DIR(scripts)
-
+AC_REVISION($Id$)dnl
dnl
dnl Some settings
dnl
+AC_PREFIX_DEFAULT(/opt/eas)
GLIB_VERSION_REQUIRED=1.2.0
@@ -22,7 +23,7 @@
# As I think, since we're build `unix' version, platform for SAL
# should be SAL_UNX. However, check this!
-AC_DEFINE(SAL_UNX)
+dnl AC_DEFINE(SAL_UNX)
dnl
dnl Check for compilers
@@ -40,6 +41,7 @@
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_CHECK_SIZEOF(long,4)
+AC_CHECK_SIZEOF(size_t,4)
AC_PROG_LN_S
AC_SUBST(LN_S)
|