> is there any rules when compiling on linux. does botman have a faq or > something?
You make things simplest for yourself by not using any C++ streams (no cout or cerr output). Also make sure you aren't using Windows API stuff (like time functions, etc.). If you aren't sure whether functions are available under Unix/Linux, just use the man pages on Linux to see if a function exists (i.e. "man strcpy"). Take a look at the Makefile for building the SDK on Linux as an example of compiler switches and linker options when building the Linux shared library. There is no "tutorial" for building on Linux other than looking at the Makefile. Jeffrey "botman" Broome _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

