Pleeeease Help a desperate Mac OS X user
Posted:
Thu Apr 04, 2002 2:21 pm
by zeus
Hi all,
I'm in serious trouble ...
recently my university has set up a very restrictive proxy (only 8080 port is open so i cannot connet to my pop or smtp servers) ... now lookin' around the net probably i've found what i'm lookin' for,
http://prdownloads.sourceforge.net/transconnect/transconnect-1.3-Beta.tar.gzbut now i'need your help please ....
is there anyone can help me to complile (and configure) this program by posting instructions step by step ???
Millions of thanks to anyone may help me !!
(any type of suggestions of already ported similar software will be really appreciated)
Thanks again
Re: Pleeeease Help a desperate Mac OS X user
Posted:
Thu Apr 04, 2002 4:49 pm
by orange1
have you tried:
./configure
make
sudo make install
??
Re: Pleeeease Help a desperate Mac OS X user
Posted:
Fri Apr 05, 2002 2:35 pm
by zeus
Yes, but unfortunatly it doesn't work
((
This is what terminal says:
[root@augustus /Volumes/FireWire/transconnect-1.3-Beta] % ./configure
./configure: Command not found.
[root@augustus /Volumes/FireWire/transconnect-1.3-Beta] % make
cc -Wall -shared -ldl -o tconn.so tconn.c
tconn.c:53: header file 'dlfcn.h' not found
tconn.c:118: undefined type, found `socklen_t'
cpp-precomp: warning: errors during smart preprocessing, retrying in basic mode
make: *** [tconn.so] Error 1
[root@augustus /Volumes/FireWire/transconnect-1.3-Beta] % make install
make: `install' is up to date.
[root@augustus /Volumes/FireWire/transconnect-1.3-Beta] % ./install
./install: Permission denied.
[root@augustus /Volumes/FireWire/transconnect-1.3-Beta] % ls -la
total 192
drwxr-xr-x 14 zeus unknown 432 Apr 5 16:26 .
drwxrwxrwx 29 zeus unknown 942 Apr 5 16:14 ..
-rw-rw-rw- 1 zeus unknown 6148 Apr 5 16:26 .DS_Store
-rw-r--r-- 1 zeus unknown 66 Aug 28 2001 AUTHORS
-rw------- 1 zeus unknown 18009 Aug 28 2001 COPYING
-rw-r--r-- 1 zeus unknown 3043 Feb 6 08:48 Changelog
-rw-r--r-- 1 zeus unknown 5158 Feb 6 10:05 INSTALL
-rw-r--r-- 1 zeus unknown 1026 Feb 6 08:45 Makefile
-rw-r--r-- 1 zeus unknown 1433 Oct 15 10:49 README
-rw-r--r-- 1 zeus unknown 1706 Feb 6 10:05 TROUBLESHOOT
-rw-r--r-- 1 zeus unknown 186 Sep 29 2001 libcpath.h
-rw-r--r-- 1 zeus unknown 24874 Feb 6 09:50 tconn.c
-rw-r--r-- 1 zeus unknown 361 Oct 15 10:53 tconn.cat
-rw-r--r-- 1 zeus unknown 1230 Oct 15 10:54 tconn.conf
[root@augustus /Volumes/FireWire/transconnect-1.3-Beta] %
Re: Pleeeease Help a desperate Mac OS X user
Posted:
Wed Apr 10, 2002 5:33 pm
by orange1
i think you need tcl.
tcl.sourceforge.net
or, more specifically, one of these two:
http://prdownloads.sourceforge.net/tcl/TclTk_8.3.4_FullInstall.bin http://prdownloads.sourceforge.net/tcl/MacOSXTk8.4a4-2.tar.gzi'm not sure which. my first thought would be the second, but it just says tk, no tcl. but then again, that's just a file name.
Re: Pleeeease Help a desperate Mac OS X user
Posted:
Wed Apr 10, 2002 6:47 pm
by apex
In the Makefile:
Add <blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>-Dsocklen_t=int -fPIC</pre>[/quote] to CFLAGS, <blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>-fno-common -dynamiclib</pre>[/quote] to LDFLAGS, and <blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>-lm</pre>[/quote] to LINUX_LDLIBS.
It should look like this:
<blockquote><font size="1" face="Verdana, Helvetica, sans-serif">code:</font><hr><pre>
# Makefile for transconnect
CFLAGS = -Wall -Dsocklen_t=int -fPIC
LDFLAGS = -shared -fno-common -dynamiclib
LINUX_LDLIBS = -ldl -lm
</pre>[/quote]
[ April 10, 2002: Message edited by: apex ]</p>
Re: Pleeeease Help a desperate Mac OS X user
Posted:
Thu Apr 11, 2002 2:26 pm
by orange1
i also found this:
ftp://afni.nimh.nih.gov/AFNI/src/dlcompat/ includes your head, and a wee library that ettercap can use for plugins. or so i'm led to believe
Re: Pleeeease Help a desperate Mac OS X user
Posted:
Fri Apr 12, 2002 2:12 pm
by zeus
still havin' problems ....
[root@augustus /Volumes/FireWire/transconnect-1.2] % make
cc -Wall -Dsocklen_t=int -fPIC -shared -fno-common -dynamiclib -ldl -lm -o tconn.so tconn.c
tconn.c:53: header file 'dlfcn.h' not found
cpp-precomp: warning: errors during smart preprocessing, retrying in basic mode
make: *** [tconn.so] Error 1
[root@augustus /Volumes/FireWire/transconnect-1.2] %
is there anyone can tell me how to use willy wonka's tips ??
thanks a lot for support !!!
Re: Pleeeease Help a desperate Mac OS X user
Posted:
Mon Apr 15, 2002 2:02 pm
by orange1
get all the files from that ftp site i posted.
in your terminal, cd to the directory where you downloaded em. type 'make', and then 'sudo make install'
that'll install that library and the header file you're having trouble finding.