Update of /cvsroot/eas-dev/eas-dev/build/unix
In directory sc8-pr-cvs1:/tmp/cvs-serv18441/build/unix
Modified Files:
INSTALL configure.in
Log Message:
mofidifed build process; changes to libsxmlstream (seems that it is still
broken); minor additions over the project
Index: INSTALL
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/build/unix/INSTALL,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- INSTALL 2 Feb 2003 06:59:10 -0000 1.1
+++ INSTALL 3 Feb 2003 06:30:44 -0000 1.2
@@ -7,15 +7,16 @@
Following software is needed to build E/AS.
-automake 1.4-p5
-autoconf 2.13
-gcc 3.0.4 or higher
-make 3.79.1 or higher
+automake 1.4-p5 (for developers)
+autoconf 2.13 (for developers)
+Python 2.0 or above (http://www.python.org/) (for developers)
+gcc 3.0.4 or above
+make 3.79.1 or above
glib 2.2.0 (http://www.gtk.org/)
CxxTest 2.8.0 (http://cxxtest.sourceforge.net/)
pkg-config 0.15.0 (http://www.freedesktop.org/software/pkgconfig)
OpenOffice.Org SDK 1.0.1_alpha (http://udk.openoffice.org/)
-Python 2.0 or higher (http://www.python.org/)
+
NOTES ON OPENOFFICE.ORG SDK
Index: configure.in
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/build/unix/configure.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- configure.in 2 Feb 2003 06:59:10 -0000 1.11
+++ configure.in 3 Feb 2003 06:30:44 -0000 1.12
@@ -91,6 +91,11 @@
dnl Tools
dnl
+AC_CHECK_PROG(RM,rm,rm,no)
+if test "$RM" = no ; then
+ AC_MSG_ERROR(Cannot find rm.)
+fi
+
dnl
dnl Output
dnl
|