You can subscribe to this list here.
2003 |
Jan
(69) |
Feb
(122) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
(56) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(237) |
Jul
|
Aug
|
Sep
(1) |
Oct
(14) |
Nov
(72) |
Dec
|
2007 |
Jan
(2) |
Feb
(37) |
Mar
(5) |
Apr
|
May
(2) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Yurii R. <yr...@us...> - 2003-02-09 08:18:19
|
Update of /cvsroot/eas-dev/eas-dev/components/bostorage In directory sc8-pr-cvs1:/tmp/cvs-serv3491/components/bostorage Added Files: .cvsignore Makefile.am Log Message: liburl is now needed, ldap library needed; slightly improved build process; econf source code initial submission (still very incomplete); minor changes to logger initial submissions for bostorage; directory for programs --- NEW FILE: .cvsignore --- Makefile Makefile.in --- NEW FILE: Makefile.am --- |
From: Yurii R. <yr...@us...> - 2003-02-09 08:18:19
|
Update of /cvsroot/eas-dev/eas-dev/build/unix In directory sc8-pr-cvs1:/tmp/cvs-serv3491/build/unix Modified Files: INSTALL acconfig.h configure.in Log Message: liburl is now needed, ldap library needed; slightly improved build process; econf source code initial submission (still very incomplete); minor changes to logger initial submissions for bostorage; directory for programs Index: INSTALL =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/build/unix/INSTALL,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- INSTALL 8 Feb 2003 03:24:48 -0000 1.4 +++ INSTALL 9 Feb 2003 08:18:16 -0000 1.5 @@ -15,6 +15,8 @@ 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) +liburl (http://www.damtp.cam.ac.uk/user/kp229/liburl/) +OpenLDAP 2.1.12 or above OpenOffice.Org SDK 1.0.1_alpha (http://udk.openoffice.org/) Index: acconfig.h =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/build/unix/acconfig.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- acconfig.h 8 Feb 2003 03:24:48 -0000 1.1 +++ acconfig.h 9 Feb 2003 08:18:16 -0000 1.2 @@ -1,3 +1,4 @@ #undef SAL_UNX #undef HAVE_SYSLOG +#undef HAVE_URL_STRING @TOP@ Index: configure.in =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/build/unix/configure.in,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- configure.in 8 Feb 2003 08:23:46 -0000 1.16 +++ configure.in 9 Feb 2003 08:18:16 -0000 1.17 @@ -44,6 +44,8 @@ AC_PROG_LN_S AC_SUBST(LN_S) + + dnl check for ODK AC_CHECK_PROG(IDLC,idlc,idlc,no) @@ -103,6 +105,79 @@ done fi +dnl ldap + +AC_ARG_WITH(libldap,[ --with-libldap=DIR Path to the libldap library [/usr/local/lib]],[ + LIBS="-L$with_libldap $LIBS " + ],[ + LIBS="-L/usr/local/lib $LIBS " + ] +) + +AC_ARG_WITH(ldap-includes,[ --with-ldap-includes=DIR Path to the libldap include files [/usr/local/include] +],[ + CPPFLAGS="-I$with_ldap_includes $CPPFLAGS " + ],[ + CPPFLAGS="-I/usr/local/include $CPPFLAGS " + ] +) +dnl Checks for libraries. +AC_CHECK_LIB(resolv,main) +AC_CHECK_LIB(lber,ber_strdup,[ +dnl NOOP + : + ],[ + echo " didn't find ber_strdup in liblber !"; + echo " Check for the right version (>= 2.0) of the OpenLDAP libraries"; + echo " or try the --with-libldap option."; + exit + ]) +AC_CHECK_LIB(ldap,ldap_add_ext,[ +dnl NOOP + : + ],[ + echo " didn't find ldap_add_ext in libldap !"; + echo " Check for the right version (>= 2.0) of the OpenLDAP libraries"; + echo " or try the --with-libldap option."; + exit + ],[ + -llber + ]) + +dnl Checks for header files. +AC_HEADER_TIME +AC_CHECK_HEADER(ldap.h) +AC_EGREP_HEADER(ldap_add_ext,ldap.h,[ +dnl NOOP + : + ],[ + echo " didn't find ldap_add_ext in ldap.h!"; + echo " Check for the right version (>= 2.0) of the OpenLDAP includes"; + echo " or try --with-ldap-includes option."; + exit + ]) +AC_CHECK_HEADER(lber.h) +AC_EGREP_HEADER(ber_strdup,lber.h,[ +dnl NOOP + : + ],[ + echo " didn't find ber_strdup in lber.h!"; + echo " Check for the right version (>= 2.0) of the OpenLDAP includes"; + echo " or try --with-ldap-includes option."; + exit + ]) + + +dnl libURL +AC_MSG_CHECKING(url/url_string.hh) +AC_TRY_CPP(url/url_string.hh,[echo yes],[ echo no; + echo " didn't find url/url_string.hh!"; + echo " Please install liburl"; + exit + ]) + +AC_DEFINE(HAVE_URL_STRING) + dnl dnl Tools dnl @@ -140,6 +215,9 @@ ../../components/logger/Makefile ../../components/logger/src/Makefile ../../components/logger/tests/Makefile + ../../components/econf/Makefile + ../../components/econf/src/Makefile + ../../components/econf/tests/Makefile ../../services/Makefile ../../services/domain-controller/Makefile ../../libs/Makefile @@ -150,4 +228,4 @@ ../../libs/libsmstorage/src/Makefile ../../tools/Makefile ../../tools/uno/Makefile - ]) \ No newline at end of file + ]) |
From: Yurii R. <yr...@us...> - 2003-02-09 08:15:21
|
Update of /cvsroot/eas-dev/eas-dev/programs In directory sc8-pr-cvs1:/tmp/cvs-serv3144/programs Log Message: Directory /cvsroot/eas-dev/eas-dev/programs added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-09 08:14:23
|
Update of /cvsroot/eas-dev/eas-dev/components/bostorage/idl/org/openeas/boe/storage In directory sc8-pr-cvs1:/tmp/cvs-serv2810/storage Log Message: Directory /cvsroot/eas-dev/eas-dev/components/bostorage/idl/org/openeas/boe/storage added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-09 08:13:53
|
Update of /cvsroot/eas-dev/eas-dev/components/bostorage/idl/org/openeas/boe In directory sc8-pr-cvs1:/tmp/cvs-serv2653/boe Log Message: Directory /cvsroot/eas-dev/eas-dev/components/bostorage/idl/org/openeas/boe added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-09 08:12:52
|
Update of /cvsroot/eas-dev/eas-dev/components/bostorage/idl/org/openeas In directory sc8-pr-cvs1:/tmp/cvs-serv2391/openeas Log Message: Directory /cvsroot/eas-dev/eas-dev/components/bostorage/idl/org/openeas added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-09 08:12:23
|
Update of /cvsroot/eas-dev/eas-dev/components/bostorage/idl/org In directory sc8-pr-cvs1:/tmp/cvs-serv2325/org Log Message: Directory /cvsroot/eas-dev/eas-dev/components/bostorage/idl/org added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-09 08:11:35
|
Update of /cvsroot/eas-dev/eas-dev/components/bostorage/idl In directory sc8-pr-cvs1:/tmp/cvs-serv2119/idl Log Message: Directory /cvsroot/eas-dev/eas-dev/components/bostorage/idl added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-09 08:10:24
|
Update of /cvsroot/eas-dev/eas-dev/components/bostorage In directory sc8-pr-cvs1:/tmp/cvs-serv1864/bostorage Log Message: Directory /cvsroot/eas-dev/eas-dev/components/bostorage added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-09 08:09:06
|
Update of /cvsroot/eas-dev/eas-dev/components/econf/tests In directory sc8-pr-cvs1:/tmp/cvs-serv1543/tests Log Message: Directory /cvsroot/eas-dev/eas-dev/components/econf/tests added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-09 08:08:49
|
Update of /cvsroot/eas-dev/eas-dev/components/econf/src In directory sc8-pr-cvs1:/tmp/cvs-serv1467/src Log Message: Directory /cvsroot/eas-dev/eas-dev/components/econf/src added to the repository |
From: Yurii R. <yr...@us...> - 2003-02-08 09:50:57
|
Update of /cvsroot/eas-dev/eas-dev/build/unix/mk In directory sc8-pr-cvs1:/tmp/cvs-serv12289/build/unix/mk Modified Files: component.mk.in Log Message: minor changes (still incorrect) Index: component.mk.in =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/build/unix/mk/component.mk.in,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- component.mk.in 8 Feb 2003 08:23:46 -0000 1.9 +++ component.mk.in 8 Feb 2003 09:50:53 -0000 1.10 @@ -56,15 +56,15 @@ SRCS = $(SRC_FILES) IDLS = $(IDL_FILES) -IDLS_ = $(patsubst %.idl,$(IDL_PATH)/%.idl,$(IDLS)) +IDLS_ = $(foreach idl, $(IDLS), $(IDL_PATH)/$(idl)) URDS = $(subst idl,urd,$(IDLS)) -URDS_ = $(patsubst %.urd,$(BIN_PATH)/%.urd,$(URDS)) +URDS_ = $(foreach urd, $(URDS), $(BIN_PATH)/$(urd)) ifeq ($(CODEMAKER),cppu) HDRS_HPP = $(subst idl,hpp,$(IDLS)) HDRS_HDL = $(subst idl,hdl,$(IDLS)) - HDRS_HPP_ = $(patsubst %.hpp,$(INC_PATH)/%.hpp,$(HDRS_HPP)) - HDRS_HDL_ = $(patsubst %.hdl,$(INC_PATH)/%.hdl,$(HDRS_HDL)) + HDRS_HPP_ = $(foreach hpp,$(HDRS_HPP),$(INC_PATH)/$(hpp)) + HDRS_HDL_ = $(foreach hdl,$(HDRS_HDL),$(INC_PATH)/$(hdl)) AUTOCODE = $(HDRS_HPP_) $(HDRS_HDL_) endif |
From: Yurii R. <yr...@us...> - 2003-02-08 08:48:33
|
Update of /cvsroot/eas-dev/eas-dev/tools/uno In directory sc8-pr-cvs1:/tmp/cvs-serv30680 Modified Files: Makefile.am Log Message: minor changes (still incorrect) Index: Makefile.am =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/tools/uno/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile.am 8 Feb 2003 08:23:48 -0000 1.1 +++ Makefile.am 8 Feb 2003 08:48:30 -0000 1.2 @@ -112,9 +112,9 @@ com/sun/star/container/XSet.idl \ com/sun/star/container/XUniqueIDAccess.idl -BASIC_IDLS_ = $(patsubst %.idl,$(IDL_PATH)/%.idl,$(BASIC_IDLS)) +BASIC_IDLS_ = $(foreach idl, $(BASIC_IDLS), $(IDL_PATH)/$(idl)) BASIC_URDS = $(subst idl,urd,$(BASIC_IDLS)) -BASIC_URDS_ = $(patsubst %.urd,$(BIN_PATH)/%.urd,$(BASIC_URDS)) +BASIC_URDS_ = $(foreach urd, $(BASIC_URDS), $(BIN_PATH)/$(urd)) CLEANFILES = common.rdb |
From: Yurii R. <yr...@us...> - 2003-02-08 08:24:20
|
Update of /cvsroot/eas-dev/eas-dev/build/unix/mk In directory sc8-pr-cvs1:/tmp/cvs-serv23957/build/unix/mk Modified Files: component.mk.in Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: component.mk.in =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/build/unix/mk/component.mk.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- component.mk.in 4 Feb 2003 07:52:25 -0000 1.8 +++ component.mk.in 8 Feb 2003 08:23:46 -0000 1.9 @@ -31,18 +31,28 @@ SRC_PATH = src endif +ifndef TEST_PATH + TEST_PATH = tests +endif + +ifndef RUN_TESTS + RUN_TESTS = runTests +endif + + ifndef BIN_PATH BIN_PATH = bin endif ifndef INC_PATH - INC_PATH = ../.include + INC_PATH = ../.incs endif -ifndef SRC_PATH - SRC_PATH = src +ifndef COMMON_RDB + COMMON_RDB = $(top_srcdir)/../../tools/uno/common.rdb endif + SRCS = $(SRC_FILES) IDLS = $(IDL_FILES) @@ -60,13 +70,16 @@ TYPES = $(foreach t,$(shell $(XML2CMP) -types stdout $(DESCRIPTOR)),-T$(t)) -all: $(SRC_PATH)/.libs/lib$(COMPONENT).so +all: $(SRC_PATH)/.libs/lib$(COMPONENT).so $(TEST_PATH)/$(RUN_TESTS) + +$(TEST_PATH)/$(RUN_TESTS): $(SRC_PATH)/.libs/lib$(COMPONENT).so + $(MAKE) -C $(TEST_PATH) $(SRC_PATH)/.libs/lib$(COMPONENT).so: $(AUTOCODE) $(MAKE) -C $(SRC_PATH) -$(AUTOCODE) : $(BIN_PATH)/$(COMPONENT).rdb ../.openeas.rdb - $(CODEMAKER)maker -BUCR -O$(INC_PATH) $(TYPES) $(BIN_PATH)/$(COMPONENT).rdb ../.openeas.rdb +$(AUTOCODE) : $(BIN_PATH)/$(COMPONENT).rdb $(COMMON_RDB) + $(CODEMAKER)maker -BUCR -O$(INC_PATH) $(TYPES) $(BIN_PATH)/$(COMPONENT).rdb $(COMMON_RDB) $(BIN_PATH)/$(COMPONENT).rdb: $(URDS_) $(REGMERGE) $(BIN_PATH)/$(COMPONENT).rdb /UCR $(URDS_) |
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 ]) |
From: Yurii R. <yr...@us...> - 2003-02-08 08:24:19
|
Update of /cvsroot/eas-dev/eas-dev In directory sc8-pr-cvs1:/tmp/cvs-serv23957 Modified Files: AUTHORS Makefile.am Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: AUTHORS =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/AUTHORS,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- AUTHORS 4 Feb 2003 07:52:25 -0000 1.1 +++ AUTHORS 8 Feb 2003 08:23:46 -0000 1.2 @@ -1,4 +1,4 @@ -Core team, in an alphabetical order: +Core team, in the alphabetical order: Egor Cheshkov <eg...@ip...> Yurii A. Rashkovskii <yr...@op...> Index: Makefile.am =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 25 Jan 2003 21:51:26 -0000 1.2 +++ Makefile.am 8 Feb 2003 08:23:46 -0000 1.3 @@ -1 +1 @@ -SUBDIRS = libs components services doc +SUBDIRS = tools libs components services doc |
From: Yurii R. <yr...@us...> - 2003-02-08 08:23:51
|
Update of /cvsroot/eas-dev/eas-dev/tools/uno In directory sc8-pr-cvs1:/tmp/cvs-serv23957/tools/uno Added Files: .cvsignore Makefile.am Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest --- NEW FILE: .cvsignore --- Makefile Makefile.in common.rdb --- NEW FILE: Makefile.am --- COMPONENTS = logger ODK = /usr/local/odk IDLC = idlc REGMERGE = regmerge REGCOMP = regcomp RM = rm IDL_PATH = $(ODK)/idl BIN_PATH = .openeas.urd BASIC_IDLS = com/sun/star/uno/Exception.idl \ com/sun/star/uno/NamingService.idl \ com/sun/star/uno/RuntimeException.idl \ com/sun/star/uno/SecurityException.idl \ com/sun/star/uno/TypeClass.idl \ com/sun/star/uno/Uik.idl \ com/sun/star/uno/XAdapter.idl \ com/sun/star/uno/XAggregation.idl \ com/sun/star/uno/XComponentContext.idl \ com/sun/star/uno/XCurrentContext.idl \ com/sun/star/uno/XFactory.idl \ com/sun/star/uno/XInterface.idl \ com/sun/star/uno/XNamingService.idl \ com/sun/star/uno/XReference.idl \ com/sun/star/uno/XUnloadingPreference.idl \ com/sun/star/uno/XWeak.idl \ com/sun/star/lang/ArrayIndexOutOfBoundsException.idl \ com/sun/star/lang/ClassNotFoundException.idl \ com/sun/star/lang/DisposedException.idl \ com/sun/star/lang/EventObject.idl \ com/sun/star/lang/IllegalAccessException.idl \ com/sun/star/lang/IllegalArgumentException.idl \ com/sun/star/lang/IndexOutOfBoundsException.idl \ com/sun/star/lang/InvalidListenerException.idl \ com/sun/star/lang/ListenerExistException.idl \ com/sun/star/lang/Locale.idl \ com/sun/star/lang/MultiServiceFactory.idl \ com/sun/star/lang/NoSuchFieldException.idl \ com/sun/star/lang/NoSuchMethodException.idl \ com/sun/star/lang/NoSupportException.idl \ com/sun/star/lang/NullPointerException.idl \ com/sun/star/lang/RegistryServiceManager.idl \ com/sun/star/lang/SecurityException.idl \ com/sun/star/lang/ServiceManager.idl \ com/sun/star/lang/ServiceNotRegisteredException.idl \ com/sun/star/lang/SystemDependent.idl \ com/sun/star/lang/WrappedTargetException.idl \ com/sun/star/lang/WrappedTargetRuntimeException.idl \ com/sun/star/lang/XComponent.idl \ com/sun/star/lang/XConnectionPointContainer.idl \ com/sun/star/lang/XConnectionPoint.idl \ com/sun/star/lang/XEventListener.idl \ com/sun/star/lang/XInitialization.idl \ com/sun/star/lang/XLocalizable.idl \ com/sun/star/lang/XMain.idl \ com/sun/star/lang/XMultiComponentFactory.idl \ com/sun/star/lang/XMultiServiceFactory.idl \ com/sun/star/lang/XServiceDisplayName.idl \ com/sun/star/lang/XServiceInfo.idl \ com/sun/star/lang/XServiceName.idl \ com/sun/star/lang/XSingleComponentFactory.idl \ com/sun/star/lang/XSingleServiceFactory.idl \ com/sun/star/lang/XTypeProvider.idl \ com/sun/star/lang/XUnoTunnel.idl \ com/sun/star/loader/CannotActivateFactoryException.idl \ com/sun/star/loader/Dynamic.idl \ com/sun/star/loader/Java.idl \ com/sun/star/loader/SharedLibrary.idl \ com/sun/star/loader/XImplementationLoader.idl \ com/sun/star/registry/CannotRegisterImplementationException.idl \ com/sun/star/registry/DefaultRegistry.idl \ com/sun/star/registry/ImplementationRegistration.idl \ com/sun/star/registry/InvalidRegistryException.idl \ com/sun/star/registry/InvalidValueException.idl \ com/sun/star/registry/MergeConflictException.idl \ com/sun/star/registry/NestedRegistry.idl \ com/sun/star/registry/RegistryKeyType.idl \ /com/sun/star/registry/RegistryValueType.idl \ com/sun/star/registry/SimpleRegistry.idl \ com/sun/star/registry/XImplementationRegistration.idl \ com/sun/star/registry/XRegistryKey.idl \ com/sun/star/registry/XSimpleRegistry.idl \ com/sun/star/container/ContainerEvent.idl \ com/sun/star/container/ElementExistException.idl \ com/sun/star/container/NoSuchElementException.idl \ com/sun/star/container/XChild.idl \ com/sun/star/container/XComponentEnumerationAccess.idl \ com/sun/star/container/XComponentEnumeration.idl \ com/sun/star/container/XContainer.idl \ com/sun/star/container/XContainerListener.idl \ com/sun/star/container/XContentEnumerationAccess.idl \ com/sun/star/container/XElementAccess.idl \ com/sun/star/container/XEnumerationAccess.idl \ com/sun/star/container/XEnumeration.idl \ com/sun/star/container/XHierarchicalNameAccess.idl \ com/sun/star/container/XHierarchicalNameContainer.idl \ com/sun/star/container/XHierarchicalName.idl \ com/sun/star/container/XHierarchicalNameReplace.idl \ com/sun/star/container/XIdentifierAccess.idl \ com/sun/star/container/XIdentifierContainer.idl \ com/sun/star/container/XIdentifierReplace.idl \ com/sun/star/container/XImplicitIDAccess.idl \ com/sun/star/container/XImplicitIDContainer.idl \ com/sun/star/container/XImplicitIDReplace.idl \ com/sun/star/container/XIndexAccess.idl \ com/sun/star/container/XIndexContainer.idl \ com/sun/star/container/XIndexReplace.idl \ com/sun/star/container/XNameAccess.idl \ com/sun/star/container/XNameContainer.idl \ com/sun/star/container/XNamed.idl \ com/sun/star/container/XNameReplace.idl \ com/sun/star/container/XSet.idl \ com/sun/star/container/XUniqueIDAccess.idl BASIC_IDLS_ = $(patsubst %.idl,$(IDL_PATH)/%.idl,$(BASIC_IDLS)) BASIC_URDS = $(subst idl,urd,$(BASIC_IDLS)) BASIC_URDS_ = $(patsubst %.urd,$(BIN_PATH)/%.urd,$(BASIC_URDS)) CLEANFILES = common.rdb all-local: common.rdb common.rdb: $(BASIC_URDS_) $(REGMERGE) common.rdb /UCR $(BASIC_URDS_) $(RM) -rf $(BIN_PATH) $(BASIC_URDS_) : $(BASIC_IDLS_) for idl in $(BASIC_IDLS); do \ $(IDLC) -I$(ODK_PATH)/idl -I$(IDL_PATH) -O$(BIN_PATH)/`dirname $$idl` $(IDL_PATH)/$$idl; \ done |
From: Yurii R. <yr...@us...> - 2003-02-08 08:23:51
|
Update of /cvsroot/eas-dev/eas-dev/tools In directory sc8-pr-cvs1:/tmp/cvs-serv23957/tools Added Files: .cvsignore Makefile.am Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest --- NEW FILE: .cvsignore --- Makefile Makefile.in --- NEW FILE: Makefile.am --- SUBDIRS = uno |
From: Yurii R. <yr...@us...> - 2003-02-08 08:23:51
|
Update of /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/include In directory sc8-pr-cvs1:/tmp/cvs-serv23957/libs/libsxmlstream/include Modified Files: sxmlhandler.hxx sxmlstream.hxx Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: sxmlhandler.hxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/include/sxmlhandler.hxx,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- sxmlhandler.hxx 3 Feb 2003 09:06:52 -0000 1.2 +++ sxmlhandler.hxx 8 Feb 2003 08:23:48 -0000 1.3 @@ -39,8 +39,18 @@ ~SXmlHandler() {}; void handle(const SXmlNode& node); - void handle_cc(const SXmlNode& node, SXmlCont& cc); + + void connect(SXmlStream& s) + { + s.Received.connect(&this,&SXmlHandler::handle); + } + + void disconnect(SXmlStream& s) + { + s.disconnect(&this); + } }; + }; }; Index: sxmlstream.hxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/libs/libsxmlstream/include/sxmlstream.hxx,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- sxmlstream.hxx 3 Feb 2003 18:59:38 -0000 1.9 +++ sxmlstream.hxx 8 Feb 2003 08:23:48 -0000 1.10 @@ -22,8 +22,10 @@ #define _LIBSXMLSTREAM_SXMLSTREAM_HXX_ #include <queue> +#include <sigslot.h> + #include <sxml.hxx> -//#include <sxmlhandler.hxx> + using namespace std; @@ -36,6 +38,8 @@ queue<SXmlNode> m_queue; public: + signal1<SXmlNode> Received; + bool queueIsEmpty(); SXmlNode pop(); @@ -67,5 +71,7 @@ }; }; }; + +#include <sxmlhandler.hxx> #endif /* _LIBSXMLSTREAM_SXMLSTREAM_HXX_ */ |
From: Yurii R. <yr...@us...> - 2003-02-08 08:23:51
|
Update of /cvsroot/eas-dev/eas-dev/components/logger/tests In directory sc8-pr-cvs1:/tmp/cvs-serv23957/components/logger/tests Modified Files: Makefile.am Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: Makefile.am =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/tests/Makefile.am,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile.am 4 Feb 2003 04:17:14 -0000 1.1 +++ Makefile.am 8 Feb 2003 08:23:48 -0000 1.2 @@ -16,7 +16,7 @@ runTests_LDADD = $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB) -lstdc++ CXXFLAGS = -DOPENEAS_RDB=\"../../openeas.rdb\" -DCOMPONENT_DLL=\"../src/.libs/liblogger.so\" -include config.h CLEANFILES = runTests.cxx -INCLUDES = -I@ODK_PATH@/include -I$(top_srcdir) -I../../.include +INCLUDES = -I@ODK_PATH@/include -I$(top_srcdir) -I../../.incs TESTS = runTests |
From: Yurii R. <yr...@us...> - 2003-02-08 08:23:51
|
Update of /cvsroot/eas-dev/eas-dev/components/logger/src In directory sc8-pr-cvs1:/tmp/cvs-serv23957/components/logger/src Modified Files: Makefile.am consolelogger.cxx consolelogger.hxx logger.cxx sysloglogger.cxx sysloglogger.hxx Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: Makefile.am =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 8 Feb 2003 03:26:20 -0000 1.4 +++ Makefile.am 8 Feb 2003 08:23:47 -0000 1.5 @@ -12,6 +12,6 @@ lib_LTLIBRARIES = liblogger.la liblogger_la_SOURCES = logger.cxx consolelogger.cxx sysloglogger.cxx -INCLUDES = -I../../.include -I@top_include@ -I@ODK_PATH@/include +INCLUDES = -I../../.incs -I@top_include@ -I@ODK_PATH@/include liblogger_la_LIBADD = $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB) -lstdc++ liblogger_la_LDFLAGS = -L/opt/openoffice/program/ -L@ODK_PATH@/linux/lib Index: consolelogger.cxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/consolelogger.cxx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- consolelogger.cxx 8 Feb 2003 03:26:20 -0000 1.5 +++ consolelogger.cxx 8 Feb 2003 08:23:47 -0000 1.6 @@ -53,6 +53,9 @@ using namespace com::sun::star::registry; using namespace ::org::openeas::util; +#define CONSOLELOGGERIMPLNAME "org.openeas.util.XConsoleLogger" +#define SERVICENAME "org.openeas.util.Logger" + class XConsoleLoggerImpl: public XConsoleLogger, public XServiceInfo { Reference<XMultiServiceFactory> m_xServiceManager; @@ -100,11 +103,17 @@ cout.flush(); } - virtual bool SAL_CALL isSupported() + virtual sal_Bool SAL_CALL isSupported() throw (RuntimeException) { return true; // we assume that console is available everywhere. // however, it is an issue to check (FIXME) + } + + virtual sal_Bool SAL_CALL mandates(logOption aLO) + throw (RuntimeException) + { + return false; // FIXME? } }; Index: consolelogger.hxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/consolelogger.hxx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- consolelogger.hxx 8 Feb 2003 03:26:20 -0000 1.5 +++ consolelogger.hxx 8 Feb 2003 08:23:47 -0000 1.6 @@ -6,6 +6,14 @@ #include <org/openeas/util/XConsoleLogger.hpp> #endif +#ifndef _ORG_OPENEAS_UTIL_LOGOPTION_HPP +#include <org/openeas/util/logOption.hpp> +#endif + +#ifndef _ORG_OPENEAS_UTIL_LOGLEVEL_HPP +#include <org/openeas/util/logLevel.hpp> +#endif + using namespace ::rtl; using namespace ::osl; using namespace ::cppu; @@ -16,6 +24,7 @@ using namespace ::org::openeas::util; #define CONSOLELOGGERIMPLNAME "org.openeas.util.XConsoleLogger" +#define SERVICENAME "org.openeas.util.Logger" class XConsoleLoggerImpl: public XConsoleLogger, public XServiceInfo { @@ -53,7 +62,9 @@ throw (RuntimeException); virtual void SAL_CALL log(const OUString& message) throw (RuntimeException); - virtual bool SAL_CALL isSupported(); + virtual sal_Bool SAL_CALL isSupported() + throw (RuntimeException); + virtual sal_Bool SAL_CALL mandates(logOption aLO) throw (RuntimeException); Sequence<OUString> SAL_CALL getImplementations() throw (RuntimeException); }; Index: logger.cxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/logger.cxx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- logger.cxx 8 Feb 2003 03:26:20 -0000 1.6 +++ logger.cxx 8 Feb 2003 08:23:47 -0000 1.7 @@ -67,6 +67,7 @@ Mutex m_mutex; sal_Int32 m_nRefCount; sal_Bool m_ignore[8]; + OUString m_ident; Reference<XLoggerHandler> m_handler; @@ -122,6 +123,12 @@ { if (xHandler->isSupported()) m_handler = xHandler; + } + + virtual void SAL_CALL setIdentifier(const OUString& aIdent) + throw (RuntimeException) + { + m_ident = aIdent; } }; Index: sysloglogger.cxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/sysloglogger.cxx,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- sysloglogger.cxx 8 Feb 2003 03:26:20 -0000 1.1 +++ sysloglogger.cxx 8 Feb 2003 08:23:47 -0000 1.2 @@ -45,6 +45,7 @@ #include <org/openeas/util/XSyslogLogger.hpp> #endif + using namespace ::rtl; using namespace ::osl; using namespace ::cppu; @@ -53,8 +54,8 @@ using namespace com::sun::star::registry; using namespace ::org::openeas::util; -#define CONSOLELOGGERIMPLNAME "org.openeas.util.SyslogLogger" -#define SERVICENAME "org.openeas.util.Logger" +#define CONSOLELOGGERIMPLNAME "org.openeas.util.XSyslogLogger" +#define SERVICENAME "org.openeas.util.Logger" class XSyslogLoggerImpl: public XSyslogLogger, public XServiceInfo { @@ -99,11 +100,12 @@ throw (RuntimeException) { // utf-8 is temporary, need to make it better + // rewrite to syslog! cout << OUStringToOString(message,RTL_TEXTENCODING_UTF8).getStr() << endl; cout.flush(); } - virtual bool SAL_CALL isSupported() + virtual sal_Bool SAL_CALL isSupported() throw (RuntimeException) { #ifdef HAVE_SYSLOG @@ -111,6 +113,12 @@ #else return false; #endif + } + + virtual sal_Bool SAL_CALL mandates(logOption aLO) + throw (RuntimeException) + { + return false; // FIXME! } }; Index: sysloglogger.hxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/sysloglogger.hxx,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- sysloglogger.hxx 8 Feb 2003 03:26:20 -0000 1.1 +++ sysloglogger.hxx 8 Feb 2003 08:23:47 -0000 1.2 @@ -6,6 +6,14 @@ #include <org/openeas/util/XSyslogLogger.hpp> #endif +#ifndef _ORG_OPENEAS_UTIL_LOGOPTION_HPP +#include <org/openeas/util/logOption.hpp> +#endif + +#ifndef _ORG_OPENEAS_UTIL_LOGLEVEL_HPP +#include <org/openeas/util/logLevel.hpp> +#endif + using namespace ::rtl; using namespace ::osl; using namespace ::cppu; @@ -16,6 +24,7 @@ using namespace ::org::openeas::util; #define SYSLOGLOGGERIMPLNAME "org.openeas.util.XSyslogLogger" +#define SERVICENAME "org.openeas.util.Logger" class XSyslogLoggerImpl: public XSyslogLogger, public XServiceInfo { @@ -53,7 +62,9 @@ throw (RuntimeException); virtual void SAL_CALL log(const OUString& message) throw (RuntimeException); - virtual bool SAL_CALL isSupported(); + virtual sal_Bool SAL_CALL isSupported() + throw (RuntimeException); + virtual sal_Bool SAL_CALL mandates(logOption aLO) throw (RuntimeException); Sequence<OUString> SAL_CALL getImplementations() throw (RuntimeException); }; |
From: Yurii R. <yr...@us...> - 2003-02-08 08:23:50
|
Update of /cvsroot/eas-dev/eas-dev/components/logger/idl/org/openeas/util In directory sc8-pr-cvs1:/tmp/cvs-serv23957/components/logger/idl/org/openeas/util Modified Files: Logger.idl XLogger.idl XLoggerHandler.idl XSyslogLogger.idl Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: Logger.idl =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/idl/org/openeas/util/Logger.idl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Logger.idl 8 Feb 2003 03:26:20 -0000 1.4 +++ Logger.idl 8 Feb 2003 08:23:47 -0000 1.5 @@ -11,6 +11,10 @@ #include <org/openeas/util/XConsoleLogger.idl> #endif +#ifndef _org_openeas_util_XSyslogLogger_idl_ +#include <org/openeas/util/XSyslogLogger.idl> +#endif + module org { module openeas { module util { service Logger Index: XLogger.idl =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/idl/org/openeas/util/XLogger.idl,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- XLogger.idl 8 Feb 2003 03:26:20 -0000 1.6 +++ XLogger.idl 8 Feb 2003 08:23:47 -0000 1.7 @@ -7,6 +7,10 @@ #include <com/sun/star/uno/XInterface.idl> #endif +#ifndef _org_openeas_util_logOption_idl_ +#include <org/openeas/util/logOption.idl> +#endif + #ifndef _org_openeas_util_XLoggerHandler_idl_ #include <org/openeas/util/XLoggerHandler.idl> #endif @@ -25,12 +29,6 @@ INFO = 6, DEBUG = 7 }; - -enum logOption -{ - LogDate = 0 -}; - interface XLogger: com::sun::star::uno::XInterface { Index: XLoggerHandler.idl =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/idl/org/openeas/util/XLoggerHandler.idl,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- XLoggerHandler.idl 8 Feb 2003 03:26:20 -0000 1.2 +++ XLoggerHandler.idl 8 Feb 2003 08:23:47 -0000 1.3 @@ -7,12 +7,17 @@ #include <com/sun/star/uno/XInterface.idl> #endif +#ifndef _org_openeas_util_logOption_idl_ +#include <org/openeas/util/logOption.idl> +#endif + module org { module openeas { module util { interface XLoggerHandler: com::sun::star::uno::XInterface { void log([in] string message); boolean isSupported(); + boolean mandates([in] logOption aLO); }; Index: XSyslogLogger.idl =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/idl/org/openeas/util/XSyslogLogger.idl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- XSyslogLogger.idl 8 Feb 2003 03:26:20 -0000 1.1 +++ XSyslogLogger.idl 8 Feb 2003 08:23:47 -0000 1.2 @@ -2,8 +2,8 @@ /* XSyslogLogger is supported only on plaforms that have syslog */ -#ifndef _org_openeas_util_XConsoleLogger_idl_ -#define _org_openeas_util_XConsoleLogger_idl_ +#ifndef _org_openeas_util_XSyslogLogger_idl_ +#define _org_openeas_util_XSyslogLogger_idl_ #ifndef _org_openeas_util_XLogger_idl_ #include <org/openeas/util/XLogger.idl> |
From: Yurii R. <yr...@us...> - 2003-02-08 08:23:50
|
Update of /cvsroot/eas-dev/eas-dev/components/logger In directory sc8-pr-cvs1:/tmp/cvs-serv23957/components/logger Modified Files: Makefile.am descriptor.xml Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: Makefile.am =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Makefile.am 3 Feb 2003 09:06:51 -0000 1.6 +++ Makefile.am 8 Feb 2003 08:23:47 -0000 1.7 @@ -1,8 +1,9 @@ IDL_FILES = org/openeas/util/XLogger.idl org/openeas/util/XLoggerHandler.idl \ - org/openeas/util/XConsoleLogger.idl \ + org/openeas/util/XConsoleLogger.idl org/openeas/util/XSyslogLogger.idl \ + org/openeas/util/logOption.idl \ org/openeas/util/Logger.idl -SRC_FILES = logger.cxx consolelogger.cxx +SRC_FILES = logger.cxx consolelogger.cxx sysloglogger.cxx COMPONENT = logger Index: descriptor.xml =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/descriptor.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- descriptor.xml 4 Feb 2003 04:17:14 -0000 1.4 +++ descriptor.xml 8 Feb 2003 08:23:47 -0000 1.5 @@ -30,6 +30,7 @@ <type> org.openeas.util.XLogger </type> <type> org.openeas.util.XLoggerHandler </type> <type> org.openeas.util.XConsoleLogger </type> + <type> org.openeas.util.XSyslogLogger </type> </component-description> <project-build-dependency> cppuhelper </project-build-dependency> <project-build-dependency> cppu </project-build-dependency> |
From: Yurii R. <yr...@us...> - 2003-02-08 08:23:50
|
Update of /cvsroot/eas-dev/eas-dev/components In directory sc8-pr-cvs1:/tmp/cvs-serv23957/components Modified Files: .cvsignore Makefile.am Log Message: Improved openeas.rdb building (w/ site common.rdb); some minor additions to `logger' components; misc changes at the rest Index: .cvsignore =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/.cvsignore,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- .cvsignore 3 Feb 2003 06:30:45 -0000 1.5 +++ .cvsignore 8 Feb 2003 08:23:46 -0000 1.6 @@ -1,6 +1,4 @@ Makefile Makefile.in -openeas-basic.bin -openeas-basic.rdb openeas.rdb .include Index: Makefile.am =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Makefile.am 4 Feb 2003 07:52:25 -0000 1.8 +++ Makefile.am 8 Feb 2003 08:23:47 -0000 1.9 @@ -2,144 +2,25 @@ ODK = @ODK_PATH@ IDLC = @IDLC@ REGMERGE = @REGMERGE@ - +REGCOMP = @REGCOMP@ RM = @RM@ -IDL_PATH = $(ODK)/idl -BIN_PATH = .openeas.urd - -BASIC_IDLS = com/sun/star/uno/Exception.idl \ -com/sun/star/uno/NamingService.idl \ -com/sun/star/uno/RuntimeException.idl \ -com/sun/star/uno/SecurityException.idl \ -com/sun/star/uno/TypeClass.idl \ -com/sun/star/uno/Uik.idl \ -com/sun/star/uno/XAdapter.idl \ -com/sun/star/uno/XAggregation.idl \ -com/sun/star/uno/XComponentContext.idl \ -com/sun/star/uno/XCurrentContext.idl \ -com/sun/star/uno/XFactory.idl \ -com/sun/star/uno/XInterface.idl \ -com/sun/star/uno/XNamingService.idl \ -com/sun/star/uno/XReference.idl \ -com/sun/star/uno/XUnloadingPreference.idl \ -com/sun/star/uno/XWeak.idl \ -com/sun/star/lang/ArrayIndexOutOfBoundsException.idl \ -com/sun/star/lang/ClassNotFoundException.idl \ -com/sun/star/lang/DisposedException.idl \ -com/sun/star/lang/EventObject.idl \ -com/sun/star/lang/IllegalAccessException.idl \ -com/sun/star/lang/IllegalArgumentException.idl \ -com/sun/star/lang/IndexOutOfBoundsException.idl \ -com/sun/star/lang/InvalidListenerException.idl \ -com/sun/star/lang/ListenerExistException.idl \ -com/sun/star/lang/Locale.idl \ -com/sun/star/lang/MultiServiceFactory.idl \ -com/sun/star/lang/NoSuchFieldException.idl \ -com/sun/star/lang/NoSuchMethodException.idl \ -com/sun/star/lang/NoSupportException.idl \ -com/sun/star/lang/NullPointerException.idl \ -com/sun/star/lang/RegistryServiceManager.idl \ -com/sun/star/lang/SecurityException.idl \ -com/sun/star/lang/ServiceManager.idl \ -com/sun/star/lang/ServiceNotRegisteredException.idl \ -com/sun/star/lang/SystemDependent.idl \ -com/sun/star/lang/WrappedTargetException.idl \ -com/sun/star/lang/WrappedTargetRuntimeException.idl \ -com/sun/star/lang/XComponent.idl \ -com/sun/star/lang/XConnectionPointContainer.idl \ -com/sun/star/lang/XConnectionPoint.idl \ -com/sun/star/lang/XEventListener.idl \ -com/sun/star/lang/XInitialization.idl \ -com/sun/star/lang/XLocalizable.idl \ -com/sun/star/lang/XMain.idl \ -com/sun/star/lang/XMultiComponentFactory.idl \ -com/sun/star/lang/XMultiServiceFactory.idl \ -com/sun/star/lang/XServiceDisplayName.idl \ -com/sun/star/lang/XServiceInfo.idl \ -com/sun/star/lang/XServiceName.idl \ -com/sun/star/lang/XSingleComponentFactory.idl \ -com/sun/star/lang/XSingleServiceFactory.idl \ -com/sun/star/lang/XTypeProvider.idl \ -com/sun/star/lang/XUnoTunnel.idl \ -com/sun/star/loader/CannotActivateFactoryException.idl \ -com/sun/star/loader/Dynamic.idl \ -com/sun/star/loader/Java.idl \ -com/sun/star/loader/SharedLibrary.idl \ -com/sun/star/loader/XImplementationLoader.idl \ -com/sun/star/registry/CannotRegisterImplementationException.idl \ -com/sun/star/registry/DefaultRegistry.idl \ -com/sun/star/registry/ImplementationRegistration.idl \ -com/sun/star/registry/InvalidRegistryException.idl \ -com/sun/star/registry/InvalidValueException.idl \ -com/sun/star/registry/MergeConflictException.idl \ -com/sun/star/registry/NestedRegistry.idl \ -com/sun/star/registry/RegistryKeyType.idl \ -/com/sun/star/registry/RegistryValueType.idl \ -com/sun/star/registry/SimpleRegistry.idl \ -com/sun/star/registry/XImplementationRegistration.idl \ -com/sun/star/registry/XRegistryKey.idl \ -com/sun/star/registry/XSimpleRegistry.idl \ -com/sun/star/container/ContainerEvent.idl \ -com/sun/star/container/ElementExistException.idl \ -com/sun/star/container/NoSuchElementException.idl \ -com/sun/star/container/XChild.idl \ -com/sun/star/container/XComponentEnumerationAccess.idl \ -com/sun/star/container/XComponentEnumeration.idl \ -com/sun/star/container/XContainer.idl \ -com/sun/star/container/XContainerListener.idl \ -com/sun/star/container/XContentEnumerationAccess.idl \ -com/sun/star/container/XElementAccess.idl \ -com/sun/star/container/XEnumerationAccess.idl \ -com/sun/star/container/XEnumeration.idl \ -com/sun/star/container/XHierarchicalNameAccess.idl \ -com/sun/star/container/XHierarchicalNameContainer.idl \ -com/sun/star/container/XHierarchicalName.idl \ -com/sun/star/container/XHierarchicalNameReplace.idl \ -com/sun/star/container/XIdentifierAccess.idl \ -com/sun/star/container/XIdentifierContainer.idl \ -com/sun/star/container/XIdentifierReplace.idl \ -com/sun/star/container/XImplicitIDAccess.idl \ -com/sun/star/container/XImplicitIDContainer.idl \ -com/sun/star/container/XImplicitIDReplace.idl \ -com/sun/star/container/XIndexAccess.idl \ -com/sun/star/container/XIndexContainer.idl \ -com/sun/star/container/XIndexReplace.idl \ -com/sun/star/container/XNameAccess.idl \ -com/sun/star/container/XNameContainer.idl \ -com/sun/star/container/XNamed.idl \ -com/sun/star/container/XNameReplace.idl \ -com/sun/star/container/XSet.idl \ -com/sun/star/container/XUniqueIDAccess.idl - -BASIC_IDLS_ = $(patsubst %.idl,$(IDL_PATH)/%.idl,$(BASIC_IDLS)) -BASIC_URDS = $(subst idl,urd,$(BASIC_IDLS)) -BASIC_URDS_ = $(patsubst %.urd,$(BIN_PATH)/%.urd,$(BASIC_URDS)) +SITE_RDB = openeas.rdb -COMPONENTS_REGISTRY=$(patsubst %,%/bin/%.rdb,$(COMPONENTS)) +COMPONENT_DLLS=$(foreach component, $(COMPONENTS), $(component)/src/.libs/lib$(component).so) -CLEANFILES = openeas.rdb .openeas.rdb +CLEANFILES = openeas.rdb clean-local: - $(RM) -rf .include - $(RM) -rf $(BIN_PATH) + $(RM) -rf .incs -all-local: openeas.rdb +all-local: openeas.rdb -openeas.rdb: $(COMPONENTS_REGISTRY) - $(REGMERGE) openeas.rdb /UCR .openeas.rdb $(COMPONENTS_REGISTRY) +$(SITE_RDB): $(COMPONENT_DLLS) + $(REGCOMP) -register -r $(SITE_RDB) $(patsubst %,-c %,$(COMPONENT_DLLS)) -$(COMPONENTS_REGISTRY): .openeas.rdb +$(COMPONENT_DLLS): $(patsubst %,%/Makefile,$(COMPONENTS)) for dir in $(COMPONENTS); do \ $(MAKE) -C $$dir; \ done - -.openeas.rdb: $(BASIC_URDS_) - $(REGMERGE) .openeas.rdb /UCR $(BASIC_URDS_) - -$(BASIC_URDS_) : $(BASIC_IDLS_) - for idl in $(BASIC_IDLS); do \ - $(IDLC) -I$(ODK_PATH)/idl -I$(IDL_PATH) -O$(BIN_PATH)/`dirname $$idl` $(IDL_PATH)/$$idl; \ - done - |
From: Yurii R. <yr...@us...> - 2003-02-08 08:22:09
|
Update of /cvsroot/eas-dev/eas-dev/tools/uno In directory sc8-pr-cvs1:/tmp/cvs-serv23769/uno Log Message: Directory /cvsroot/eas-dev/eas-dev/tools/uno added to the repository |