aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAge
...
* Revert the AM_* change, I can't find a way to make AC_CHECK_HEADER useNicholas Marriott2016-10-18
| | | | LIBEVENT_CFLAGS.
* I don't remember why we have make clean in dist-hook; remove it.Nicholas Marriott2016-10-18
|
* *.h can go in dist_tmux_SOURCES, from Dilyan Palauzov.Nicholas Marriott2016-10-18
|
* Rename found_debug to enable_debug.Nicholas Marriott2016-10-18
|
* Preserve existing AM_CPPFLAGS and AM_LDFLAGS values.Nicholas Marriott2016-10-17
|
* CFLAGS/CPPFLAGS/LDFLAGS -> AM_*, requested by Dilyan Palauzov.Nicholas Marriott2016-10-17
|
* tmux no longer uses openat() so we can remove the compatibilty function.Nicholas Marriott2016-10-13
|
* NetBSD needs _OPENBSD_SOURCE for reallocarray.Nicholas Marriott2016-10-12
|
* Add support for using utf8proc with --enable-utf8proc, useful for platformsNicholas Marriott2016-09-01
| | | | (like OS X) where the system implementation is crap. From Joshua Rubin.
* Remove duplicate daemon.c and time.h.Nicholas Marriott2016-06-27
|
* Merge branch 'master' of github.com:tmux/tmuxNicholas Marriott2016-05-27
|\
| * getprogname() and setproctitle() on Linux.Nicholas Marriott2016-05-27
| |
* | Add flag for -pg.Nicholas Marriott2016-05-27
|/
* No more array.h.Nicholas Marriott2016-04-26
|
* Tweak a comment.Nicholas Marriott2016-03-17
|
* EXTRA_DIST: add example_tmux.conf / xmalloc.hThomas Adam2016-02-06
|
* Conflicts:Thomas Adam2015-12-08
| | | | Makefile
* Add -Wno-attributes.Nicholas Marriott2015-11-18
|
* Add reallocarray to compat.Nicholas Marriott2015-11-18
|
* Merge branch 'obsd-master'Thomas Adam2015-11-13
| | | | | Conflicts: Makefile
* Merge branch 'obsd-master'Thomas Adam2015-10-27
| | | | | | | | | | Conflicts: Makefile client.c server-client.c server.c tmux.c tmux.h
* No more $Id$.Nicholas Marriott2015-09-14
|
* Merge branch 'obsd-master'Thomas Adam2015-09-14
| | | | | Conflicts: Makefile
* Add --enable-coverage for gcov.Nicholas Marriott2015-09-11
|
* Merge branch 'obsd-master'Thomas Adam2015-08-30
| | | | | | Conflicts: Makefile format.c
* Add _LINUX_SOURCE_COMPAT on AIX.Nicholas Marriott2015-07-14
|
* Only need *.ch in compat.Nicholas Marriott2015-06-05
|
* I no longer need to care about GCC 3.Nicholas Marriott2015-06-04
|
* HTML bits are now elsewhere.Nicholas Marriott2015-06-04
|
* Add tmux4.png.Nicholas Marriott2015-04-28
|
* Upload all the files.Nicholas Marriott2015-04-28
|
* Merge branch 'obsd-master'Thomas Adam2015-04-27
| | | | | | Conflicts: Makefile tmux.1
* Revert "Add -Wno-format-nonliteral to Makefile.am"Thomas Adam2015-02-15
| | | | | | | 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.
* Add -Wno-format-nonliteral to Makefile.amThomas Adam2015-02-15
| | | | | Shut GCC up about non-literal arguments to functions which make use of placeholder expansions (printf, strftime, etc.)
* Merge branch 'obsd-master'Thomas Adam2015-02-14
| | | | | Conflicts: Makefile
* We do not need to add /usr/local to CPPFLAGS; if configure managed to pass thenNicholas Marriott2015-01-12
| | | | the dependencies must already be in the search path. Reported by Romain Naour.
* Merge branch 'obsd-master'Thomas Adam2014-10-29
| | | | | | | Conflicts: Makefile cmd-link-window.c cmd-unlink-window.c
* Merge branch 'obsd-master'Thomas Adam2014-10-21
| | | | | | | | | | Conflicts: Makefile cmd-list-commands.c cmd-suspend-client.c job.c tmux.h xmalloc.c
* Tweak www and add RELEASE variable for current release version so we don't needNicholas Marriott2014-09-16
| | | | to turn it back and forth when updating.
* Add compat/fparseln() for non-BSD systemsThomas Adam2014-08-09
| | | | | Linux and friends don't natively have fparseln() so add it to compat/ and ensure autotools can pick it up.
* Might as well still allow autoconf 2.59.Nicholas Marriott2014-06-19
|
* Build DEBUG with -O2 as well.Nicholas Marriott2014-06-18
|
* Typo in previous: $(srcdir)Thomas Adam2014-04-29
|
* Makefile.am: Honour $srcdir for mdoc2man.awkThomas Adam2014-04-29
| | | | | Honour out-of-tree srcdir installs when generating the man page. Noticed by Jon Tibble.
* Merge branch 'obsd-master'Thomas Adam2014-04-23
| | | | | | | Conflicts: Makefile tmux.1 window.c
* Having three *clock* files is ridiculous, remove clock.c.Nicholas Marriott2014-02-26
|
* dist: Call clean target before any other actionThomas Adam2014-02-20
| | | | | | 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.
* Fixup BSD specific things from last mergeThomas Adam2014-01-31
| | | | | | | 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.
* Add openat() to compat.Nicholas Marriott2013-10-10
|
* Use _XPG6 on Solaris with GCC because the headers are insane and don't like GCCNicholas Marriott2013-06-25
| | | | | | | | | 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.