From: Chris B. <buc...@us...> - 2011-09-21 14:50:22
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv22117 Modified Files: ChangeLog NEWS Makefile.am Log Message: [ 3412033 ] New files from 3313833 missed release tarball Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.609 retrieving revision 1.610 diff -u -d -r1.609 -r1.610 --- NEWS 9 Sep 2011 22:54:18 -0000 1.609 +++ NEWS 21 Sep 2011 14:50:20 -0000 1.610 @@ -12,6 +12,7 @@ - 3393324 sfcb process abort in IndCIMXMLHandlerInvokeMethod - 3398337 Namespaces of filter and handler for IndSub not checked - 3400114 sfcb fails to start with ipv6 disabled +- 3412033 New files from 3313833 missed release tarball Changes in 1.3.12 ================= Index: Makefile.am =================================================================== RCS file: /cvsroot/sblim/sfcb/Makefile.am,v retrieving revision 1.112 retrieving revision 1.113 diff -u -d -r1.112 -r1.113 --- Makefile.am 29 Jun 2011 17:33:01 -0000 1.112 +++ Makefile.am 21 Sep 2011 14:50:20 -0000 1.113 @@ -126,6 +126,12 @@ PAM_LIBS = endif +if ACCOUNT_PASSTHRU + ACCOUNT_PASSTHRU_LIBS = libsfccimAccountPassthroughProvider.la +else + ACCOUNT_PASSTHRU_LIBS = +endif + sfcb_sharedobjects = \ $(sfcblibdir)/*.so @@ -151,7 +157,8 @@ $(QUALREP_LIBS) \ $(INDICATION_LIBS) \ $(PAM_LIBS) \ - $(SLP_HOSTNAME_LIBS) + $(SLP_HOSTNAME_LIBS) \ + $(ACCOUNT_PASSTHRU_LIBS) if TEST_ENABLED sfcblib_LTLIBRARIES += \ @@ -332,6 +339,12 @@ libsfcElementCapabilitiesProvider_la_LIBADD=-lsfcBrokerCore libsfcElementCapabilitiesProvider_la_DEPENDENCIES=libsfcBrokerCore.la +if ACCOUNT_PASSTHRU +libsfccimAccountPassthroughProvider_la_SOURCES = cimAccountPassthroughProvider.c +libsfccimAccountPassthroughProvider_la_LIBADD=-lsfcBrokerCore +libsfccimAccountPassthroughProvider_la_DEPENDENCIES=libsfcBrokerCore.la +endif + libsfcClassProviderGz_la_SOURCES = \ classProviderGz.c libsfcClassProviderGz_la_LIBADD=-lsfcBrokerCore @SFCB_LIBZ@ @@ -454,7 +467,13 @@ dist_sfcbdata_SCRIPTS=genSslCert.sh getSchema.sh test/stageschema.sh -dist_sfcbdata_DATA=default.reg 10_interop.mof 20_indication.mof indication.mof +if ACCOUNT_PASSTHRU +ACCOUNT_PASSTHRU_MOF = cimAccountPassthrough.mof +else +ACCOUNT_PASSTHRU_MOF = +endif + +dist_sfcbdata_DATA=default.reg 10_interop.mof 20_indication.mof indication.mof $(ACCOUNT_PASSTHRU_MOF) nodist_bin_SCRIPTS=sfcbrepos sfcbstage sfcbunstage sfcbuuid @@ -539,6 +558,9 @@ $(INSTALL_DATA) $(srcdir)/20_indication.mof $(DESTDIR)$(sfcbstatedir)/stage/mofs/root/interop $(INSTALL_DATA) $(srcdir)/indication.mof $(DESTDIR)$(sfcbstatedir)/stage/mofs endif +if ACCOUNT_PASSTHRU + $(INSTALL_DATA) $(srcdir)/cimAccountPassthrough.mof $(DESTDIR)$(sfcbstatedir)/stage/mofs/root/interop +endif if DOCS test -d $(DESTDIR)$(sfcbdocdir)/html || $(mkdir_p) $(DESTDIR)$(sfcbdocdir)/html $(INSTALL) -m 644 $(srcdir)/doc/html/* $(DESTDIR)$(sfcbdocdir)/html Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.685 retrieving revision 1.686 diff -u -d -r1.685 -r1.686 --- ChangeLog 9 Sep 2011 22:54:18 -0000 1.685 +++ ChangeLog 21 Sep 2011 14:50:20 -0000 1.686 @@ -1,3 +1,8 @@ +2011-09-21 Chris Buccella <buc...@li...> + + * Makefile.am: + [ 3412033 ] New files from 3313833 missed release tarball + 2011-09-09 Michael Chase-Salerno <br...@li...> * httpAdapter.c, sfcb.cfg.pre.in, control.c: |