diff options
author | Wen Heping <wen@FreeBSD.org> | 2011-02-21 07:09:49 +0000 |
---|---|---|
committer | Wen Heping <wen@FreeBSD.org> | 2011-02-21 07:09:49 +0000 |
commit | cfe1bc584d8faa1f1f7cb9fb9cb4a6b984d3f8d9 (patch) | |
tree | fe2ab69d16a43c181c5ac5db03607e563bdc399a /sysutils/tmux/files | |
parent | - Update to 0.304 (diff) |
- Fix build when ${OSVERSION} < 702104 [1]
- Now set tmux build without #define HAVE_BROKEN_KQUEUE as default and an option.
PR: ports/154485 [1]
Submitted by: Mike Stupalov <landy2005@gmail.com> [1]
Notes
Notes:
svn path=/head/; revision=269424
Diffstat (limited to 'sysutils/tmux/files')
-rw-r--r-- | sysutils/tmux/files/extra-patch-fb7 | 18 | ||||
-rw-r--r-- | sysutils/tmux/files/extra-patch-kqueue | 10 | ||||
-rw-r--r-- | sysutils/tmux/files/extra-patch-kqueue_and_fb7 | 20 |
3 files changed, 48 insertions, 0 deletions
diff --git a/sysutils/tmux/files/extra-patch-fb7 b/sysutils/tmux/files/extra-patch-fb7 new file mode 100644 index 000000000000..f6af48b3617d --- /dev/null +++ b/sysutils/tmux/files/extra-patch-fb7 @@ -0,0 +1,18 @@ +--- configure.orig 2011-02-21 10:52:19.000000000 +0800 ++++ configure 2011-02-21 10:54:29.000000000 +0800 +@@ -224,7 +224,6 @@ + #define HAVE_ASPRINTF + #define HAVE_BROKEN_KQUEUE + #define HAVE_BZERO +-#define HAVE_CLOSEFROM + #define HAVE_DAEMON + #define HAVE_FGETLN + #define HAVE_FORKPTY +@@ -245,6 +244,7 @@ + cat <<EOF >>$CONFIG_MK + LIBS+= -lcurses -lutil -levent + SRCS+= osdep-freebsd.c \ ++ compat/closefrom.c \ + compat/vis.c \ + compat/unvis.c \ + compat/imsg-buffer.c \ diff --git a/sysutils/tmux/files/extra-patch-kqueue b/sysutils/tmux/files/extra-patch-kqueue new file mode 100644 index 000000000000..e71b1f1a4cdb --- /dev/null +++ b/sysutils/tmux/files/extra-patch-kqueue @@ -0,0 +1,10 @@ +--- configure.orig 2011-02-21 14:12:33.000000000 +0800 ++++ configure 2011-02-21 14:13:00.000000000 +0800 +@@ -222,7 +222,6 @@ + FreeBSD|DragonFly) + cat <<EOF >>$CONFIG_H + #define HAVE_ASPRINTF +-#define HAVE_BROKEN_KQUEUE + #define HAVE_BZERO + #define HAVE_CLOSEFROM + #define HAVE_DAEMON diff --git a/sysutils/tmux/files/extra-patch-kqueue_and_fb7 b/sysutils/tmux/files/extra-patch-kqueue_and_fb7 new file mode 100644 index 000000000000..6409a5e11dae --- /dev/null +++ b/sysutils/tmux/files/extra-patch-kqueue_and_fb7 @@ -0,0 +1,20 @@ +--- configure.orig 2011-02-21 14:37:37.000000000 +0800 ++++ configure 2011-02-21 14:38:21.000000000 +0800 +@@ -222,9 +222,7 @@ + FreeBSD|DragonFly) + cat <<EOF >>$CONFIG_H + #define HAVE_ASPRINTF +-#define HAVE_BROKEN_KQUEUE + #define HAVE_BZERO +-#define HAVE_CLOSEFROM + #define HAVE_DAEMON + #define HAVE_FGETLN + #define HAVE_FORKPTY +@@ -245,6 +243,7 @@ + cat <<EOF >>$CONFIG_MK + LIBS+= -lcurses -lutil -levent + SRCS+= osdep-freebsd.c \ ++ compat/closefrom.c \ + compat/vis.c \ + compat/unvis.c \ + compat/imsg-buffer.c \ |