Hi list, I've built this module before in the past but a current svn checkout results in missing critical configuration files like autogen.sh: larry@aliquot:~$ svn checkout https://svn.apache.org/repos/asf/httpd/mod_mbox/trunk mod_mbox A mod_mbox/NOTICE A mod_mbox/LICENSE A mod_mbox/module-2.0 A mod_mbox/module-2.0/mbox_externals.h A mod_mbox/module-2.0/mbox_parse.c A mod_mbox/module-2.0/mod_mbox_cte.c A mod_mbox/module-2.0/config.m4.patch A mod_mbox/module-2.0/mbox_thread.h A mod_mbox/module-2.0/mod_mbox_file.c A mod_mbox/module-2.0/mbox_parse.h A mod_mbox/module-2.0/mod_mbox.c A mod_mbox/module-2.0/load_index.c A mod_mbox/module-2.0/mod_mbox.h A mod_mbox/module-2.0/mod_mbox_mime.c A mod_mbox/module-2.0/mbox_sort.c A mod_mbox/module-2.0/mbox_sort.h A mod_mbox/module-2.0/mod_mbox_sitemap.c A mod_mbox/module-2.0/mbox_cache.c A mod_mbox/module-2.0/mbox_externals.c A mod_mbox/module-2.0/mod_mbox_index.c A mod_mbox/module-2.0/mod_mbox_out.c A mod_mbox/module-2.0/mbox_thread.c A mod_mbox/module-2.0/mod-mbox-util.c A mod_mbox/module-2.0/mbox_cache.h A mod_mbox/STATUS A mod_mbox/SConstruct A mod_mbox/scripts A mod_mbox/scripts/update-index-monthly A mod_mbox/scripts/fetch-archive-list A mod_mbox/scripts/reindex-archive-all A mod_mbox/scripts/update-index A mod_mbox/scripts/rundig A mod_mbox/scripts/crontab A mod_mbox/scripts/copy-archive A mod_mbox/scripts/list-archive A mod_mbox/scripts/site-sitemap.py A mod_mbox/scripts/create-archive-list A mod_mbox/scripts/README A mod_mbox/scripts/make-archive-list-local A mod_mbox/scripts/site-index.py A mod_mbox/scripts/mbox-raw-rsync.sh A mod_mbox/scripts/create-msgid A mod_mbox/scripts/catchup-archive A mod_mbox/scripts/search-msgid A mod_mbox/scripts/mbox-archives A mod_mbox/scripts/create-index A mod_mbox/scripts/create-site-index A mod_mbox/scripts/create-msgid-all A mod_mbox/scripts/catchup-archive-all A mod_mbox/scripts/reindex-archive A mod_mbox/scripts/create-index-all A mod_mbox/CHANGES A mod_mbox/data A mod_mbox/data/archives.js A mod_mbox/data/asf_logo_simple.png A mod_mbox/data/asf_logo_wide.gif A mod_mbox/data/style.css A mod_mbox/README U mod_mbox Checked out revision 1439514. larry@aliquot:~$ cd mod_mbox larry@aliquot:~/mod_mbox$ ./auto_gen.sh -bash: ./auto_gen.sh: No such file or directory larry@aliquot:~/mod_mbox$ ls CHANGES LICENSE NOTICE README SConstruct STATUS data module-2.0 scripts larry@aliquot:~/mod_mbox$ Attempting to compile using an older Makefile & config files from an older branch results in other errors: (after running autogen.sh & ./configure + removing mod_mbox_search.c/* from Makefiles) [root@build mod_mbox]# make Making all in module-2.0 make[1]: Entering directory `/tmp/mod_mbox/module-2.0' make all-am make[2]: Entering directory `/tmp/mod_mbox/module-2.0' if /usr/lib64/apr-1/build/libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I. -Wall -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fno-strict-aliasing -pthread -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -I/usr/include/httpd -I/usr/include/apr-1 -I/usr/include/apr-1 -DNO_MBOX_SEARCH -g -O2 -MT mod_mbox_la-mod_mbox_cte.lo -MD -MP -MF ".deps/mod_mbox_la-mod_mbox_cte.Tpo" -c -o mod_mbox_la-mod_mbox_cte.lo `test -f 'mod_mbox_cte.c' || echo './'`mod_mbox_cte.c; \ then mv -f ".deps/mod_mbox_la-mod_mbox_cte.Tpo" ".deps/mod_mbox_la-mod_mbox_cte.Plo"; else rm -f ".deps/mod_mbox_la-mod_mbox_cte.Tpo"; exit 1; fi gcc -DHAVE_CONFIG_H -I. -I. -I. -Wall -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fno-strict-aliasing -pthread -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -I/usr/include/httpd -I/usr/include/apr-1 -I/usr/include/apr-1 -DNO_MBOX_SEARCH -g -O2 -MT mod_mbox_la-mod_mbox_cte.lo -MD -MP -MF .deps/mod_mbox_la-mod_mbox_cte.Tpo -c mod_mbox_cte.c -fPIC -DPIC -o .libs/mod_mbox_la-mod_mbox_cte.o mod_mbox_cte.c: In function 'mbox_cte_convert_to_utf8': mod_mbox_cte.c:264: error: 'APLOG_TRACE7' undeclared (first use in this function) mod_mbox_cte.c:264: error: (Each undeclared identifier is reported only once mod_mbox_cte.c:264: error: for each function it appears in.) mod_mbox_cte.c:264: error: 'ap_server_conf' undeclared (first use in this function) mod_mbox_cte.c:275: error: 'APLOG_TRACE6' undeclared (first use in this function) mod_mbox_cte.c: In function 'mbox_cte_decode_rfc2047': mod_mbox_cte.c:377: error: 'ap_server_conf' undeclared (first use in this function) make[2]: *** [mod_mbox_la-mod_mbox_cte.lo] Error 1 make[2]: Leaving directory `/tmp/mod_mbox/module-2.0' make[1]: *** [all] Error 2 make[1]: Leaving directory `/tmp/mod_mbox/module-2.0' make: *** [all-recursive] Error 1 [root@build mod_mbox]# Any help would be greatly appreciated! Thanks Larry --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx