summaryrefslogtreecommitdiffstats
path: root/Makefile.am
AgeCommit message (Collapse)Author
2015-12-08Conflicts:Thomas Adam
Makefile
2015-11-18Add -Wno-attributes.Nicholas Marriott
2015-11-18Add reallocarray to compat.Nicholas Marriott
2015-11-13Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile
2015-10-27Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile client.c server-client.c server.c tmux.c tmux.h
2015-09-14No more $Id$.Nicholas Marriott
2015-09-14Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile
2015-09-11Add --enable-coverage for gcov.Nicholas Marriott
2015-08-30Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile format.c
2015-07-14Add _LINUX_SOURCE_COMPAT on AIX.Nicholas Marriott
2015-06-05Only need *.ch in compat.Nicholas Marriott
2015-06-04I no longer need to care about GCC 3.Nicholas Marriott
2015-06-04HTML bits are now elsewhere.Nicholas Marriott
2015-04-28Add tmux4.png.Nicholas Marriott
2015-04-28Upload all the files.Nicholas Marriott
2015-04-27Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile tmux.1
2015-02-15Revert "Add -Wno-format-nonliteral to Makefile.am"Thomas Adam
Oh well. This will hide legitimate programming errors, which I knew, so I'll just have to accept that when looking through the compiler output. This reverts commit c2bbaab2ac06420fa56c872294a9f8d7b326571e.
2015-02-15Add -Wno-format-nonliteral to Makefile.amThomas Adam
Shut GCC up about non-literal arguments to functions which make use of placeholder expansions (printf, strftime, etc.)
2015-02-14Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile
2015-01-12We do not need to add /usr/local to CPPFLAGS; if configure managed to pass thenNicholas Marriott
the dependencies must already be in the search path. Reported by Romain Naour.
2014-10-29Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile cmd-link-window.c cmd-unlink-window.c
2014-10-21Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile cmd-list-commands.c cmd-suspend-client.c job.c tmux.h xmalloc.c
2014-09-16Tweak www and add RELEASE variable for current release version so we don't needNicholas Marriott
to turn it back and forth when updating.
2014-08-09Add compat/fparseln() for non-BSD systemsThomas Adam
Linux and friends don't natively have fparseln() so add it to compat/ and ensure autotools can pick it up.
2014-06-19Might as well still allow autoconf 2.59.Nicholas Marriott
2014-06-18Build DEBUG with -O2 as well.Nicholas Marriott
2014-04-29Typo in previous: $(srcdir)Thomas Adam
2014-04-29Makefile.am: Honour $srcdir for mdoc2man.awkThomas Adam
Honour out-of-tree srcdir installs when generating the man page. Noticed by Jon Tibble.
2014-04-23Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile tmux.1 window.c
2014-02-26Having three *clock* files is ridiculous, remove clock.c.Nicholas Marriott
2014-02-20dist: Call clean target before any other actionThomas Adam
In case 'make dist' is invoked from a dirty tree which hasn't had its object files cleaned up, clean out the tree first before tarring up the files for a release.
2014-01-31Fixup BSD specific things from last mergeThomas Adam
There's entries for header files we don't use, and the cvsimport doesn't like removing files automatically, etc., and it won't have known to have done this from autoconf's POV, so define that in the correct place, hence the removal of the previously committed Makefile.
2013-10-10Add openat() to compat.Nicholas Marriott
2013-06-25Use _XPG6 on Solaris with GCC because the headers are insane and don't like GCCNicholas Marriott
with -std=gnu99 and _XPG4_2. We should not really be using _XPG* at all but there doesn't seem to be a magic define that says "give me the latest standard", and things are further confused by the CMSG_DATA check in configure.ac which sets _XOPEN_SOURCE _XOPEN_SOURCE_EXTENDED. While here add COPYING to EXTRA_DIST.
2013-05-15Merge branch 'master' of ssh://git.code.sf.net/p/tmux/tmux-codeNicholas Marriott
Conflicts: Makefile.am
2013-05-15Rename tmux.1.in back to tmux.1 and generate tmux.1.{mdoc,man} instead.Nicholas Marriott
2013-04-28Use $(srcdir) for generating tmux.1, reported by fasta_ on IRC.Nicholas Marriott
2013-04-24Use sysconfdir for the location of global tmux.conf (but default it to /etc),Nicholas Marriott
based on changes from Dagobert Michelsen.
2013-04-22Pass tmux.1.in to awk on stdin rather than as an argument.Nicholas Marriott
2013-04-22Add compat for cfmakeraw, from Dagobert Michelsen.Nicholas Marriott
2013-04-16Generate tmux.1 using mdoc2man.awk on Solaris, issue brought up and changesNicholas Marriott
tested by Dagobert Michelsen.
2013-03-25Use -std=gnu99 not c99 with GCC.Nicholas Marriott
2013-03-06Add a wait-for command which blocks a client on a named channel until it isNicholas Marriott
wokrn up again (with wait-for -S). From Thiago Padilha.
2013-02-23Add a command queue to standardize and simplify commands that call otherNicholas Marriott
commands and allow a command to block execution of subsequent commands. This allows run-shell and if-shell to be synchronous which has been much requested. Each client has a default command queue and commands are consumed one at a time from it. A command may suspend execution from the queue by returning CMD_RETURN_WAIT and then resume it by calling cmd_continue() - for example run-shell does this from the callback that is fired after the job is freed. When the command queue becomes empty, command clients are automatically exited (unless attaching). A callback is also fired - this is used for nested commands in, for example, if-shell which can block execution of the client's cmdq until a new cmdq becomes empty. Also merge all the old error/info/print functions together and lose the old curclient/cmdclient distinction - a cmdq is bound to one client (or none if in the configuration file), this is a command client if c->session is NULL otherwise an attached client.
2013-02-23Merge send-prefix into send-keys.Nicholas Marriott
2013-02-23Merge show-buffer into save-buffer.Nicholas Marriott
2013-02-22Use -O2 without debugging.Nicholas Marriott
2013-02-19Move NOTES->README, move Vim syntax file documentation to the file itself andNicholas Marriott
otherwise tweak some bits.
2013-01-30Add -Wdeclaration-after-statement.Nicholas Marriott
2013-01-30Merge branch 'obsd-master'Thomas Adam
Conflicts: Makefile grid-utf8.c