Suggestions of how to fix this? mkdir -p /build/work/dovecot-1.1-alpha1 cd /build/work/dovecot-1.1-alpha1 export LDFLAGS='-L/common/pkgs/sqlite-3.4.1.1/lib64 -R/common/pkgs/sqlite-3.4.1.1/lib64' export CPPFLAGS='-pipe -O2 -I/common/pkgs/sqlite-3.4.1.1/include' unset CDPATH make distclean ./configure --prefix=/common/pkgs/dovecot-1.1-alpha1 --disable-nls --disable-ipv6 --with-db --with-sql=plugin --with-sqlite --with-mysql --with-postgresql --with-ssl=openssl --with-ssldir=/etc/pki/dovecot --with-notify=inotify --with-ioloop=epoll --without-vpopmail --with-ldap=plugin --without-gssapi make ... ... ... mv -f .deps/auth-master-listener.Tpo .deps/auth-master-listener.Po make[3]: *** No rule to make target `auth-module.o', needed by `dovecot-auth'. Stop. make[3]: Leaving directory `/build/work/dovecot-1.1-alpha1/src/auth' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/build/work/dovecot-1.1-alpha1/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/build/work/dovecot-1.1-alpha1' make: *** [all] Error 2 exp=0, got ec=2, abort=1 -- Like feeling your best ever, all day, every day? Email join at RadicalHealth.com for the easy way.
On Tue, 2007-08-07 at 07:23 -0500, David Favor wrote:> Suggestions of how to fix this? > > mkdir -p /build/work/dovecot-1.1-alpha1 > cd /build/work/dovecot-1.1-alpha1 > export LDFLAGS='-L/common/pkgs/sqlite-3.4.1.1/lib64 -R/common/pkgs/sqlite-3.4.1.1/lib64' > export CPPFLAGS='-pipe -O2 -I/common/pkgs/sqlite-3.4.1.1/include' > unset CDPATH > make distclean > ./configure --prefix=/common/pkgs/dovecot-1.1-alpha1 --disable-nls --disable-ipv6 --with-db > --with-sql=plugin --with-sqlite --with-mysql --with-postgresql --with-ssl=openssl > --with-ssldir=/etc/pki/dovecot --with-notify=inotify --with-ioloop=epoll --without-vpopmail > --with-ldap=plugin --without-gssapi > make > ... ... ... > mv -f .deps/auth-master-listener.Tpo .deps/auth-master-listener.Po > make[3]: *** No rule to make target `auth-module.o', needed by `dovecot-auth'. Stop.I guess you're trying to build from hg and not the real alpha1 tarball? auth-module.c was just removed, so it sounds like you have a problem with updating dependencies.. Try deleting the whole source tree and starting from a new one. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://dovecot.org/pipermail/dovecot/attachments/20070807/c19281cc/attachment-0002.bin>
Timo Sirainen wrote:> On Tue, 2007-08-07 at 07:23 -0500, David Favor wrote: >> Suggestions of how to fix this? >> >> mkdir -p /build/work/dovecot-1.1-alpha1 >> cd /build/work/dovecot-1.1-alpha1 >> export LDFLAGS='-L/common/pkgs/sqlite-3.4.1.1/lib64 -R/common/pkgs/sqlite-3.4.1.1/lib64' >> export CPPFLAGS='-pipe -O2 -I/common/pkgs/sqlite-3.4.1.1/include' >> unset CDPATH >> make distclean >> ./configure --prefix=/common/pkgs/dovecot-1.1-alpha1 --disable-nls --disable-ipv6 --with-db >> --with-sql=plugin --with-sqlite --with-mysql --with-postgresql --with-ssl=openssl >> --with-ssldir=/etc/pki/dovecot --with-notify=inotify --with-ioloop=epoll --without-vpopmail >> --with-ldap=plugin --without-gssapi >> make >> ... ... ... >> mv -f .deps/auth-master-listener.Tpo .deps/auth-master-listener.Po >> make[3]: *** No rule to make target `auth-module.o', needed by `dovecot-auth'. Stop. > > I guess you're trying to build from hg and not the real alpha1 tarball? > auth-module.c was just removed, so it sounds like you have a problem > with updating dependencies.. Try deleting the whole source tree and > starting from a new one. >Yes. Remove tree + hg clone http://hg.dovecot.org/dovecot + ./autogen.sh + build works now. -- Like feeling your best ever, all day, every day? Email join at RadicalHealth.com for the easy way.