diff options
author | Rich Megginson <rmeggins@redhat.com> | 2006-02-10 23:22:00 +0000 |
---|---|---|
committer | Rich Megginson <rmeggins@redhat.com> | 2006-02-10 23:22:00 +0000 |
commit | 3e9312ac1c76ac990ea44b5b837a795c04def632 (patch) | |
tree | 7059108d9a95202524a11969616e545926ee6aa5 /ldap/cm | |
parent | 1d536d11e33c64496f59faf0bebd5aa4c1c20a49 (diff) | |
download | ds-3e9312ac1c76ac990ea44b5b837a795c04def632.tar.gz ds-3e9312ac1c76ac990ea44b5b837a795c04def632.tar.xz ds-3e9312ac1c76ac990ea44b5b837a795c04def632.zip |
Bug(s) fixed: 178479
Bug Description: DSMLGW code uses non-standard sun.misc.Base64Encoder
Reviewed by: The team (Thanks!)
Fix Description: Added jakarta-commons-codec.jar to the DS build and
packaging. We will need to add this file to the bundle of dsmlgw jar
files on /share/builds/components.
Platforms tested: Fedora Core 4
Flag Day: no
Doc impact: no
QA impact: should be covered by regular nightly and manual testing
New Tests integrated into TET: none
Diffstat (limited to 'ldap/cm')
-rw-r--r-- | ldap/cm/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ldap/cm/Makefile b/ldap/cm/Makefile index f9777862..75c15439 100644 --- a/ldap/cm/Makefile +++ b/ldap/cm/Makefile @@ -359,7 +359,11 @@ ifeq ($(USE_DSMLGW), 1) # now time to move the necessary jars in place $(INSTALL) -m 644 $(LDAPJARFILE) $(RELDIR)/clients/dsmlgw/WEB-INF/lib - $(INSTALL) -m 644 $(DSMLGWJARS_BUILD_DIR)/activation.jar $(EXT_JAVA_RELDIR)/clients/dsmlgw/WEB-INF/lib + if [ -f $(DSMLGWJARS_BUILD_DIR)/jaf.jar ] ; then \ + $(INSTALL) -m 644 $(DSMLGWJARS_BUILD_DIR)/jaf.jar $(EXT_JAVA_RELDIR)/clients/dsmlgw/WEB-INF/lib ; \ + else \ + $(INSTALL) -m 644 $(DSMLGWJARS_BUILD_DIR)/activation.jar $(EXT_JAVA_RELDIR)/clients/dsmlgw/WEB-INF/lib ; \ + fi # if you use the jaxrpc.jar from the axis distribution, you don't need the api file # or perhaps you need the jaxrpc.jar for building, and jaxrpc-api.jar at runtime, or vice versa # if so, I'm not sure where to get the implementation @@ -370,6 +374,7 @@ ifeq ($(USE_DSMLGW), 1) $(INSTALL) -m 644 $(DSMLGWJARS_BUILD_DIR)/saaj.jar $(EXT_JAVA_RELDIR)/clients/dsmlgw/WEB-INF/lib $(INSTALL) -m 644 $(DSMLGWJARS_BUILD_DIR)/xercesImpl.jar $(EXT_JAVA_RELDIR)/clients/dsmlgw/WEB-INF/lib $(INSTALL) -m 644 $(DSMLGWJARS_BUILD_DIR)/xml-apis.jar $(EXT_JAVA_RELDIR)/clients/dsmlgw/WEB-INF/lib + $(INSTALL) -m 644 $(DSMLGWJARS_BUILD_DIR)/jakarta-commons-codec.jar $(EXT_JAVA_RELDIR)/clients/dsmlgw/WEB-INF/lib endif # USE_DSMLGW # PACKAGE_UNDER_JAVA is defined in components.mk - these are component .jar files to install |