diff --git a/samples/Makefile.in b/samples/Makefile.in
index 61cb1c146e029d20c693f8842e890023f6070e5e..da034dc2d9b5e4aa821a97ae2571f69b61c07571 100644
--- a/samples/Makefile.in
+++ b/samples/Makefile.in
@@ -55,8 +55,11 @@
 # 
 #
 # $Log$
-# Revision 1.1  1999/11/09 01:09:25  twl
-# Initial revision
+# Revision 1.2  1999/11/12 19:12:34  abagchi
+# Changed instances of XML4CROOT to XERCESCROOT
+#
+# Revision 1.1.1.1  1999/11/09 01:09:25  twl
+# Initial checkin
 #
 # Revision 1.4  1999/11/08 20:43:33  rahul
 # Swat for adding in Product name and CVS comment log variable.
@@ -71,7 +74,7 @@ Redirect_DIR=Redirect
 MemParse_DIR=MemParse
 PParse_DIR=PParse
 StdInParse_DIR=StdInParse
-LIB_DIR=${XML4CROOT}/lib
+LIB_DIR=${XERCESCROOT}/lib
 
 PLATFORM = @platform@
 COMPILER = @compiler@
diff --git a/samples/Makefile.incl b/samples/Makefile.incl
index c9a6c50adc572c3c440f698e235e5908a1668474..810a82cbbe05a282d1646f21302561c32f524ac0 100644
--- a/samples/Makefile.incl
+++ b/samples/Makefile.incl
@@ -55,8 +55,11 @@
 # 
 #
 # $Log$
-# Revision 1.1  1999/11/09 01:09:25  twl
-# Initial revision
+# Revision 1.2  1999/11/12 19:12:37  abagchi
+# Changed instances of XML4CROOT to XERCESCROOT
+#
+# Revision 1.1.1.1  1999/11/09 01:09:25  twl
+# Initial checkin
 #
 # Revision 1.3  1999/11/08 20:43:34  rahul
 # Swat for adding in Product name and CVS comment log variable.
@@ -65,9 +68,9 @@
 
 ################## LIBRARY NAMES AND DIRECTORIES ##################
 
-INCLUDES= -I. -I${XML4CROOT}/include
-LIB_DIR=${XML4CROOT}/lib
-LIBNAME=IXXML4C
+INCLUDES= -I. -I${XERCESCROOT}/include
+LIB_DIR=${XERCESCROOT}/lib
+LIBNAME=xerces-c
 THISLIB=${LIB_DIR}/${LIBNAME}
 VER=3_0
 ifdef ICUROOT
@@ -133,7 +136,7 @@ ifeq (${PLATFORM}, HPUX)
       CXXFLAGS = -w +O1
     endif
     APPL_NAME = $(notdir $(shell pwd))
-    TEMPLATESDIR = $(XML4CROOT)/bin/obj/$(APPL_NAME)/ptrepository
+    TEMPLATESDIR = $(XERCESCROOT)/bin/obj/$(APPL_NAME)/ptrepository
     COMMON_CMP = $(CXXFLAGS) -D_HP_UX -DHPCC +DAportable -w +eh +z -z \
         -ptr$(TEMPLATESDIR)
     CMP = -c $(COMMON_CMP)
@@ -151,19 +154,7 @@ endif
 # Before you try to run the Makefile, make sure you have two      #
 # environment variables set.                                      #
 #                                                                 #
-#   export XML4CROOT=<the directory where you installed XML4C>    #
-# XML4C can be built in two ways (1) using ICU and                #
-#                                (2) using Iconv (not ICU)        #
-#                                                                 #
-# To use ICU, you must:                                           #
-#   export ICUROOT=<the directory where you installed ICU>        #
-# To disable ICU and use Iconv instead:                           #
-#   unset ICUROOT                                                 #
-#                                                                 #
-# Also, to enable debugging, you must type:                       #
-#   export DEBUG=1                                                #
-# To disable debugging, you must type:                            #
-#   unset DEBUG                                                   #
+# export XERCESCROOT=<the directory where you installed XERCES-C> #
 #                                                                 #
 # If you are going to do the OS390BATCH build, make sure you have #
 # the OS390BATCH environment variable set.                        #
diff --git a/samples/runConfigure b/samples/runConfigure
index d7031656dd4f91bc3f6ad1dc48182bac93c44ebc..d0add21cc3e1c13d202457a40b1f64202f1ae9be 100755
--- a/samples/runConfigure
+++ b/samples/runConfigure
@@ -58,8 +58,11 @@
 # 
 #
 # $Log$
-# Revision 1.1  1999/11/09 01:09:26  twl
-# Initial revision
+# Revision 1.2  1999/11/12 19:12:40  abagchi
+# Changed instances of XML4CROOT to XERCESCROOT
+#
+# Revision 1.1.1.1  1999/11/09 01:09:26  twl
+# Initial checkin
 #
 # Revision 1.4  1999/11/08 20:43:34  rahul
 # Swat for adding in Product name and CVS comment log variable.
@@ -87,12 +90,12 @@ if test ${1}o = "o"; then
    exit -1
 fi
 
-if test ${XML4CROOT}o = "o"; then
-   echo ERROR : You have not set your XML4CROOT environment variable
+if test ${XERCESCROOT}o = "o"; then
+   echo ERROR : You have not set your XERCESCROOT environment variable
    echo Though this environment variable has nothing to do with creating makefiles,
    echo this is just a general warning to prevent you from pitfalls in future. Please
-   echo set an environment variable called XML4CROOT to indicate where you installed
-   echo the XML4C files, and run this command again to proceed. See the documentation
+   echo set an environment variable called XERCESCROOT to indicate where you installed
+   echo the XERCES-C files, and run this command again to proceed. See the documentation
    echo for an example if you are still confused.
    exit -1
 fi
@@ -200,7 +203,7 @@ rm -f config.status
 
 echo
 echo If the result of the above commands look OK to you, go to the directory
-echo ${XML4CROOT}/src and type \"make\" to make the XML4C system.
+echo ${XERCESCROOT}/src and type \"make\" to make the XERCES-C system.
 
 exit 0;