]> git.pld-linux.org Git - packages/kde4-kdelibs.git/commitdiff
build fix for i686 (meinproc4 still hangs though)
authorJan Palus <atler@pld-linux.org>
Tue, 18 Jan 2022 19:27:21 +0000 (20:27 +0100)
committerJan Palus <atler@pld-linux.org>
Tue, 18 Jan 2022 19:27:21 +0000 (20:27 +0100)
hasKey on DayPeriod%i in klocale_kde.cpp still causes infinite loops.

adding workaround doesn't help much since onto2vocabularyclass loops
infinitely on reading desktop file (unrelated to qmap).

it's time to admit qt4 is broken beyond repair.

build.patch

index 19c45b121cdf1fbde1170cc140c64f0b9b01b73a..2032cb3add3b280cb84e0dec206271dcbb4cb197 100644 (file)
          d->m_terminaldirty = false; // slotTerminalToggled changed it
      }
  }
+--- kdelibs-4.14.38/kdecore/io/kfilesystemtype_p.cpp.orig      2017-11-05 02:51:22.000000000 +0100
++++ kdelibs-4.14.38/kdecore/io/kfilesystemtype_p.cpp   2022-01-18 18:36:10.743711677 +0100
+@@ -104,10 +104,9 @@
+         return KFileSystemType::Smb;
+     case MSDOS_SUPER_MAGIC:
+         return KFileSystemType::Fat;
+-    case RAMFS_MAGIC:
+-        return KFileSystemType::Ramfs;
+     default:
+-        return KFileSystemType::Other;
++      if (buf.f_type == RAMFS_MAGIC) return KFileSystemType::Ramfs;
++      else return KFileSystemType::Other;
+     }
+ }
This page took 0.106583 seconds and 4 git commands to generate.