Hi Jason,
Thank you very much for your prompt and helpful reply ! The method on the page you pointed worked fine.
What I did was following.
I went to http://w1.894.telia.com/~u89404340/touchpad/index.html and downloaded the latest synaptics module for XF86/X.org, i.e. synaptics-0.13.2.tar.bz2 .
Then I extracted it and did
make; sudo make install
After that, I tweaked my /etc/X11/xorg.conf and restarted X. Now I can use tapping and even edge scrolling ! Following is an excerpt from my xorg.conf FYI.
Thank you again, Yoichi.
--------------------xorg.conf-----------------------
Section "ServerLayout" Identifier "single head configuration" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "TouchPad" "AlwaysCore" InputDevice "Keyboard0" "CoreKeyboard" EndSection -----snip--------- Section "Module" -----snip--------- Load "synaptics" EndSection -----snip--------- Section "InputDevice" Identifier "TouchPad" Driver "synaptics" Option "Protocol" "auto-dev" Option "Device" "/dev/psaux" Option "LeftEdge" "1700" Option "RightEdge" "5300" Option "TopEdge" "1700" Option "BottomEdge" "4200" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "VertScrollDelta" "100" Option "MinSpeed" "0.06" Option "MaxSpeed" "0.12" Option "AccelFactor" "0.0010" Option "SHMConfig" "on" EndSection