mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
21 lines
536 B
Diff
21 lines
536 B
Diff
--- libx86/lrmi.c 2008-09-06 12:24:36.070136428 +0200
|
|
+++ libx86/lrmi.c 2008-09-06 12:28:10.584287458 +0200
|
|
@@ -56,5 +56,17 @@
|
|
|
|
#if defined(__linux__)
|
|
+#ifndef TF_MASK
|
|
+#define TF_MASK X86_EFLAGS_TF
|
|
+#endif
|
|
+#ifndef IF_MASK
|
|
+#define IF_MASK X86_EFLAGS_IF
|
|
+#endif
|
|
+#ifndef IOPL_MASK
|
|
+#define IOPL_MASK X86_EFLAGS_IOPL
|
|
+#endif
|
|
+#ifndef VIF_MASK
|
|
+#define VIF_MASK X86_EFLAGS_VIF
|
|
+#endif
|
|
#define DEFAULT_VM86_FLAGS (IF_MASK | IOPL_MASK)
|
|
#elif defined(__NetBSD__) || defined(__FreeBSD__)
|
|
#define DEFAULT_VM86_FLAGS (PSL_I | PSL_IOPL)
|