After much digging the last time a new version came out and I had the same problem I found this method on the net to rebuild an rpm and then install it.
rpm --install whatever.src.rpm cd /usr/src/redhat rpm -ba SPECS/whatever.spec rpm --install RPMS/i386/whatever.i386.rpm The above works good for a new install, but for an upgrade here's what I just did and it seemed to work ok. Only change from the above is the -U for upgrade on the third rpm command. rpm --install http://www.xmailserver.org/xmail-1.2-1.src.rpm cd /usr/src/redhat rpm -ba SPECS/xmail.spec rpm -U RPMS/i386/xmail-1.2-1.i386.rpm For me xmail didn't restart so I did the following mkdir /var/MailRoot/cmdaliases needed for V1.2 /etc/rc.d/init.d/xmail start Bill ps. doc guys this may be good to include. >---------- >From: Davide Libenzi[SMTP:[EMAIL PROTECTED]] >Sent: Thursday, November 15, 2001 2:14 PM >To: XMail mailing list >Subject: [xmail] Re: Xmail 1.2 RPM > >On Thu, 15 Nov 2001, Peter Lindeman wrote: > >> Hello, >> >> Tonight I tried to install XMail 1.2 (upgrade from 1.1) but it failed: >> >> Install failed : >> error: failed dependencies: >> libgcc_s.so.1 is needed by xmail-1.2-1 >> libstdc++.so.3 is needed by xmail-1.2-1 >> libgcc_s.so.1(GLIBC_2.0) is needed by xmail-1.2-1 >> >> Is XMail build with newer compiler orso ? Do I have to build Xmail >> myself or should I update something from glibc ? I am running Mandrake >> 8.0 > >I built 1.2 RPM with RH7.2 and gcc 3.0.2 >It's better to build it by yourself by using : > ># make -f Makefile.lnx > >and then copy the executables : > >XMail >XMCrypt >CtrlClnt >MkUsers >sendmail > >inside $MAIL_ROOT/bin >Stop XMail before copying bins > > > > >- Davide > > > > - To unsubscribe from this list: send the line "unsubscribe xmail" in the body of a message to [EMAIL PROTECTED] For general help: send the line "help" in the body of a message to [EMAIL PROTECTED]
