Should be easy to port - for someone more experienced than m

Hi There,

I really need a tiny SMTP mail forwarder, and this one seems to be just
that.

The only problem is tat when I go to compile the one file that it is made up
of, it returns a bunch of errors, and I’m afraid that I’m not a C programmer
so I don;t really know what to do. If anyone can help me to get this tiny
mail forwarded to compile and run under RTP I would be truly grateful.

The source code can be downloaded from here;

http://www2.fastdial.net/~drysdam/software/software.html

Thanks heaps

Andrew

!
<(©¿©)>
~-~

Andrew <NOastuart@mira.netspam> wrote:
: Hi There,

: I really need a tiny SMTP mail forwarder, and this one seems to be just
: that.

: The only problem is tat when I go to compile the one file that it is made up
: of, it returns a bunch of errors, and I’m afraid that I’m not a C programmer
: so I don;t really know what to do. If anyone can help me to get this tiny
: mail forwarded to compile and run under RTP I would be truly grateful.

: The source code can be downloaded from here;

: http://www2.fastdial.net/~drysdam/software/software.html

All I needed to do to get it to compile was to add the
socket library. Change the makefile to have this as
its entries.

nto: nbsmtp.c
gcc -o nbsmtp nbsmtp.c -lsocket

linux: nbsmtp.c
gcc -o nbsmtp nbsmtp.c

solaris: nbsmtp.c
gcc -o nbsmtp nbsmtp.c -lxnet

Things should work just fine.

Thomas

Thomas (toe-mah) Fletcher QNX Software Systems
thomasf@qnx.com Neutrino Development Group
(613)-591-0931 http://www.qnx.com/~thomasf

i really appreciate your help thomas.

thanks heaps

andrew

“Thomas Fletcher” <thomasf@qnx.com> wrote in message
news:8rkfre$38a$1@nntp.qnx.com

Andrew <> NOastuart@mira.netspam> > wrote:
: Hi There,

: I really need a tiny SMTP mail forwarder, and this one seems to be just
: that.

: The only problem is tat when I go to compile the one file that it is
made up
: of, it returns a bunch of errors, and I’m afraid that I’m not a C
programmer
: so I don;t really know what to do. If anyone can help me to get this
tiny
: mail forwarded to compile and run under RTP I would be truly grateful.

: The source code can be downloaded from here;

: > http://www2.fastdial.net/~drysdam/software/software.html

All I needed to do to get it to compile was to add the
socket library. Change the makefile to have this as
its entries.

nto: nbsmtp.c
gcc -o nbsmtp nbsmtp.c -lsocket

linux: nbsmtp.c
gcc -o nbsmtp nbsmtp.c

solaris: nbsmtp.c
gcc -o nbsmtp nbsmtp.c -lxnet

Things should work just fine.

Thomas

Thomas (toe-mah) Fletcher QNX Software Systems
thomasf@qnx.com > Neutrino Development Group
(613)-591-0931 > http://www.qnx.com/~thomasf