added my Recipes
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
From 4e5c5a245f248976ea55fe1f805badb0cb1bb072 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Fri, 30 Dec 2022 23:41:36 -0800
|
||||
Subject: [PATCH] Do not undefine _FILE_OFFSET_BITS
|
||||
|
||||
This does not work when we want to use 64bit time_t in glibc
|
||||
therefore let system decide on defining these macros
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
client/client_types.cpp | 9 ---------
|
||||
client/hostinfo_unix.cpp | 9 ---------
|
||||
2 files changed, 18 deletions(-)
|
||||
|
||||
diff --git a/client/client_types.cpp b/client/client_types.cpp
|
||||
index 2977ef7863..7653517302 100644
|
||||
--- a/client/client_types.cpp
|
||||
+++ b/client/client_types.cpp
|
||||
@@ -22,15 +22,6 @@
|
||||
#include "zlib.h"
|
||||
#else
|
||||
#include "config.h"
|
||||
-// Somehow having config.h define _FILE_OFFSET_BITS or _LARGE_FILES is
|
||||
-// causing open to be redefined to open64 which somehow, in some versions
|
||||
-// of zlib.h causes gzopen to be redefined as gzopen64 which subsequently gets
|
||||
-// reported as a linker error. So for this file, we compile in small files
|
||||
-// mode, regardless of these settings
|
||||
-#undef _FILE_OFFSET_BITS
|
||||
-#undef _LARGE_FILES
|
||||
-#undef _LARGEFILE_SOURCE
|
||||
-#undef _LARGEFILE64_SOURCE
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <zlib.h>
|
||||
diff --git a/client/hostinfo_unix.cpp b/client/hostinfo_unix.cpp
|
||||
index ff0b596221..0ad6841b39 100644
|
||||
--- a/client/hostinfo_unix.cpp
|
||||
+++ b/client/hostinfo_unix.cpp
|
||||
@@ -26,15 +26,6 @@
|
||||
|
||||
#if !defined(_WIN32) || defined(__CYGWIN32__)
|
||||
|
||||
-// Access to binary files in /proc filesystem doesn't work in the 64bit
|
||||
-// files environment on some systems.
|
||||
-// None of the functions here need 64bit file functions,
|
||||
-// so undefine _FILE_OFFSET_BITS and _LARGE_FILES.
|
||||
-//
|
||||
-#undef _FILE_OFFSET_BITS
|
||||
-#undef _LARGE_FILES
|
||||
-#undef _LARGEFILE_SOURCE
|
||||
-#undef _LARGEFILE64_SOURCE
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
--
|
||||
2.39.0
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
From 8a8305c78143438e2bd497d55188a0da3442db08 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Wed, 27 Apr 2022 09:11:38 -0700
|
||||
Subject: [PATCH] scripts: Do not check for files on build host
|
||||
|
||||
This will result in varied behaviour depending upon what kind of host is
|
||||
used to build it. We dont want that. Instead check for these files and
|
||||
dirs in staging area and create these markers in recipe via a
|
||||
do_install_prepend to aide install piece a bit here ( systemd vs
|
||||
sysvinit ) etc.
|
||||
|
||||
Upstream-Status: Inappropriate [OE-Specific]
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
client/scripts/Makefile.am | 10 +++++-----
|
||||
1 file changed, 5 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/client/scripts/Makefile.am b/client/scripts/Makefile.am
|
||||
index 2a53203d84..62a0defa93 100644
|
||||
--- a/client/scripts/Makefile.am
|
||||
+++ b/client/scripts/Makefile.am
|
||||
@@ -2,21 +2,21 @@
|
||||
|
||||
install-exec-hook:
|
||||
chmod +x boinc-client
|
||||
- if [ -d /etc/init.d ] ; then \
|
||||
+ if [ -d $(DESTDIR)/etc/init.d ] ; then \
|
||||
$(INSTALL) -d $(DESTDIR)$(sysconfdir)/init.d ; \
|
||||
$(INSTALL) -b boinc-client $(DESTDIR)$(sysconfdir)/init.d/boinc-client ; \
|
||||
fi
|
||||
- if [ -d /usr/lib/systemd/system ] ; then \
|
||||
+ if [ -d $(DESTDIR)/usr/lib/systemd/system ] ; then \
|
||||
$(INSTALL) -d $(DESTDIR)/usr/lib/systemd/system/ ; \
|
||||
$(INSTALL_DATA) boinc-client.service $(DESTDIR)/usr/lib/systemd/system/boinc-client.service ; \
|
||||
- elif [ -d /lib/systemd/system ] ; then \
|
||||
+ elif [ -d $(DESTDIR)/lib/systemd/system ] ; then \
|
||||
$(INSTALL) -d $(DESTDIR)/lib/systemd/system/ ; \
|
||||
$(INSTALL_DATA) boinc-client.service $(DESTDIR)/lib/systemd/system/boinc-client.service ; \
|
||||
fi
|
||||
- if [ -d /etc/sysconfig ] ; then \
|
||||
+ if [ -d $(DESTDIR)/etc/sysconfig ] ; then \
|
||||
$(INSTALL) -d $(DESTDIR)$(sysconfdir)/sysconfig ; \
|
||||
$(INSTALL_DATA) $(srcdir)/boinc-client.conf $(DESTDIR)$(sysconfdir)/sysconfig/boinc-client ; \
|
||||
- elif [ -d /etc/default ] ; then \
|
||||
+ elif [ -d $(DESTDIR)/etc/default ] ; then \
|
||||
$(INSTALL) -d $(DESTDIR)$(sysconfdir)/default ; \
|
||||
$(INSTALL_DATA) $(srcdir)/boinc-client.conf $(DESTDIR)$(sysconfdir)/default/boinc-client ; \
|
||||
else \
|
||||
--
|
||||
2.36.0
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
From 7957756a3dd16498cf7a75e1fb6675a33bc7f3dc Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Thu, 3 Nov 2016 01:20:33 -0700
|
||||
Subject: [PATCH] Add configure check for gtk2+ and objc++
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Upstream-Status: Pending
|
||||
|
||||
---
|
||||
configure.ac | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index d81d795de4..7beeb34ae2 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -59,6 +59,7 @@ m4_pattern_allow([AC_PROG_OBJCXX])
|
||||
m4_ifdef([AC_PROG_OBJCXX],[AC_PROG_OBJCXX],)
|
||||
dnl ------
|
||||
AC_PROG_CPP
|
||||
+AC_PROG_OBJCXX
|
||||
AC_PROG_MAKE_SET
|
||||
SAH_LINKS
|
||||
AC_LANG_PUSH(C)
|
||||
Reference in New Issue
Block a user