diff --git a/Makefile b/Makefile
index 9ae39a1749db40444e8836fa3d377ff1dd5a2cca..383cbea5168724f80a35b758bb4d326fb4611af3 100644
--- a/Makefile
+++ b/Makefile
@@ -130,6 +130,9 @@ endif
 ifeq ($(BUILDREFLEX),yes)
 MODULES      += reflex
 endif
+ifeq ($(BUILDCINTEX),yes)
+MODULES      += cintex
+endif
 ifeq ($(BUILDROOFIT),yes)
 MODULES      += roofit
 endif
diff --git a/config/Makefile.in b/config/Makefile.in
index 7f0cc93c509e122d2388eb5644da7fe8bcae7abf..4b2cba3be8e011d0d954e1e1e479db49eca84a59 100644
--- a/config/Makefile.in
+++ b/config/Makefile.in
@@ -191,6 +191,8 @@ BUILDMATHCORE  := @buildmathcore@
 
 BUILDMATHMORE  := @buildmathmore@
 
+BUILDCINTEX    := @buildcintex@
+
 BUILDREFLEX    := @buildreflex@
 
 BUILDROOFIT    := @buildroofit@
diff --git a/configure b/configure
index a594d021a87e93a69b8590dc849c331c9ced583a..b7853eb469355d97ee0842ee80cdf29e7906aac1 100755
--- a/configure
+++ b/configure
@@ -29,6 +29,7 @@ options="                    \
    enable_builtin_freetype   \
    enable_cern               \
    enable_chirp              \
+   enable_cintex             \
    enable_clarens            \
    enable_dcache             \
    enable_exceptions         \
@@ -73,6 +74,7 @@ for c in $options ; do eval $c="yes" ; done
 
 enable_afs=no
 enable_explicitlink=no
+enable_cintex=no
 enable_mathcore=no
 enable_mathmore=no
 enable_pythia=no
@@ -115,6 +117,7 @@ GLOBUS_LOCATION  \
 SRP              \
 SSL              \
 AFS              \
+CINTEX           \
 REFLEX           \
 ROOFIT           \
 TABLE            \
@@ -662,6 +665,7 @@ enable/disable options, prefix with either --enable- or --disable-
   builtin-freetype   Built included libfreetype, or use system libfreetype
   cern               CERNLIB usage, build h2root and g2root
   chirp              Chirp support (Condor remote I/O), requires libchirp_client
+  cintex             Build the cintex program to test Reflex
   clarens            Clarens RPC support, optionally used by PROOF
   dcache             dCache support, requires libdcap from DESY
   exceptions         Turn on compiler exception handling capability
@@ -2728,6 +2732,19 @@ else
     echo "no"
 fi
 
+######################################################################
+#
+### echo %%% Cintex program - Contributed program
+#
+message "Checking whether to build cintex"
+if test "x$enable_cintex" = "xyes" || test ! "x$CINTEX" = "x"; then
+    enable_cintex="yes"
+    echo "yes"
+else
+    enable_cintex=""
+    echo "no"
+fi
+
 ######################################################################
 #
 ### echo %%% Reflex Library - Contributed library
@@ -3094,6 +3111,7 @@ sed -e "s|@aclocaldir@|$aclocaldir|"            \
     -e "s|@elispdir@|$elispdir|"                \
     -e "s|@buildmathcore@|$enable_mathcore|"    \
     -e "s|@buildmathmore@|$enable_mathmore|"    \
+    -e "s|@buildcintex@|$enable_cintex|"        \
     -e "s|@buildreflex@|$enable_reflex|"        \
     -e "s|@buildroofit@|$enable_roofit|"        \
     -e "s|@buildtable@|$enable_table|"          \