Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lsof
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
lsof
Merge requests
!1
Fix ftbfs due to missing major/minor macros in tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix ftbfs due to missing major/minor macros in tests
wip/rietsh/fix-ftbfs-sysmacros
into
apertis/v2021dev3
Overview
7
Commits
2
Pipelines
2
Changes
3
All threads resolved!
Show all comments
Merged
Ritesh Raj Sarraf
requested to merge
wip/rietsh/fix-ftbfs-sysmacros
into
apertis/v2021dev3
4 years ago
Overview
7
Commits
2
Pipelines
2
Changes
3
All threads resolved!
Show all comments
Expand
Patch has already been applied in Debian.
Edited
4 years ago
by
Ritesh Raj Sarraf
0
0
Merge request reports
Compare
apertis/v2021dev3
version 1
f0b43b8f
4 years ago
apertis/v2021dev3 (base)
and
version 1
latest version
2836798a
2 commits,
4 years ago
version 1
f0b43b8f
2 commits,
4 years ago
3 files
+
44
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
debian/patches/0006-Drop-the-test-for-the-Linux-kernel-version.patch
0 → 100644
+
30
−
0
Options
From: Ritesh Raj Sarraf <ritesh.sarraf@collabora.com>
Date: Thu, 16 Jul 2020 20:04:35 +0530
Subject: Drop the test for the Linux kernel version
+3
Because Buster itself is 4.9.xx and our build servers as well as out
customer's build server could be using an even older version of the
kernel
Signed-off-by: Ritesh Raj Sarraf <ritesh.sarraf@collabora.com>
---
tests/LsofTest.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/LsofTest.h b/tests/LsofTest.h
index d1a9c96..3855364 100644
--- a/tests/LsofTest.h
+++ b/tests/LsofTest.h
@@ -78,10 +78,10 @@
#include <sys/types.h>
-#if defined(LT_DIAL_linux) && LT_VERS>=414014
+#if defined(LT_DIAL_linux)
#undef major
#include <sys/sysmacros.h>
-#endif /* defined(LT_DIAL_linux) && LT_VERS>=414014 */
+#endif /* defined(LT_DIAL_linux) */
#include <sys/param.h>
#include <sys/stat.h>
Loading