Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-04-05 | bump version to 0.9.20.9.2 | ||
2024-03-19 | bump version to 0.9.10.9.1 | ||
2022-10-04 | bump version to 0.90.9 | ||
2022-05-01 | Makefile: add manual path for OpenBSD | ||
2022-01-07 | bump version to 0.8.50.8.5 | ||
2020-06-19 | bump version to 0.8.40.8.4 | ||
2020-06-17 | config.mk: use PKG_CONFIG in commented OpenBSD section | ||
2020-04-27 | bump version to 0.8.30.8.3 | ||
2019-02-09 | bump version to 0.8.20.8.2 | ||
2019-01-10 | Let the user specify CPPFLAGS | ||
This complements the work done in d4928ed, allowing the user to specify the preprocessor flags with the CPPFLAGS environment variable. This is useful for example to specify preprocessor macros with -D. CFLAGS could be used instead, but CPPFLAGS is more correct and is expected to be honored in some cases. For example, the helper scripts to build Debian packages make use of CPPFLAGS, but the variable is currently being ignored unless manually appended to CFLAGS. | |||
2019-01-04 | Set the path of pkg-config in a variable instead of hardcoding it | ||
In this way the path of pkg-config can be overridden from the command line. This is useful for example when cross-compiling. | |||
2018-06-02 | config.mk: remove extra newline before EOF | ||
2018-05-25 | Pledge on OpenBSD | ||
2018-03-20 | bump version to 0.8.10.8.1 | ||
2018-03-14 | bump version to 0.8 | ||
2017-07-12 | Let the user specify C and LD FLAGS | ||
2017-07-12 | Do not obfuscate what make is doing. | ||
Change some styling too while we're at it. | |||
2016-08-11 | 0.7 release0.7 | ||
2015-09-28 | There's no need for libXext to compile st. | ||
2015-07-07 | Commit to push the 0.6 release.0.6 | ||
2015-03-20 | Remove strsep() call | ||
strsep() is not a POSIX function, and it means that every system needs different defines to expose it. If the prototype of strsep is not exposed then an ugly int/pointer is done and it might mean a crash. The best solution?, to remove the strsep and make a custom loop. If C programmers cannot do this kind of loops without calling a library function, then maybe we should move all the suckless software to Java. | |||
2015-03-14 | Glibc wants me to use _DEFAULT_SOURCe. I do obey. | ||
2015-02-22 | Comment default CC assignment | ||
CC by default is cc, so the assignment was doing nothing, but it was using non standard syntax, so some system (NetBSD) fail to compile. | |||
2014-06-30 | Making surf compile again with rt. | ||
The clock_gettime patch needs librt to be linked to surf. Thanks _odie for the hint. | |||
2014-06-26 | Remove CEIL macro | ||
This macro was not correct in some cases, and it was used only in one place, where we did'nt get any benefit in performance of in size, so the macro is removed and ceilf is used instead of it. The only function needed from math.h is ceilf, so this patch defines the prototype of it instead of including math.h. | |||
2014-04-05 | 0.5 release.0.5 | ||
2013-04-20 | 0.4.1 release.0.4.1 | ||
2013-04-19 | Making st compile on OpenBSD again. | ||
2013-03-29 | Releasing 0.4.0.4 | ||
2013-03-05 | Making st compile on OS X. | ||
2013-02-26 | Using strsep and fixing null termination in csiparse. | ||
Thanks for the hint from Alexander Sedov <alex0player@gmail.com>! | |||
2013-01-04 | Making the fontconfig and freetype paths portable in config.mk. | ||
2012-11-13 | The style inquisition was here again. | ||
2012-11-02 | 0.3 release. | ||
2012-10-28 | Adding a more flexible fontstring handling, shortcuts and a zoom function. | ||
2012-10-04 | This adds the fontcache dependency to try something out. Additionally the | ||
invert mode now works as expected. In the config.def.h autohint is set to false, so the fonts are drawn correctly, without any overlapping. | |||
2012-09-24 | Initial Xft support for st. More to follow. | ||
2012-07-28 | Implement Xdbe-based double-buffering | ||
2012-02-16 | revert to "tip" in VERSION. | ||
2012-02-16 | bump version. | ||
2012-02-11 | some minor fixes | ||
2011-04-03 | update VERSION. | ||
2010-08-31 | fix segfault when selecting big buffers | ||
shift+insert paste clipboard honor CFLAGS and LDFLAGS in config.mk | |||
2010-08-30 | use predefined OS macro instead of uname. | ||
2010-08-30 | st should compile on NetBSD. | ||
2010-08-30 | removed pty.h. minimal system guessing added in config.mk. | ||
2010-08-28 | st now runs on Linux, OpenBSD and FreeBSD. | ||
2010-08-27 | removed XINERAMA from config.mk and fixed a segfault when st is | ||
started without a display. (thx Hiltjo Posthuma) | |||
2009-05-10 | backport of local changes | ||
2008-07-21 | simplify Makefile | ||
Due to consideration of POSIX compliance issues config.mk had to be removed. Configuration variables can be overridden by environment variables or specified via command line. Additionally all pretty-printed messages were removed and built-in rules are used. This also simplifies and purges the Makefile. |