View Single Post
Old 04-25-2002, 07:30 AM   #2
Koryon
Member
 
Join Date: Apr 2002
Location: Canada
Posts: 50
Koryon is on a distinguished road
Send a message via ICQ to Koryon Send a message via MSN to Koryon
As for crypt.. try putting -DNOCRYPT in your makefile (I forget what SMAUG's makefile is like but look for C_FLAGS)

What system are you using anyhow? As far as I know crypt is now distrubted with all linux os's and even with cygwin.. you should also try to put -lcrypt in the makefile first, in L_FLAGS if it's there.

As for the RENAME problem, do a search for where it is declared (look for a function prototype or an extern, probably in a .h file).

Sorry, I don't like confusion... when the files are compiled they are turned into object code (the compile step makes them .o files). The .o files are then linked together to make the binary, so the make is puking on the linking stage.

Good luck
Koryon is offline   Reply With Quote