Evil Boris <[EMAIL PROTECTED]> writes: > I ran configure like this > > ./configure --enable-vm=no --enable-rmail=yes > > and in main Makefile I get: > > all: Makefile bbdb info rmail vm gnus > > shouldn't vm be omitted? Or perhaps I do not understand what "enable" > option is intended to accomplish. I did find a line in configure that > sets BBDB_VM to "vm" is the option is set, but no line that sets it to > the empty string otherwise. Is that a bug?
Perhaps replacing: =========== # Check whether --with-vm-dir or --without-vm-dir was given. if test "${with_vm_dir+set}" = set; then withval="$with_vm_dir" BBDB_VM=vm VMDIR="${withval}" fi; # Various MTAs # Default RMAIL & Gnus to on enable_gnus=gnus # Check whether --enable-vm or --disable-vm was given. if test "${enable_vm+set}" = set; then enableval="$enable_vm" BBDB_VM=vm fi; =============== by =========== # Check whether --with-vm-dir or --without-vm-dir was given. if test "${with_vm_dir+set}" = set; then withval="$with_vm_dir" BBDB_VM=vm VMDIR="${withval}" else BBDB_VM= fi; # Various MTAs # Default RMAIL & Gnus to on enable_gnus=gnus # Check whether --enable-vm or --disable-vm was given. if test "${enable_vm+set}" = set; then enableval="$enable_vm" BBDB_VM=vm else BBDB_VM= fi; =============== is a good idea? ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ bbdb-info@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bbdb-info BBDB Home Page: http://bbdb.sourceforge.net/