mirror of
https://github.com/tmate-io/tmate.git
synced 2025-02-23 05:41:21 +01:00
0.4 released.
This commit is contained in:
parent
07af4ce499
commit
bd1a705bbe
6
CHANGES
6
CHANGES
@ -1,3 +1,7 @@
|
|||||||
|
01 July 2008
|
||||||
|
|
||||||
|
* tmux 0.4 released.
|
||||||
|
|
||||||
29 June 2008
|
29 June 2008
|
||||||
|
|
||||||
* Zombie windows. These are not closed when the child process dies. May be
|
* Zombie windows. These are not closed when the child process dies. May be
|
||||||
@ -592,4 +596,4 @@
|
|||||||
(including mutt, emacs). No status bar yet and no key remapping or other
|
(including mutt, emacs). No status bar yet and no key remapping or other
|
||||||
customisation.
|
customisation.
|
||||||
|
|
||||||
$Id: CHANGES,v 1.146 2008-06-29 07:04:28 nicm Exp $
|
$Id: CHANGES,v 1.147 2008-07-01 05:43:00 nicm Exp $
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# $Id: GNUmakefile,v 1.36 2008-06-29 07:04:29 nicm Exp $
|
# $Id: GNUmakefile,v 1.37 2008-07-01 05:43:00 nicm Exp $
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
PROG= tmux
|
PROG= tmux
|
||||||
VERSION= 0.4
|
VERSION= 0.5
|
||||||
|
|
||||||
DATE= $(shell date +%Y%m%d-%H%M)
|
DATE= $(shell date +%Y%m%d-%H%M)
|
||||||
|
|
||||||
@ -85,10 +85,10 @@ endif
|
|||||||
|
|
||||||
ifeq ($(shell uname),Linux)
|
ifeq ($(shell uname),Linux)
|
||||||
INCDIRS+= -Icompat
|
INCDIRS+= -Icompat
|
||||||
SRCS+= compat/strlcpy.c compat/strlcat.c compat/strtonum.c
|
SRCS+= compat/strlcpy.c compat/strlcat.c compat/strtonum.c compat/fgetln.c
|
||||||
CFLAGS+= $(shell getconf LFS_CFLAGS) -D_GNU_SOURCE \
|
CFLAGS+= $(shell getconf LFS_CFLAGS) -D_GNU_SOURCE \
|
||||||
-DNO_STRLCPY -DNO_STRLCAT -DNO_STRTONUM -DNO_SETPROCTITLE \
|
-DNO_STRLCPY -DNO_STRLCAT -DNO_STRTONUM -DNO_SETPROCTITLE \
|
||||||
-DNO_QUEUE_H -DNO_TREE_H -DUSE_PTY_H -std=c99
|
-DNO_QUEUE_H -DNO_TREE_H -DUSE_PTY_H -DNO_FGETLN -std=c99
|
||||||
LIBS+= -lrt -lutil
|
LIBS+= -lrt -lutil
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
4
Makefile
4
Makefile
@ -1,10 +1,10 @@
|
|||||||
# $Id: Makefile,v 1.69 2008-06-29 07:04:29 nicm Exp $
|
# $Id: Makefile,v 1.70 2008-07-01 05:43:00 nicm Exp $
|
||||||
|
|
||||||
.SUFFIXES: .c .o .y .h
|
.SUFFIXES: .c .o .y .h
|
||||||
.PHONY: clean update-index.html upload-index.html
|
.PHONY: clean update-index.html upload-index.html
|
||||||
|
|
||||||
PROG= tmux
|
PROG= tmux
|
||||||
VERSION= 0.4
|
VERSION= 0.5
|
||||||
|
|
||||||
OS!= uname
|
OS!= uname
|
||||||
REL!= uname -r
|
REL!= uname -r
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include "tmux.h"
|
#include "tmux.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user