From: James Vasile Newsgroups: comp.os.msdos.djgpp Subject: Making Internet Junkbuster Proxy Date: Sat, 23 Oct 1999 18:05:17 -0400 Organization: Columbia University Lines: 32 Message-ID: <6S4SOFrFVkMsZbGI0ekOCMSDgdhx@4ax.com> NNTP-Posting-Host: dialup-cc4-176.cc.columbia.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: newsmaster.cc.columbia.edu 940716266 29836 128.59.3.185 (23 Oct 1999 22:04:26 GMT) X-Complaints-To: postmaster AT columbia DOT edu NNTP-Posting-Date: 23 Oct 1999 22:04:26 GMT X-Newsreader: Forte Agent 1.6/32.525 X-No-Archive: yes To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com I'm having trouble compiling the code for the Internet Junkbuster Proxy, which I downloaded from http://Junkbusters.com Below are the errors I get when I try to make it. Some possible reasons it could be doing this are: I got wsock32.a from Makelib, and I'm not sure that's the same thing this code is looking for. Also, I didn't have "windows.h" among my libraries, so I cobbled one together by inserting definitions from sockets.h and Socket.h until I had covered all the undefined references djgpp was apparently hoping would be windows.h. I couldn't find definitions for the references below in any of my .h files. Any thoughts or suggestions would help. If anybody could tell me where to get a standard windows.h include, I'd appreciate that too. Thanks, -J ________ begin make error dump ________ gcc -I. -DREGEX -DSTDC_HEADERS -DHAVE_STRING -D_WIN32 -o junkbstr.exe jcc.o parsers.o filters.o loaders.o bind.o conn.o encode.o ssplit.o socks4.o acl.o gnu_regex.o win32.o c:/code/djgpp/lib/Mylib/wsock32.a c:/code/djgpp/lib/Mylib/wsock32n.a c:/code/djgpp/lib/Mylib/utils.a c:/code/djgpp/lib/Mylib/wsock32.a jcc.o(.text+0x2536):jcc.c: undefined reference to `_beginthread' jcc.o(.text+0x2600):jcc.c: undefined reference to `Sleep' win32.o(.text+0x48):win32.c: undefined reference to `SetProcessShutdownParameters' win32.o(.text+0x59):win32.c: undefined reference to `FreeConsole' win32.o(.text+0x65):win32.c: undefined reference to `MAKEWORD' make.exe: *** [junkbstr.exe] Error 1 ________ end make error dump ________