+EXTRA_DIST =
+
SUBDIRS = canon olympus pentax
lib_LTLIBRARIES = libexif.la
exif-utils.h \
_stdint.h
-EXTRA_DIST = libexif.sym
+EXTRA_DIST += exif-system.h
+
+EXTRA_DIST += libexif.sym
DISTCLEANFILES = _stdint.h
--- /dev/null
+/** \file exif-system.h
+ * \brief System specific definitions, not for installation!
+ */
+
+#ifndef EXIF_SYSTEM_H
+#define EXIF_SYSTEM_H
+
+#if defined(__GNUC__) && (__GNUC__ >= 2)
+# define UNUSED(param) UNUSED_PARAM_##param __attribute__((unused))
+#else
+# define UNUSED(param) param
+#endif
+
+#endif /* !defined(EXIF_SYSTEM_H) */