From 272c06526868d08366257fccadd3e50c5890d262 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 28 Nov 2018 22:48:29 +0100 Subject: [PATCH] Add emacs .dir-locals.el settings for flycheck mode --- .dir-locals.el | 64 ++++++++++++++++++++++++++++++++++++ lib/isc/win32/.dir-locals.el | 35 ++++++++++++++++++++ util/merge_copyrights | 1 + 3 files changed, 100 insertions(+) create mode 100644 .dir-locals.el create mode 100644 lib/isc/win32/.dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000000..858954afb3 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,64 @@ +;;; Directory Local Variables +;;; For more information see (info "(emacs) Directory Variables") + +((c-mode . + ((eval . + (set (make-local-variable 'directory-of-current-dir-locals-file) + (file-name-directory (locate-dominating-file default-directory ".dir-locals.el")) + ) + ) + (eval . + (set (make-local-variable 'include-directories) + (list + + ;; top directory + (expand-file-name + (concat directory-of-current-dir-locals-file "./")) + + ;; current directory + (expand-file-name (concat default-directory "./")) + + ;; libisc + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/isc/unix/include")) + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/isc/pthreads/include")) + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/isc/include")) + + ;; libdns + + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/dns/include")) + + ;; libisccc + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/isccc/include")) + + ;; libisccfg + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/isccfg/include")) + + ;; libns + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/ns/include")) + + ;; libirs + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/irs/include")) + + ;; libbind9 + (expand-file-name + (concat directory-of-current-dir-locals-file "lib/bind9/include")) + + (expand-file-name "/usr/local/opt/openssl@1.1/include") + (expand-file-name "/usr/local/opt/libxml2/include/libxml2") + (expand-file-name "/usr/local/include") + ) + ) + ) + + (eval setq flycheck-clang-include-path include-directories) + (eval setq flycheck-cpp-include-path include-directories) + ) + )) diff --git a/lib/isc/win32/.dir-locals.el b/lib/isc/win32/.dir-locals.el new file mode 100644 index 0000000000..b16a1be121 --- /dev/null +++ b/lib/isc/win32/.dir-locals.el @@ -0,0 +1,35 @@ +;;; Directory Local Variables +;;; For more information see (info "(emacs) Directory Variables") + +((c-mode . + ((eval . + (set (make-local-variable 'directory-of-current-dir-locals-file) + (file-name-directory (locate-dominating-file default-directory ".dir-locals.el")) + ) + ) + (eval . + (set (make-local-variable 'include-directories) + (list + (expand-file-name + (concat directory-of-current-dir-locals-file "../../../")) + (expand-file-name + (concat directory-of-current-dir-locals-file "include")) + (expand-file-name + (concat directory-of-current-dir-locals-file "../include")) + (expand-file-name + (concat directory-of-current-dir-locals-file "../")) + (expand-file-name + (concat directory-of-current-dir-locals-file "./")) + (expand-file-name + (concat directory-of-current-dir-locals-file "../../dns/include")) + (expand-file-name "/usr/local/opt/openssl@1.1/include") + (expand-file-name "/usr/local/opt/libxml2/include/libxml2") + (expand-file-name "/usr/local/include") + ) + ) + ) + + (eval setq flycheck-clang-include-path include-directories) + (eval setq flycheck-cpp-include-path include-directories) + ) + )) diff --git a/util/merge_copyrights b/util/merge_copyrights index 8f90eeb0b2..62d5d14cff 100644 --- a/util/merge_copyrights +++ b/util/merge_copyrights @@ -55,6 +55,7 @@ while () { \.zone$ | # zone files \.conf$ | # configuration files \.conf\.in$ | # configuration files + \.dir-locals\.el | # emacs local variables /(dnssafe|openssl)/.*\.[ch]$ | # imported doc/(draft|expired|rfc)/ # imported %x);