Skip to content

Commit a329c28

Browse files
committed
Changing defaults for in-memory database
1 parent ebaf973 commit a329c28

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,9 +567,9 @@ AC_ARG_ENABLE(collection-global-lock,
567567
# Enable collection's memory database support
568568
AC_ARG_ENABLE(collection-memory-database,
569569
AS_HELP_STRING([--enable-collection-memory-database],
570-
[Enable memory database support for collection. This is enabled by default]),
570+
[Enable memory database support for collection.]),
571571
[
572-
if test "$enableval" != "no"; then
572+
if test "$enableval" = "yes"; then
573573
collection_memory_database="-I"`pwd`"/apache2/ag_mdb -DMEMORY_DATABASE_ENABLE"
574574
MODSEC_EXTRA_CFLAGS="$MODSEC_EXTRA_CFLAGS $collection_memory_database"
575575
else

iis/Makefile.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ INCLUDES = $(INCLUDES) -I$(YAJL)\include -I$(YAJL) \
6464
# !ENDIF
6565

6666
# Enable support for collection's memory database
67-
DEFS=$(DEFS) -DMEMORY_DATABASE_ENABLE
67+
#DEFS=$(DEFS) -DMEMORY_DATABASE_ENABLE
6868

6969
CFLAGS= -MD /Zi $(INCLUDES) $(DEFS)
7070

0 commit comments

Comments
 (0)