notmuch/compat
Jonas Bernoulli c454135376 emacs: Use makefile-gmake-mode in Makefile*s
Use `makefile-gmake-mode' instead of `makefile-mode' because the
former also highlights ifdef et al. while the latter does not.

"./Makefile.global" and one "Makefile.local" failed to specify any
major mode at all but doing so is necessary because Emacs does not
automatically figure out that these are Makefiles (of any flavor).
2020-08-09 21:14:36 -03:00
..
.gitignore Use rooted paths in .gitignore files 2017-08-18 19:42:35 -03:00
canonicalize_file_name.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
check_asctime.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
check_getpwuid.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
compat.h compat: run uncrustify 2019-06-14 07:41:27 -03:00
function-attributes.h compat: run uncrustify 2019-06-14 07:41:27 -03:00
gen_zlib_pc.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
getdelim.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
getline.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
have_canonicalize_file_name.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
have_d_type.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
have_getline.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
have_strcasestr.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
have_strsep.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
have_timegm.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
Makefile Makefiles: Use .DEFAULT to support arbitrary targets from sub directories. 2010-01-06 10:32:06 -08:00
Makefile.local emacs: Use makefile-gmake-mode in Makefile*s 2020-08-09 21:14:36 -03:00
README Extend compat/README 2012-09-27 12:51:01 -03:00
strcasestr.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
strsep.c compat: run uncrustify 2019-06-14 07:41:27 -03:00
timegm.c compat: run uncrustify 2019-06-14 07:41:27 -03:00

notmuch/compat

This directory consists of three things:

1. Small programs used by the notmuch configure script to test for the
   availability of certain system features, (library functions, etc.).

   For example: have_getline.c

2. Compatibility implementations of those system features for systems
   that don't provide their own versions.

   For example: getline.c

   The compilation of these files is made conditional on the output of
   the test programs from [1].

3. Macro definitions abstracting compiler differences (e.g. function
   attributes).

   For example: function-attributes.h