]> mj.ucw.cz Git - libucw.git/blobdiff - build/check-customs
Merged with v3.8
[libucw.git] / build / check-customs
index 01d7a9a382fdae5a6700d6050f3e7a6542c764e0..b22975055c17e92e220fb872765116b2c6c61baf 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 # A script for testing compilability of different configurations
-# (c) 2004--2005 Martin Mares <mj@ucw.cz>
+# (c) 2004--2006 Martin Mares <mj@ucw.cz>
 
 set -e
 
@@ -15,11 +15,11 @@ function try
 
        (
                cd $TDIR
-               if ! ../../configure $@ CC=gcc-3.0 >>log 2>&1 ; then
+               if ! ../../configure $@ CC=gcc-3.4 >>log 2>&1 ; then
                        echo "  CANNOT CONFIGURE"
                        exit 1
                fi
-               if ! make NEWCONFIG=1 >>log 2>&1 ; then
+               if ! make >>log 2>&1 ; then
                        echo "  FAILED"
                        exit 1
                fi
@@ -36,11 +36,12 @@ else
        try bare -CONFIG_INDEXER -CONFIG_SEARCH                                         # absolutely stripped version
        try bare                                                                        # the bare version
        try debug/matcher-test                                                          # bare + custom stats and matchers
-       try centrum/cz ROLE=search                                                      # various Centrum.cz configurations
+       try centrum/cz ROLE=search1-x                                                   # various Centrum.cz configurations
        try centrum/cz ROLE=indexer
        try centrum/cz ROLE=gather
-       try centrum/cz ROLE=reap
-       try centrum/cz ROLE=all
+       try centrum/cz ROLE=reap+watson
+       try centrum/cz ROLE=all CONFIG_PARTMAP_IS_MMAP
+       try centrum/pl ROLE=all
        try debug CONFIG_SHARED                                                         # debugging configuration with shared libs
        try debug                                                                       # debugging configuration
 fi