Fixed build on older Raspberry Pi environments
diff --git a/src/core/linux/SDL_evdev.c b/src/core/linux/SDL_evdev.c
index f4aa0e8..4761f3e 100644
--- a/src/core/linux/SDL_evdev.c
+++ b/src/core/linux/SDL_evdev.c
@@ -675,6 +675,7 @@
 static void
 SDL_EVDEV_sync_device(SDL_evdevlist_item *item) 
 {
+#ifdef EVIOCGMTSLOTS
     int i, ret;
     struct input_absinfo abs_info;
     /*
@@ -698,7 +699,6 @@
     
     mt_req_code = SDL_calloc(1, mt_req_size);
     if (mt_req_code == NULL) {
-        SDL_Log("Failed to sync device");
         return;
     }
     
@@ -708,7 +708,6 @@
     ret = ioctl(item->fd, EVIOCGMTSLOTS(mt_req_size), mt_req_code);
     if (ret < 0) {
         SDL_free(mt_req_code);
-        SDL_Log("Failed to sync device");
         return;
     }
     for(i = 0; i < item->touchscreen_data->max_slots; i++) {
@@ -736,7 +735,6 @@
     ret = ioctl(item->fd, EVIOCGMTSLOTS(mt_req_size), mt_req_code);
     if (ret < 0) {
         SDL_free(mt_req_code);
-        SDL_Log("Failed to sync device");
         return;
     }
     for(i = 0; i < item->touchscreen_data->max_slots; i++) {
@@ -755,7 +753,6 @@
     ret = ioctl(item->fd, EVIOCGMTSLOTS(mt_req_size), mt_req_code);
     if (ret < 0) {
         SDL_free(mt_req_code);
-        SDL_Log("Failed to sync device");
         return;
     }
     for(i = 0; i < item->touchscreen_data->max_slots; i++) {
@@ -773,12 +770,13 @@
     ret = ioctl(item->fd, EVIOCGABS(ABS_MT_SLOT), &abs_info);
     if (ret < 0) {
         SDL_free(mt_req_code);
-        SDL_Log("Failed to sync device");
         return;
     }
     item->touchscreen_data->current_slot = abs_info.value;
     
     SDL_free(mt_req_code);
+
+#endif /* EVIOCGMTSLOTS */
 }
 
 #if SDL_USE_LIBUDEV