From: Ken Hornstein Date: Mon, 20 Nov 2017 00:08:48 +0000 (-0500) Subject: Normalize some #include paths. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/ff168106b44fdfbaed7d7cf08c54a72ee1fe2c0a?hp=f102d048fdd4679534460ac5cb0c610ee228d063 Normalize some #include paths. Include the subdirectory so these files will compile from an object build. --- diff --git a/sbr/dtimep.l b/sbr/dtimep.l index 699e90e4..656f96b2 100644 --- a/sbr/dtimep.l +++ b/sbr/dtimep.l @@ -12,7 +12,7 @@ %{ #include "h/nmh.h" #include "h/mh.h" -#include "dtime.h" +#include "sbr/dtime.h" #include "h/utils.h" #include "h/tws.h" diff --git a/sbr/icalendar.l b/sbr/icalendar.l index 0681f3ad..c7ebb8bf 100644 --- a/sbr/icalendar.l +++ b/sbr/icalendar.l @@ -11,7 +11,7 @@ #include "h/mh.h" #include "h/icalendar.h" #include "icalparse.h" -#include "base64.h" +#include "sbr/base64.h" static char *unfold (char *, size_t *); static void destroy_icallex(void); diff --git a/sbr/icalparse.y b/sbr/icalparse.y index 7549aa64..0213fa90 100644 --- a/sbr/icalparse.y +++ b/sbr/icalparse.y @@ -34,7 +34,7 @@ */ #include "h/mh.h" -#include "error.h" +#include "sbr/error.h" #include "h/icalendar.h" #include "h/utils.h"