From: Yurii R. <yr...@us...> - 2003-02-08 08:24:20
|
Update of /cvsroot/eas-dev/eas-dev/build/unix In directory sc8-pr-cvs1:/tmp/cvs-serv23957/build/unix Modified Files: configure.in Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: configure.in =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/build/unix/configure.in,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- configure.in 8 Feb 2003 03:24:48 -0000 1.15 +++ configure.in 8 Feb 2003 08:23:46 -0000 1.16 @@ -56,6 +56,11 @@ AC_MSG_ERROR(Cannot find UNO regmerge.) fi +AC_CHECK_PROG(REGCOMP,regcomp,regcomp,no) +if test "$REGCOMP" = no ; then + AC_MSG_ERROR(Cannot find UNO regcomp.) +fi + AC_CHECK_PROG(CPPUMAKER,cppumaker,cppumaker,no) if test "$CPPUMAKER" = no ; then AC_MSG_ERROR(Cannot find UNO cppumaker.) @@ -79,6 +84,7 @@ AC_SUBST(XML2CMP) AC_SUBST(IDLC) AC_SUBST(REGMERGE) +AC_SUBST(REGCOMP) dnl dnl Libs @@ -142,4 +148,6 @@ ../../libs/libsxmlstream/tests/Makefile ../../libs/libsmstorage/Makefile ../../libs/libsmstorage/src/Makefile + ../../tools/Makefile + ../../tools/uno/Makefile ]) |