Lorenz Brun | 0de1893 | 2021-03-11 00:36:48 +0100 | [diff] [blame^] | 1 | Copyright 2020 The Monogon Project Authors. |
| 2 | |
| 3 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | you may not use this file except in compliance with the License. |
| 5 | You may obtain a copy of the License at |
| 6 | |
| 7 | http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | |
| 9 | Unless required by applicable law or agreed to in writing, software |
| 10 | distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | See the License for the specific language governing permissions and |
| 13 | limitations under the License. |
| 14 | |
| 15 | |
| 16 | From 84404c50db8db114834d51be8cd5e706dcdb02ad Mon Sep 17 00:00:00 2001 |
| 17 | From: Lorenz Brun <lorenz@nexantic.com> |
| 18 | Date: Tue, 9 Mar 2021 13:35:42 +0100 |
| 19 | Subject: [PATCH] bazel_cc_fix patch |
| 20 | |
| 21 | --- |
| 22 | src/queue.c | 8 ++++---- |
| 23 | src/register.c | 6 +++--- |
| 24 | src/setup.c | 6 +++--- |
| 25 | src/syscall.c | 4 ++-- |
| 26 | 4 files changed, 12 insertions(+), 12 deletions(-) |
| 27 | |
| 28 | diff --git a/src/queue.c b/src/queue.c |
| 29 | index 4bd4c48..e81a492 100644 |
| 30 | --- a/src/queue.c |
| 31 | +++ b/src/queue.c |
| 32 | @@ -9,10 +9,10 @@ |
| 33 | #include <string.h> |
| 34 | #include <stdbool.h> |
| 35 | |
| 36 | -#include "liburing/compat.h" |
| 37 | -#include "liburing/io_uring.h" |
| 38 | -#include "liburing.h" |
| 39 | -#include "liburing/barrier.h" |
| 40 | +#include "src/include/liburing/compat.h" |
| 41 | +#include "src/include/liburing/io_uring.h" |
| 42 | +#include "src/include/liburing.h" |
| 43 | +#include "src/include/liburing/barrier.h" |
| 44 | |
| 45 | #include "syscall.h" |
| 46 | |
| 47 | diff --git a/src/register.c b/src/register.c |
| 48 | index 994aaff..87564f3 100644 |
| 49 | --- a/src/register.c |
| 50 | +++ b/src/register.c |
| 51 | @@ -8,9 +8,9 @@ |
| 52 | #include <errno.h> |
| 53 | #include <string.h> |
| 54 | |
| 55 | -#include "liburing/compat.h" |
| 56 | -#include "liburing/io_uring.h" |
| 57 | -#include "liburing.h" |
| 58 | +#include "src/include/liburing/compat.h" |
| 59 | +#include "src/include/liburing/io_uring.h" |
| 60 | +#include "src/include/liburing.h" |
| 61 | |
| 62 | #include "syscall.h" |
| 63 | |
| 64 | diff --git a/src/setup.c b/src/setup.c |
| 65 | index 062eaa0..decd4f0 100644 |
| 66 | --- a/src/setup.c |
| 67 | +++ b/src/setup.c |
| 68 | @@ -10,9 +10,9 @@ |
| 69 | #include <stdlib.h> |
| 70 | #include <signal.h> |
| 71 | |
| 72 | -#include "liburing/compat.h" |
| 73 | -#include "liburing/io_uring.h" |
| 74 | -#include "liburing.h" |
| 75 | +#include "src/include/liburing/compat.h" |
| 76 | +#include "src/include/liburing/io_uring.h" |
| 77 | +#include "src/include/liburing.h" |
| 78 | |
| 79 | #include "syscall.h" |
| 80 | |
| 81 | diff --git a/src/syscall.c b/src/syscall.c |
| 82 | index 2fd3dd4..3f57273 100644 |
| 83 | --- a/src/syscall.c |
| 84 | +++ b/src/syscall.c |
| 85 | @@ -7,8 +7,8 @@ |
| 86 | #include <unistd.h> |
| 87 | #include <sys/syscall.h> |
| 88 | #include <sys/uio.h> |
| 89 | -#include "liburing/compat.h" |
| 90 | -#include "liburing/io_uring.h" |
| 91 | +#include "src/include/liburing/compat.h" |
| 92 | +#include "src/include/liburing/io_uring.h" |
| 93 | #include "syscall.h" |
| 94 | |
| 95 | #ifdef __alpha__ |
| 96 | -- |
| 97 | 2.25.1 |
| 98 | |