This patch adds a guard around the usage of SYS_uuidsys, which is
not available on (at least) Solaris 10 and OpenIndiana.
gdb/ChangeLog:
PR gdb/22950
* proc-events.c (init_syscall_table): Guard usage os SYS_uuidsys
with #ifdef.
+2018-04-29 Fabian Groffen <grobian@gentoo.org>
+
+ PR gdb/22950
+ * proc-events.c (init_syscall_table): Guard usage os SYS_uuidsys
+ with #ifdef.
+
2018-04-29 John Reiser <jreiser@BitWagon.com>
PR build/22873
syscall_table[SYS_utssys] = "utssys";
syscall_table[SYS_uucopy] = "uucopy";
syscall_table[SYS_uucopystr] = "uucopystr";
+#ifdef SYS_uuidsys
syscall_table[SYS_uuidsys] = "uuidsys";
+#endif
#ifdef SYS_va_mask
syscall_table[SYS_va_mask] = "va_mask";
#endif