summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfcolin2005-06-03 16:49:26 +0000
committerfcolin2005-06-03 16:49:26 +0000
commitcd85fe1c186c823232795124c1ecd242462e191b (patch)
treeb1f1c903fa6c3fe0a45e8da79907058a7635f6a8 /src
parent2a38273b4212c38e66af99c8c3b6e9335dc64cb2 (diff)
downloadivy-c-cd85fe1c186c823232795124c1ecd242462e191b.zip
ivy-c-cd85fe1c186c823232795124c1ecd242462e191b.tar.gz
ivy-c-cd85fe1c186c823232795124c1ecd242462e191b.tar.bz2
ivy-c-cd85fe1c186c823232795124c1ecd242462e191b.tar.xz
case Sensitive NO
Diffstat (limited to 'src')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index c094e7d..871af95 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -42,8 +42,8 @@ TCLLIB = -ltcl$(TCLVERS)
#TCLLIB = -framework Tcl
PCREINC = `pcre-config --cflags`
PCRELIB = `pcre-config --libs`
-CASESENSITIVE = "yes"
-ifeq ($(CASESENSITIVE), "yes")
+CASESENSITIVE = "no"
+ifeq ($(CASESENSITIVE), "no")
PCRE_OPT=PCRE_CASELESS
REGCOMP_OPT=REG_ICASE
else