LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 02-19-2007, 08:33 PM   #1
metalx1000
Member
 
Registered: Jun 2006
Distribution: Debian
Posts: 112

Rep: Reputation: 16
calibrate a touchscreen monitor


I just received a touchscreen monitor that I order Online.
The details can be found at http://www.mini-box.com/8-Desktop-TF...8&category=101

It clams it comes with Linux Drivers. But the only drivers on the CD are for Windows. Linux detects the screen and will respond to the touching of the screen but it does not seem to be calibrated. I move one way and the cursor moves another, which is the same thing it did in Windows XP before I calibrated it. You know click this 'X' now click this 'X', Like a Palm Pilot.

Anyway, I've tried it with my hard disc install of Mandriva 2007 and now I'm trying it with Knoppix 5.1. Same results with both. Is there a program out there for calibrating a touchscreen in Linux. Or, am I doing something wrong?

Thanks
 
Old 02-20-2007, 08:00 PM   #2
metalx1000
Member
 
Registered: Jun 2006
Distribution: Debian
Posts: 112

Original Poster
Rep: Reputation: 16
I'm trying to install touchkit drivers for the screen under Mandriva 2007. Touchkit is the driver that is installed under windows.

Currently with how linux detects the screen when I touch the screen in the center and move right the cursor moves down. When I move Left the cursor move UP. When I move up it goes left. When I move down it moves right.

When I download the Touchkit drivers for Mandriva 2007 and run the install as root I get the following.

Code:
(*) Extract files from [./touchkit.setup.sh] to [/tmp/touchkit]
(*) Start installer [/tmp/touchkit/setup]

=== TouchKit for Linux Installer ===

(Step 1) Check Packages Installed
[Common]
 make                          OK (make-3.81-1mdv2007.0)
 tcl                           OK (tcl-8.4.13-1mdk)
 tk                            OK (tk-8.4.13-1mdk)
[Required for Full Mode]
 gcc                           OK (gcc-4.1.1-3mdk)
 glibc-devel                   not found
 kernel-source                 OK (kernel-source-2.6.17.8mdv-1-1mdv2007.0)

(Step 2) Select Installation Mode
(Q) Which installation mode do you prefer?
 (1) Compact Mode, (only RS232 and PS/2) or
 (2) Full Mode (RS232, PS/2 and [USB])
I've tryed installing "glibc-devel" with the install manager and it goes thought the install process with out any errors and says it is installed, but next time I login to the install manager it show that it is not installed.

I am able to continue though. At this point I have tried both option 1 and 2 both with different errors.

I'm focusing in on option 2 since my touch screen connects through USB. After selecting 2 I get the following:
Code:
for n in include driver utility xf86drv diag usb; do                            \
                make -C $n || exit 1;           \
        done
