cronie/debian/patches/Extend-support-for-kFreeBSD-and-GNU-HURD.patch

37 lines
1.1 KiB
Diff
Raw Permalink Normal View History

2019-11-05 08:04:37 +01:00
From: Christian Kastner <ckk@kvr.at>
2011-07-26 14:00:34 +02:00
Date: Sun, 7 Aug 2011 19:48:09 +0200
Subject: Extend support for kFreeBSD and GNU HURD
Extend some of the #ifdefs to include kFreeBSD and HURD where it's obviously OK
to do so
Forwarded: no
Last-Update: 2011-08-07
---
2019-11-05 08:04:37 +01:00
src/entry.c | 2 +-
src/pathnames.h | 2 +-
2011-07-26 14:00:34 +02:00
2 files changed, 2 insertions(+), 2 deletions(-)
2019-11-05 08:04:37 +01:00
--- a/src/entry.c
+++ b/src/entry.c
2022-11-13 17:09:31 +01:00
@@ -403,7 +403,7 @@
2011-07-26 14:00:34 +02:00
}
else
log_it("CRON", getpid(), "ERROR", "can't set LOGNAME", 0);
-#if defined(BSD) || defined(__linux)
+#if defined(BSD) || defined(__linux) || defined(__GLIBC__) || defined(__gnu_hurd__)
if (glue_strings(envstr, sizeof envstr, "USER", pw->pw_name, '=')) {
if ((tenvp = env_set(e->envp, envstr)) == NULL) {
ecode = e_memory;
2019-11-05 08:04:37 +01:00
--- a/src/pathnames.h
+++ b/src/pathnames.h
2011-07-26 14:00:34 +02:00
@@ -26,7 +26,7 @@
#ifndef _PATHNAMES_H_
#define _PATHNAMES_H_
-#if (defined(BSD)) && (BSD >= 199103) || defined(__linux) || defined(AIX)
+#if (defined(BSD)) && (BSD >= 199103) || defined(__linux) || defined(AIX) || defined(__GLIBC__) || defined(__gnu_hurd__)
# include <paths.h>
#endif /*BSD*/