build: Fix build with latest ELL tree
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Tue, 16 Mar 2021 20:56:49 +0000 (13:56 -0700)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 11 Mar 2022 13:38:35 +0000 (19:08 +0530)
Latest ELL tree has introduced useful.h and main-private.h which are
required to build:

ell/cert-crypto.c:35:10: fatal error: useful.h: No such file or
directory
   35 | #include "useful.h"
         |          ^~~~~~~~~~
...

Signed-off-by: Anuj Jain <anuj01.jain@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
Makefile.am

index efe2891..35822ab 100755 (executable)
@@ -136,7 +136,10 @@ ell_headers = ell/util.h \
                         ell/asn1-private.h \
                         ell/cert-private.h \
                         ell/pem-private.h \
-                       ell/uuid.h
+                       ell/uuid.h \
+                       ell/uuid.h \
+                       ell/useful.h \
+                       ell/main-private.h
 
 ell_sources = ell/private.h ell/missing.h \
                         ell/util.c \