make[1]: Entering directory `/tmp/touchkit/include'
tcl      ../utility/tcl2h.tcl configSTR.tcl > configSTR.h
tcl      ../utility/tcl2h.tcl configINT.tcl > configINT.h
tcl      ../utility/ini2tcl.tcl touch.ini > touch.tcl
make[1]: Leaving directory `/tmp/touchkit/include'
make[1]: Entering directory `/tmp/touchkit/driver'
gcc -o tpaneld tpaneld.c -g -O -Wall -I. -I../include
tpaneld.c:7:23: error: sys/types.h: No such file or directory
tpaneld.c:8:22: error: sys/stat.h: No such file or directory
tpaneld.c:9:22: error: sys/wait.h: No such file or directory
tpaneld.c:10:22: error: sys/time.h: No such file or directory
tpaneld.c:11:23: error: sys/ioctl.h: No such file or directory
tpaneld.c:12:21: error: termios.h: No such file or directory
tpaneld.c:13:20: error: unistd.h: No such file or directory
tpaneld.c:14:19: error: fcntl.h: No such file or directory
tpaneld.c:15:19: error: stdio.h: No such file or directory
tpaneld.c:16:20: error: stdlib.h: No such file or directory
tpaneld.c:17:20: error: signal.h: No such file or directory
tpaneld.c:18:19: error: paths.h: No such file or directory
tpaneld.c:19:19: error: ctype.h: No such file or directory
tpaneld.c:20:20: error: string.h: No such file or directory
tpaneld.c:21:19: error: errno.h: No such file or directory
In file included from ../include/config.h:6,
                 from ../include/tpanel.h:8,
                 from tpaneld.c:43:
../include/configSTR.h:74:36: warning: backslash and newline separated by space
In file included from tpaneld.c:44:
../include/configSTR.h:74:36: warning: backslash and newline separated by space
In file included from tpaneld.c:48:
../include/device.c: In function ‘Dev_SaveState’:
../include/device.c:29: warning: implicit declaration of function ‘tcgetattr’
../include/device.c: In function ‘Dev_RestoreState’:
../include/device.c:33: warning: implicit declaration of function ‘tcsetattr’
../include/device.c:33: error: ‘TCSAFLUSH’ undeclared (first use in this function)
../include/device.c:33: error: (Each undeclared identifier is reported only once
../include/device.c:33: error: for each function it appears in.)
../include/device.c: In function ‘Dev_SetBaud’:
../include/device.c:37: error: storage size of ‘tty’ isn’t known
../include/device.c:40: error: ‘IGNBRK’ undeclared (first use in this function)
../include/device.c:40: error: ‘IGNPAR’ undeclared (first use in this function)
../include/device.c:44: error: ‘VTIME’ undeclared (first use in this function)
../include/device.c:45: error: ‘VMIN’ undeclared (first use in this function)
../include/device.c:46: error: ‘CS8’ undeclared (first use in this function)
../include/device.c:46: error: ‘CREAD’ undeclared (first use in this function)
../include/device.c:46: error: ‘CLOCAL’ undeclared (first use in this function)
../include/device.c:49: error: ‘B19200’ undeclared (first use in this function)
../include/device.c:50: error: ‘B9600’ undeclared (first use in this function)
../include/device.c:51: error: ‘B4800’ undeclared (first use in this function)
../include/device.c:52: error: ‘B2400’ undeclared (first use in this function)
../include/device.c:56: error: ‘TCSAFLUSH’ undeclared (first use in this function)
../include/device.c:37: warning: unused variable ‘tty’
../include/device.c: In function ‘ReadFunc’:
../include/device.c:61: error: ‘fd_set’ undeclared (first use in this function)
../include/device.c:61: error: expected ‘;’ before ‘fset’
../include/device.c:62: error: storage size of ‘tv’ isn’t known
../include/device.c:65: warning: implicit declaration of function ‘FD_ZERO’
../include/device.c:65: error: ‘fset’ undeclared (first use in this function)
../include/device.c:66: warning: implicit declaration of function ‘FD_SET’
../include/device.c:70: warning: implicit declaration of function ‘select’
../include/device.c:70: error: ‘NULL’ undeclared (first use in this function)
../include/device.c:73: warning: implicit declaration of function ‘read’
../include/device.c:74: error: ‘errno’ undeclared (first use in this function)
../include/device.c:74: error: ‘ENODEV’ undeclared (first use in this function)
../include/device.c:75: warning: implicit declaration of function ‘perror’
../include/device.c:62: warning: unused variable ‘tv’
../include/device.c: In function ‘MilliSecDelay’:
../include/device.c:83: error: ‘fd_set’ undeclared (first use in this function)
../include/device.c:83: error: expected ‘;’ before ‘fset’
../include/device.c:84: error: storage size of ‘tv’ isn’t known
../include/device.c:86: warning: implicit declaration of function ‘pipe’
../include/device.c:87: error: ‘fset’ undeclared (first use in this function)
../include/device.c:91: error: ‘NULL’ undeclared (first use in this function)
../include/device.c:94: warning: implicit declaration of function ‘close’
../include/device.c:84: warning: unused variable ‘tv’
../include/device.c: In function ‘SendAndWait’:
../include/device.c:101: error: ‘fd_set’ undeclared (first use in this function)
../include/device.c:101: error: expected ‘;’ before ‘fset’
../include/device.c:102: error: storage size of ‘tv’ isn’t known
../include/device.c:109: error: ‘fset’ undeclared (first use in this function)
../include/device.c:121: warning: implicit declaration of function ‘write’
../include/device.c:122: error: ‘NULL’ undeclared (first use in this function)
../include/device.c:148: warning: pointer targets in initialization differ in signedness
../include/device.c:148: warning: implicit declaration of function ‘memcpy’
../include/device.c:148: warning: incompatible implicit declaration of built-in function ‘memcpy’
../include/device.c:153: warning: incompatible implicit declaration of built-in function ‘memcpy’
../include/device.c:102: warning: unused variable ‘tv’
../include/device.c: In function ‘LoopBackOK’:
../include/device.c:179: warning: implicit declaration of function ‘ioctl’
../include/device.c:179: error: ‘TIOCMGET’ undeclared (first use in this function)
../include/device.c:180: error: ‘TIOCM_CTS’ undeclared (first use in this function)
../include/device.c:180: error: ‘TIOCM_DSR’ undeclared (first use in this function)
../include/device.c:210: warning: implicit declaration of function ‘sprintf’
../include/device.c:210: warning: incompatible implicit declaration of built-in function ‘sprintf’
../include/device.c:210: warning: implicit declaration of function ‘getpid’
../include/device.c:211: warning: implicit declaration of function ‘readlink’
../include/device.c:213: warning: implicit declaration of function ‘strncmp’
In file included from tpaneld.c:50:
../include/eeprom.c: In function ‘_ReadEEPROM’:
../include/eeprom.c:59: warning: pointer targets in initialization differ in signedness
../include/eeprom.c: In function ‘LoadEEPROM’:
../include/eeprom.c:175: error: ‘FILE’ undeclared (first use in this function)
../include/eeprom.c:175: error: ‘fp’ undeclared (first use in this function)
../include/eeprom.c:178: warning: implicit declaration of function ‘fopen’
../include/eeprom.c:178: error: ‘NULL’ undeclared (first use in this function)
../include/eeprom.c:182: warning: implicit declaration of function ‘fread’
../include/eeprom.c:183: warning: implicit declaration of function ‘fclose’
../include/eeprom.c: In function ‘SaveEEPROM’:
../include/eeprom.c:194: error: ‘FILE’ undeclared (first use in this function)
../include/eeprom.c:194: error: ‘fp’ undeclared (first use in this function)
../include/eeprom.c:197: error: ‘NULL’ undeclared (first use in this function)
../include/eeprom.c:200: warning: implicit declaration of function ‘fwrite’
../include/eeprom.c:200: warning: incompatible implicit declaration of built-in function ‘fwrite’
In file included from tpaneld.c:51:
../include/filter.c: In function ‘OnZTransfer’:
../include/filter.c:61: warning: implicit declaration of function ‘abs’
tpaneld.c: At top level:
tpaneld.c:80: error: field ‘TrackingTime’ has incomplete type
tpaneld.c:104: error: field ‘prevTime’ has incomplete type
tpaneld.c:104: error: field ‘thisTime’ has incomplete type
tpaneld.c:117: error: ‘NULL’ undeclared here (not in a function)
tpaneld.c:124: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘fdSet’
tpaneld.c: In function ‘DumpSetting’:
tpaneld.c:140: warning: implicit declaration of function ‘printf’
tpaneld.c:140: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c: In function ‘GetRomFilename’:
tpaneld.c:200: warning: implicit declaration of function ‘strrchr’
tpaneld.c:200: warning: incompatible implicit declaration of built-in function ‘strrchr’
tpaneld.c:203: warning: incompatible implicit declaration of built-in function ‘sprintf’
tpaneld.c: In function ‘NewPanel’:
tpaneld.c:216: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:217: warning: implicit declaration of function ‘fflush’
tpaneld.c:217: error: ‘stdout’ undeclared (first use in this function)
tpaneld.c:219: warning: implicit declaration of function ‘open’
tpaneld.c:219: error: ‘O_RDWR’ undeclared (first use in this function)
tpaneld.c:244: warning: implicit declaration of function ‘malloc’
tpaneld.c:244: warning: incompatible implicit declaration of built-in function ‘malloc’
tpaneld.c:244: warning: implicit declaration of function ‘strlen’
tpaneld.c:244: warning: incompatible implicit declaration of built-in function ‘strlen’
tpaneld.c:250: warning: implicit declaration of function ‘strcpy’
tpaneld.c:250: warning: incompatible implicit declaration of built-in function ‘strcpy’
tpaneld.c: In function ‘SendRescanCmd’:
tpaneld.c:290: error: storage size of ‘filestat’ isn’t known
tpaneld.c:293: warning: implicit declaration of function ‘puts’
tpaneld.c:294: warning: implicit declaration of function ‘stat’
tpaneld.c:295: warning: implicit declaration of function ‘S_ISFIFO’
tpaneld.c:296: error: ‘O_RDWR’ undeclared (first use in this function)
tpaneld.c:296: error: ‘O_NDELAY’ undeclared (first use in this function)
tpaneld.c:290: warning: unused variable ‘filestat’
tpaneld.c: In function ‘DoRead’:
tpaneld.c:319: warning: implicit declaration of function ‘kill’
tpaneld.c:319: error: ‘SIGHUP’ undeclared (first use in this function)
tpaneld.c:341: warning: incompatible implicit declaration of built-in function ‘memcpy’
tpaneld.c:353: error: ‘errno’ undeclared (first use in this function)
tpaneld.c:353: error: ‘ENODEV’ undeclared (first use in this function)
tpaneld.c:355: warning: implicit declaration of function ‘FD_CLR’
tpaneld.c:355: error: ‘fdSet’ undeclared (first use in this function)
tpaneld.c:356: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c: In function ‘DataFilter’:
tpaneld.c:380: warning: incompatible implicit declaration of built-in function ‘memcpy’
tpaneld.c:385: warning: incompatible implicit declaration of built-in function ‘memcpy’
tpaneld.c: In function ‘IsTimeToRightButton’:
tpaneld.c:440: error: storage size of ‘timex’ isn’t known
tpaneld.c:454: warning: implicit declaration of function ‘gettimeofday’
tpaneld.c:440: warning: unused variable ‘timex’
tpaneld.c: In function ‘GenFrameWithMouseMode’:
tpaneld.c:561: warning: incompatible implicit declaration of built-in function ‘memcpy’
tpaneld.c: In function ‘CheckFrameForBeep’:
tpaneld.c:627: error: variable ‘delay’ has initializer but incomplete type
tpaneld.c:627: warning: excess elements in struct initializer
tpaneld.c:627: warning: (near initialization for ‘delay’)
tpaneld.c:627: warning: excess elements in struct initializer
tpaneld.c:627: warning: (near initialization for ‘delay’)
tpaneld.c:627: error: storage size of ‘delay’ isn’t known
tpaneld.c:627: warning: unused variable ‘delay’
tpaneld.c: In function ‘ReportFrame’:
tpaneld.c:696: error: variable ‘delay’ has initializer but incomplete type
tpaneld.c:696: warning: excess elements in struct initializer
tpaneld.c:696: warning: (near initialization for ‘delay’)
tpaneld.c:696: warning: excess elements in struct initializer
tpaneld.c:696: warning: (near initialization for ‘delay’)
tpaneld.c:696: error: storage size of ‘delay’ isn’t known
tpaneld.c:696: warning: unused variable ‘delay’
tpaneld.c: In function ‘SetLock’:
tpaneld.c:723: error: ‘_PATH_VARRUN’ undeclared (first use in this function)
tpaneld.c:723: error: expected ‘,’ or ‘;’ before string constant
tpaneld.c:724: error: ‘FILE’ undeclared (first use in this function)
tpaneld.c:724: error: ‘fp’ undeclared (first use in this function)
tpaneld.c:724: error: invalid operands to binary *
tpaneld.c:724: warning: statement with no effect
tpaneld.c:726: warning: implicit declaration of function ‘mkstemp’
tpaneld.c:728: warning: implicit declaration of function ‘fprintf’
tpaneld.c:728: warning: incompatible implicit declaration of built-in function ‘fprintf’
tpaneld.c:730: warning: implicit declaration of function ‘getuid’
tpaneld.c:731: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:732: warning: implicit declaration of function ‘exit’
tpaneld.c:732: warning: incompatible implicit declaration of built-in function ‘exit’
tpaneld.c:734: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:735: warning: incompatible implicit declaration of built-in function ‘exit’
tpaneld.c:738: warning: implicit declaration of function ‘unlink’
tpaneld.c:739: warning: implicit declaration of function ‘link’
tpaneld.c: In function ‘IsUnique’:
tpaneld.c:745: error: ‘FILE’ undeclared (first use in this function)
tpaneld.c:745: error: ‘fp’ undeclared (first use in this function)
tpaneld.c:745: error: invalid operands to binary *
tpaneld.c:745: warning: statement with no effect
tpaneld.c:749: warning: implicit declaration of function ‘fscanf’
tpaneld.c:749: warning: incompatible implicit declaration of built-in function ‘fscanf’
tpaneld.c:752: error: ‘errno’ undeclared (first use in this function)
tpaneld.c:752: error: ‘ESRCH’ undeclared (first use in this function)
tpaneld.c:755: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:756: warning: incompatible implicit declaration of built-in function ‘exit’
tpaneld.c: In function ‘CreatePipe’:
tpaneld.c:765: error: storage size of ‘filestat’ isn’t known
tpaneld.c:770: warning: implicit declaration of function ‘mkfifo’
tpaneld.c:773: warning: implicit declaration of function ‘chmod’
tpaneld.c:775: error: request for member ‘st_mode’ in something not a structure or union
tpaneld.c:776: error: ‘O_RDWR’ undeclared (first use in this function)
tpaneld.c:776: error: ‘O_NDELAY’ undeclared (first use in this function)
tpaneld.c:776: error: invalid operands to binary |
tpaneld.c:781: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:785: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:765: warning: unused variable ‘filestat’
tpaneld.c: In function ‘IsComment’:
tpaneld.c:836: warning: implicit declaration of function ‘isspace’
tpaneld.c: In function ‘ClosePort’:
tpaneld.c:847: warning: assignment from incompatible pointer type
tpaneld.c:848: warning: implicit declaration of function ‘strcmp’
tpaneld.c:850: error: ‘fdSet’ undeclared (first use in this function)
tpaneld.c: In function ‘UpdatePanel’:
tpaneld.c:862: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:863: error: ‘stdout’ undeclared (first use in this function)
tpaneld.c:868: warning: implicit declaration of function ‘free’
tpaneld.c:873: warning: return from incompatible pointer type
tpaneld.c:879: error: ‘fdSet’ undeclared (first use in this function)
tpaneld.c:885: warning: return from incompatible pointer type
tpaneld.c: At top level:
tpaneld.c:897: error: expected ‘)’ before ‘*’ token
tpaneld.c: In function ‘RClickToolKillOld’:
tpaneld.c:1033: error: ‘FILE’ undeclared (first use in this function)
tpaneld.c:1033: error: ‘fp’ undeclared (first use in this function)
tpaneld.c:1033: error: invalid operands to binary *
tpaneld.c:1033: warning: statement with no effect
tpaneld.c:1037: warning: incompatible implicit declaration of built-in function ‘fscanf’
tpaneld.c:1038: error: ‘SIGKILL’ undeclared (first use in this function)
tpaneld.c: In function ‘undertaker’:
tpaneld.c:1047: warning: implicit declaration of function ‘wait’
tpaneld.c: In function ‘RClickToolNew’:
tpaneld.c:1057: warning: implicit declaration of function ‘signal’
tpaneld.c:1057: error: ‘SIGCHLD’ undeclared (first use in this function)
tpaneld.c:1060: warning: implicit declaration of function ‘fork’
tpaneld.c:1082: warning: implicit declaration of function ‘dup2’
tpaneld.c:1085: warning: incompatible implicit declaration of built-in function ‘sprintf’
tpaneld.c:1085: warning: implicit declaration of function ‘getppid’
tpaneld.c:1087: warning: implicit declaration of function ‘execl’
tpaneld.c:1087: warning: incompatible implicit declaration of built-in function ‘execl’
tpaneld.c:1093: warning: missing sentinel in function call
tpaneld.c:1095: warning: incompatible implicit declaration of built-in function ‘exit’
tpaneld.c: In function ‘GetPanelSetting’:
tpaneld.c:1138: error: ‘FILE’ undeclared (first use in this function)
tpaneld.c:1138: error: ‘file’ undeclared (first use in this function)
tpaneld.c:1138: error: invalid operands to binary *
tpaneld.c:1138: warning: statement with no effect
tpaneld.c:1139: error: ‘pAutoRClick’ undeclared (first use in this function)
tpaneld.c:1139: error: invalid operands to binary *
tpaneld.c:1139: warning: statement with no effect
tpaneld.c:1147: warning: incompatible implicit declaration of built-in function ‘fprintf’
tpaneld.c:1148: warning: implicit declaration of function ‘rewind’
tpaneld.c:1151: warning: statement with no effect
tpaneld.c:1164: warning: implicit declaration of function ‘ReadDataFromCfgFile’
tpaneld.c:1181: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:1184: warning: comparison of distinct pointer types lacks a cast
tpaneld.c: In function ‘DaemonReset’:
tpaneld.c:1201: warning: incompatible implicit declaration of built-in function ‘exit’
tpaneld.c:1206: warning: implicit declaration of function ‘strncpy’
tpaneld.c:1206: warning: incompatible implicit declaration of built-in function ‘strncpy’
tpaneld.c: In function ‘tpd_killed’:
tpaneld.c:1214: error: ‘SIGHUP’ undeclared (first use in this function)
tpaneld.c:1217: error: ‘SIGUSR1’ undeclared (first use in this function)
tpaneld.c:1219: warning: incompatible implicit declaration of built-in function ‘exit’
tpaneld.c: In function ‘CreateDatPipe’:
tpaneld.c:1229: warning: incompatible implicit declaration of built-in function ‘sprintf’
tpaneld.c: In function ‘SharePort’:
tpaneld.c:1245: warning: assignment from incompatible pointer type
tpaneld.c:1251: warning: incompatible implicit declaration of built-in function ‘strncpy’
tpaneld.c: In function ‘SetEEPROM’:
tpaneld.c:1287: warning: incompatible implicit declaration of built-in function ‘strrchr’
tpaneld.c:1301: warning: incompatible implicit declaration of built-in function ‘strlen’
tpaneld.c:1311: warning: implicit declaration of function ‘sscanf’
tpaneld.c:1311: warning: incompatible implicit declaration of built-in function ‘sscanf’
tpaneld.c: In function ‘ProcessCommand’:
tpaneld.c:1341: warning: incompatible implicit declaration of built-in function ‘sscanf’
tpaneld.c:1346: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:1360: warning: incompatible implicit declaration of built-in function ‘exit’
tpaneld.c:1378: warning: implicit declaration of function ‘atoi’
tpaneld.c:1443: warning: implicit declaration of function ‘sleep’
tpaneld.c:1469: warning: incompatible implicit declaration of built-in function ‘sprintf’
tpaneld.c:1470: warning: incompatible implicit declaration of built-in function ‘strlen’
tpaneld.c: In function ‘ProcessShare’:
tpaneld.c:1509: warning: assignment from incompatible pointer type
tpaneld.c: In function ‘EndlessServiceLoop’:
tpaneld.c:1519: error: ‘fd_set’ undeclared (first use in this function)
tpaneld.c:1519: warning: statement with no effect
tpaneld.c:1519: error: expected ‘;’ before ‘fds’
tpaneld.c:1523: error: ‘fds’ undeclared (first use in this function)
tpaneld.c:1523: error: ‘fdSet’ undeclared (first use in this function)
tpaneld.c:1523: warning: statement with no effect
tpaneld.c:1526: warning: implicit declaration of function ‘FD_ISSET’
tpaneld.c: In function ‘InitMyFilter’:
tpaneld.c:1547: warning: incompatible implicit declaration of built-in function ‘sscanf’
tpaneld.c: In function ‘GetOpt’:
tpaneld.c:1559: warning: implicit declaration of function ‘getopt’
tpaneld.c: In function ‘main’:
tpaneld.c:1573: warning: implicit declaration of function ‘daemon’
tpaneld.c:1577: warning: incompatible implicit declaration of built-in function ‘sprintf’
tpaneld.c:1578: warning: implicit declaration of function ‘system’
tpaneld.c:1579: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:1583: error: ‘SIGKILL’ undeclared (first use in this function)
tpaneld.c:1584: warning: implicit declaration of function ‘waitpid’
tpaneld.c:1590: error: ‘SIGHUP’ undeclared (first use in this function)
tpaneld.c:1592: error: ‘fdSet’ undeclared (first use in this function)
tpaneld.c:1597: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:1603: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c:1609: warning: incompatible implicit declaration of built-in function ‘printf’
tpaneld.c: In function ‘DataFilter’:
tpaneld.c:392: warning: control reaches end of non-void function
tpaneld.c: In function ‘NewPanel’:
tpaneld.c:266: warning: control reaches end of non-void function
tpaneld.c: In function ‘SendAndWait’:
../include/device.c:168: warning: control reaches end of non-void function
make[1]: *** [tpaneld] Error 1
make[1]: Leaving directory `/tmp/touchkit/driver'
make: *** [all] Error 1
I Don't know if this is do to the "glibc-devel" not being found.

I'm lost at this point and it's driving me crazy. I've been working on this for 2 days now.

Please Help

Thanks
 
Old 02-21-2007, 08:53 PM   #3
metalx1000
Member
 
Registered: Jun 2006
Distribution: Debian
Posts: 112

Original Poster
Rep: Reputation: 16
Help? Anyone? I thought I'd get an answer by now. The Touch Screen works. I just need to calibrate it, I guess. From what I've read it may have to do with my xorg.conf or my XF86Config (which just seems to be a link to xorg.conf) But when I try to change something either nothing happen's when I restart my session of my session won't load (But I always make backups of my config files before I mass with them, so no worries)

Can some one just point me in the right direction?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
calibrate sleep stz Programming 6 11-08-2007 10:41 PM
Calibrate your mouse HERE. /bin/bash General 26 11-06-2006 05:48 AM
touchscreen monitor and linux angelo_maci Linux - Hardware 1 04-17-2006 01:25 PM
TouchScreen Monitor works on Slackware longnam Linux - Hardware 1 03-20-2006 12:44 PM
calibrate processor thermometer? frieza Linux - Laptop and Netbook 2 11-09-2003 08:41 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 02:31 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration