Had to remove HAVE_TZNAME from config.h
Had to remove HAVE_FTIME from config.h
Have to use Jake's fdlibm port so -lm works in Modules/Makefile (and so
       hypot() will work in the mathmodule)
Had to add WITH_THREAD to config.h; re-running configure with --with-thread
       seems to have not included it...
Had to add thread.o to OBJS= in Python/Makefile
Had to remove HAVE_DLOPEN from config.h
Had to remove HAVE_NICE from config.h
Had to add -nodup to LDFLAGS in Modules/Makefile to prevent painful warnings
Had to remove HAVE_FLOCK from config.h
Had to remove HAVE_SETPGRP from config.h
Had to remove HAVE_PLOCK from config.h
Had to change "ln" to "ln -s" in Makefile for "make install" to work
Changes in Modules/Makefile for shared lib version:
	- Added -lnet -lbe to LIBS
	- Added -lroot -ldll to LIBC
	- Added -f beos.exp to LINKFORSHARED
	- Changed ../python: link target to:
		$(LINKCC) $(LDFLAGS) $(OPT) $(LINKFORSHARED) $(ADDOBJS) \
			$(MYLIBS) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python   \
			-map python.xMAP
	- Changed LDSHARED to mwcc -xms -export all $(LDFLAGS) $(LIBC) ../python
Changed "install-sh -c" to "install" in Makefile to speed up "make install"
