header: Fix including just <hivex.h>.
authorRichard W.M. Jones <rjones@redhat.com>
Mon, 15 Aug 2011 07:36:04 +0000 (08:36 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Mon, 15 Aug 2011 07:36:04 +0000 (08:36 +0100)
Also this adds a regression test so we don't break it in future.

.gitignore
generator/generator.ml
lib/Makefile.am
lib/test-just-header.c [new file with mode: 0644]

index 8b06c6a..cf49940 100644 (file)
@@ -38,6 +38,7 @@ lib/*.3
 lib/hivex.h
 lib/hivex.pod
 lib/hivex.syms
+lib/test-just-header
 lib/tools/*.opt
 .libs
 libtool
index 943039c..d8efc04 100755 (executable)
@@ -704,6 +704,7 @@ let rec generate_c_header () =
 #ifndef HIVEX_H_
 #define HIVEX_H_
 
+#include <stdlib.h>
 #include <stdint.h>
 
 #ifdef __cplusplus
index 7e5b92b..12f415a 100644 (file)
@@ -1,5 +1,5 @@
 # hivex
-# Copyright (C) 2009-2010 Red Hat Inc.
+# Copyright (C) 2009-2011 Red Hat Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -63,3 +63,16 @@ $(top_builddir)/html/hivex.3.html: hivex.pod
          $<
 
 CLEANFILES = $(man_MANS)
+
+# Tests.
+
+check_PROGRAMS = test-just-header
+
+TESTS = test-just-header
+
+test_just_header_SOURCES = test-just-header.c
+test_just_header_CFLAGS = \
+       -I$(top_srcdir)/lib -I$(top_builddir)/lib \
+       $(WARN_CFLAGS) $(WERROR_CFLAGS)
+test_just_header_LDADD = \
+       $(top_builddir)/lib/libhivex.la
diff --git a/lib/test-just-header.c b/lib/test-just-header.c
new file mode 100644 (file)
index 0000000..ee81e21
--- /dev/null
@@ -0,0 +1,30 @@
+/* hivex
+ * Copyright (C) 2010-2011 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+/* Check that just including the header and nothing else works, ie.
+ * that there are no implicit dependencies in the header file.
+ */
+
+#include "hivex.h"
+
+int
+main (int argc, char *argv[])
+{
+  hive_h *h = hivex_open ("../images/minimal", 0);
+  return 0;
+}