Codebase list entr / fresh-snapshots/main
Refresh patches. Debian Janitor 1 year, 6 months ago
2 changed file(s) with 17 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
44 Forwarded: not-needed
55 Updated: 2019-10-24
66
7 Index: entr.git/Makefile.kfreebsd
8 ===================================================================
79 --- /dev/null
8 +++ b/Makefile.kfreebsd
10 +++ entr.git/Makefile.kfreebsd
911 @@ -0,0 +1,6 @@
1012 +PKG_CONFIG ?= pkg-config
1113 +CFLAGS += -D_GNU_SOURCE $(shell $(PKG_CONFIG) --cflags libbsd-overlay)
1315 +MANPREFIX ?= ${PREFIX}/share/man
1416 +
1517 +include Makefile.bsd
16 --- a/configure
17 +++ b/configure
18 @@ -8,6 +8,7 @@
18 Index: entr.git/configure
19 ===================================================================
20 --- entr.git.orig/configure
21 +++ entr.git/configure
22 @@ -8,6 +8,7 @@ copy_mk() {
1923 case `uname` in
2024 Darwin) copy_mk macos ;;
2125 Linux) copy_mk linux ;;
44 Forwarded: not-needed
55 Updated: 2020-01-29
66
7 --- a/Makefile.linux
8 +++ b/Makefile.linux
7 Index: entr.git/Makefile.linux
8 ===================================================================
9 --- entr.git.orig/Makefile.linux
10 +++ entr.git/Makefile.linux
911 @@ -1,5 +1,7 @@
1012 -CPPFLAGS += -D_GNU_SOURCE -D_LINUX_PORT -Imissing
1113 +PKG_CONFIG ?= pkg-config
1618 +EXTRA_SRC = missing/kqueue_inotify.c
1719
1820 include Makefile.bsd
19 --- a/missing/compat.h
20 +++ b/missing/compat.h
21 Index: entr.git/missing/compat.h
22 ===================================================================
23 --- entr.git.orig/missing/compat.h
24 +++ entr.git/missing/compat.h
2125 @@ -4,7 +4,7 @@
2226 #define NOTE_TRUNCATE 0
2327 #endif
2529 -#if defined(_LINUX_PORT) && defined(__GLIBC__)
2630 +#if defined(_LINUX_PORT) && defined(__GLIBC__) && !defined(LIBBSD_OVERLAY)
2731 #include <sys/types.h>
28 size_t strlcpy(char *to, const char *from, int l);
32 size_t strlcpy(char *dst, const char *src, size_t dsize);
2933 #endif