@@ -75,7 +75,6 @@ check_library () {
7575set_defaults () {
7676 with_sqlite=1
7777 with_pgsql=1
78- with_camlzip=1
7978 with_dbm=1
8079 prefix=" /usr/local"
8180 bindir=" "
@@ -103,7 +102,7 @@ full_pwd=`pwd`
103102
104103# # Which options exist? eoptions for enable/disable, woptions for with/without:
105104eoptions=" "
106- woptions=" pgsql sqlite dbm camlzip "
105+ woptions=" pgsql sqlite dbm"
107106
108107print_options () {
109108 for opt in $eoptions ; do
@@ -178,8 +177,6 @@ usage: ./configure [ options ]
178177 --with-sqlite, --without-sqlite Compile ocsipersist with SQLite for persistent storage
179178 --with-pgsql, --without-pgsql Compile ocsipersist with PostgreSQL for persistent storage
180179 --with-dbm, --without-dbm Compile ocsipersist with DBM for persistent storage
181- --with-camlzip, --without-camlzip Compile deflatemod extension, requires camlzip
182-
183180 --name NAME The name of the server binary and ocamlfind package.
184181
185182 --ocsigen-user NAME The name of the ocsigen user
@@ -435,17 +432,6 @@ if [ "$with_dbm" -gt 0 ]; then
435432 fi
436433fi
437434
438- # Check Camlzip
439- if [ " $with_camlzip " -gt 0 ]; then
440- if test_library camlzip; then
441- echo -n
442- elif [ " $with_camlzip " -gt 1 ]; then
443- fail_library camlzip " https://forge.ocamlcore.org/projects/camlzip/"
444- else
445- with_camlzip=0
446- fi
447- fi
448-
449435# Check rlwrap or ledit
450436if test_binary rlwrap; then
451437 rlwrap=rlwrap
@@ -480,11 +466,6 @@ if [ $with_pgsql -gt 0 ] ; then
480466else
481467 with_pgsql=" NO"
482468fi
483- if [ $with_camlzip -gt 0 ] ; then
484- with_camlzip=" YES"
485- else
486- with_camlzip=" NO"
487- fi
488469
489470ocamlinclude=` ocamlfind printconf stdlib`
490471
@@ -518,9 +499,6 @@ OCSIGENUSER := $ocsigen_user
518499# (This group must exist)
519500OCSIGENGROUP := $ocsigen_group
520501
521- # Do you want deflatemod? YES/NO (requires camlzip)
522- CAMLZIP:=$with_camlzip
523-
524502# Do you want ocsipersist with sqlite? YES/NO
525503OCSIPERSISTSQLITE:=$with_sqlite
526504
0 commit comments