I thought about this a bit more and I seem to remember thay my last laptop (dell d400) had an intel 855GM and it never worked with Xvesa and the confless/configure did not work with Xorg either.
If it helps, here's what I need with my new(er) laptop (dell d430) with an intel 945GM to get Xorg working with tc-2.4.1:
1. Load the Xorg-7.4, expat2, fontconfig, pixman, openssl-0.9.8h, graphics-2.6.29.1-tinycore and hwmon-2.6.29.1-tinycore extensions.
2. If you already "startx-ed", drop back to the prompt and: $ sudo rm /etc/sysconfig/Xserver
$ sudo echo "Xorg" > /etc/sysconfig/Xserver
3. load the modules the intel chipset needs (some are already loaded): $ sudo modprobe i915
$ sudo modprobe drm
$ lsmod
Module                  Size  Used by
i915                  101560  2 
drm                    84616  3 i915
i2c_algo_bit            2956  1 i915
i2c_i801                5280  0 
i2c_core                9980  4 i915,drm,i2c_algo_bit,i2c_i801
intel_agp              14984  1 
agpgart                15724  3 drm,intel_agp
4. Copy something like this to /etc/X11/xorg.conf: Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
	ModulePath   "/usr/local/lib/X11/modules"
	FontPath     "/usr/local/lib/X11/fonts/misc/"
	FontPath     "/usr/local/lib/X11/fonts/TTF/"
	FontPath     "/usr/local/lib/X11/fonts/75dpi/"
EndSection
Section "Module"
	Load  "glx"
	Load  "dri"
	Load  "extmod"
	Load  "dbe"
EndSection
Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"us"
EndSection
Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection
Section "Device"
	Identifier  "Card0"
	Driver      "intel"
	VendorName  "Intel Corporation"
	BoardName   "Integrated Graphics Chipset: Intel(R) 945GM"
	BusID       "PCI:0:2:0"
EndSection
Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes     "1280x800" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection
Section "DRI"
	Group "video"
	Mode 0666
EndSectionNot all of this is required, but just in case...
5. "startx"