On Sat, Jan 7, 2017 at 1:09 AM, Yann Ylavic <[email protected]> wrote: > > On Fri, Jan 6, 2017 at 10:00 PM, Jacob Champion <[email protected]> wrote: >> >> To use it after you've synced up: >> >> ./buildconf >> ./configure <options> --with-test-suite=/absolute/path/to/apache/test >> make >> make check > > Does not work for me currently:
> $ make check > Installing header files > mv: '/home/yle/src/apache/httpd/trunk/check/conf/httpd.conf' and > '/home/yle/src/apache/httpd/trunk/check/conf/httpd.conf' are the same > file > mv: '/home/yle/src/apache/httpd/trunk/check/conf/httpd.conf' and > '/home/yle/src/apache/httpd/trunk/check/conf/httpd.conf' are the same > file > cd "" && \ > perl Makefile.PL -apxs "/home/yle/src/apache/httpd/trunk/check/apxs" && \ > ./t/TEST -clean && \ > ./t/TEST -config && \ > ./t/TEST > Can't open perl script "Makefile.PL": No such file or directory Scratch that, I missed the ./buildconf, thus my ./configure was outdated... Some further issue, though: httpd: Syntax error on line 66 of /home/yle/src/apache/httpd/trunk/check/conf/httpd.conf: LoadModule takes two arguments, a module name and the name of a shared object file to load it from httpd: abnormal exit 1 Use of uninitialized value $file in substitution (s///) at /home/yle/src/apache/asf/httpd/test/framework/trunk/Apache-Test/lib/Apache/TestConfigParse.pm line 95. Makefile:417: recipe for target 'check' failed And at "line 66 of /home/yle/src/apache/httpd/trunk/check/conf/httpd.conf": LoadModule mpm_event_module (=> modules/mod_mpm_event.so missing) $ cat config.nice #! /bin/sh # # Created by configure CFLAGS="-std=c89 -g -O0 -Wall -Wunused -fno-strict-aliasing"; export CFLAGS "./configure" \ "CFLAGS=-std=c89 -g -O0 -Wall -Wunused -fno-strict-aliasing" \ "apr_lock_method=USE_PROC_PTHREAD_SERIALIZE" \ "--prefix=/home/yle/src/apache/install/httpd/trunk" \ "--enable-maintainer-mode" \ "--enable-nonportable-atomics=yes" \ "--enable-posix-shm" \ "--enable-so" \ "--enable-cgi" \ "--enable-ssl" \ "--enable-http2" \ "--enable-proxy_http2" \ "--enable-session" \ "--enable-session_crypto" \ "--enable-authnz_fcgi" \ "--enable-mods-shared=reallyall" \ "--enable-mpms-shared=all" \ "--with-mpm=event" \ "--with-included-apr" \ "--with-test-suite=/home/yle/src/apache/asf/httpd/test/framework/trunk" \ "--with-ssl=/usr" \ "--with-openssl=/usr" \ "--with-nghttp2=/usr" \ "--with-libxml2" \ "--with-crypto" \ "$@"
