Post New Topic  Post A Reply
my profile | register | search | faq | forum home
  next oldest topic   next newest topic
» MacOSX - forked.net   » Compile Problems   » Pleeeease Help a desperate Mac OS X user

UBBFriend: Email this page to someone!    
Author Topic: Pleeeease Help a desperate Mac OS X user
zeus
Junior Member
Member # 371

posted April 04, 2002 06:21 AM      Profile for zeus   Email zeus   Send New Private Message      Edit/Delete Post  Reply With Quote 
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.gz

but 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


Posts: 9 | From: Italy (on a chair) | Registered: Mar 2002  |  IP: Logged
willy wonka
Member
Member # 32

posted April 04, 2002 08:49 AM      Profile for willy wonka   Author's Homepage        Edit/Delete Post  Reply With Quote 
have you tried:
./configure
make
sudo make install
??

--------------------

--

-willy
"Freedom will henceforth be compulsory." -Random Party Manifesto


Posts: 92 | Registered: Aug 2001  |  IP: Logged
zeus
Junior Member
Member # 371

posted April 05, 2002 06:35 AM      Profile for zeus   Email zeus   Send New Private Message      Edit/Delete Post  Reply With Quote 
Yes, but unfortunatly it doesn't work :-(((

This is what terminal says:

quote:
[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] %


Posts: 9 | From: Italy (on a chair) | Registered: Mar 2002  |  IP: Logged
willy wonka
Member
Member # 32

posted April 10, 2002 10:33 AM      Profile for willy wonka   Author's Homepage        Edit/Delete Post  Reply With Quote 
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.gz

i'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.

--------------------

--

-willy
"Freedom will henceforth be compulsory." -Random Party Manifesto


Posts: 92 | Registered: Aug 2001  |  IP: Logged
apex
Administrator
Member # 1

posted April 10, 2002 11:47 AM      Profile for apex   Email apex   Send New Private Message      Edit/Delete Post  Reply With Quote 
In the Makefile:
Add
code:
-Dsocklen_t=int -fPIC

to CFLAGS,
code:
-fno-common -dynamiclib

to LDFLAGS, and
code:
-lm

to LINUX_LDLIBS.

It should look like this:

code:

# Makefile for transconnect

CFLAGS = -Wall -Dsocklen_t=int -fPIC
LDFLAGS = -shared -fno-common -dynamiclib
LINUX_LDLIBS = -ldl -lm


[ April 10, 2002: Message edited by: apex ]


Posts: 307 | From: Alaska | Registered: Aug 2001  |  IP: Logged
willy wonka
Member
Member # 32

posted April 11, 2002 07:26 AM      Profile for willy wonka   Author's Homepage        Edit/Delete Post  Reply With Quote 
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

--------------------

--

-willy
"Freedom will henceforth be compulsory." -Random Party Manifesto


Posts: 92 | Registered: Aug 2001  |  IP: Logged
zeus
Junior Member
Member # 371

posted April 12, 2002 07:12 AM      Profile for zeus   Email zeus   Send New Private Message      Edit/Delete Post  Reply With Quote 
still havin' problems ....

quote:
[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 !!!


Posts: 9 | From: Italy (on a chair) | Registered: Mar 2002  |  IP: Logged
willy wonka
Member
Member # 32

posted April 15, 2002 07:02 AM      Profile for willy wonka   Author's Homepage        Edit/Delete Post  Reply With Quote 
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.

--------------------

--

-willy
"Freedom will henceforth be compulsory." -Random Party Manifesto


Posts: 92 | Registered: Aug 2001  |  IP: Logged

All times are Pacific Time  

Post New Topic  Post A Reply Close Topic    Move Topic    Delete Topic next oldest topic   next newest topic
Hop To:

Contact Us | macosx.forked.net

Powered by Infopop Corporation
Ultimate Bulletin BoardTM 6.1.0.2