2013-04-02 11:14:57 +02:00
|
|
|
Index: doc/Makefile.am
|
|
|
|
===================================================================
|
|
|
|
--- doc/Makefile.am.orig
|
|
|
|
+++ doc/Makefile.am
|
2008-04-14 19:32:36 +02:00
|
|
|
@@ -5,7 +5,8 @@ else
|
|
|
|
man_MAGIC = magic.4
|
|
|
|
endif
|
|
|
|
fsect = @fsect@
|
|
|
|
-man_MANS = file.1 $(man_MAGIC) libmagic.3
|
|
|
|
+#man_MANS = file.1 $(man_MAGIC) libmagic.3
|
|
|
|
+man_MANS = file.1 magic.5 libmagic.3
|
|
|
|
|
|
|
|
EXTRA_DIST = file.man magic.man libmagic.man
|
|
|
|
CLEANFILES = $(man_MANS)
|
|
|
|
@@ -17,7 +18,8 @@ file.1: Makefile file.man
|
|
|
|
-e s@__VERSION__@${VERSION}@g \
|
|
|
|
-e s@__MAGIC__@${MAGIC}@g $(srcdir)/file.man > $@
|
|
|
|
|
|
|
|
-magic.${fsect}: Makefile magic.man
|
|
|
|
+#magic.${fsect}: Makefile magic.man
|
|
|
|
+magic.5: Makefile magic.man
|
|
|
|
@rm -f $@
|
|
|
|
sed -e s@__CSECTION__@1@g \
|
|
|
|
-e s@__FSECTION__@${fsect}@g \
|
2013-04-02 11:14:57 +02:00
|
|
|
Index: src/readelf.h
|
|
|
|
===================================================================
|
|
|
|
--- src/readelf.h.orig
|
|
|
|
+++ src/readelf.h
|
2008-04-14 19:32:36 +02:00
|
|
|
@@ -34,7 +34,10 @@
|
|
|
|
#ifndef __fake_elf_h__
|
2011-08-23 16:56:34 +02:00
|
|
|
#define __fake_elf_h__
|
2008-04-14 19:32:36 +02:00
|
|
|
|
|
|
|
+#include <features.h>
|
|
|
|
+
|
|
|
|
#if HAVE_STDINT_H
|
|
|
|
+__BEGIN_DECLS
|
|
|
|
#include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
2013-04-02 11:14:57 +02:00
|
|
|
@@ -322,4 +325,5 @@ typedef struct {
|
2009-11-16 09:55:24 +01:00
|
|
|
#define AV_386_SSE4_1 0x00800000
|
|
|
|
#define AV_386_SSE4_2 0x01000000
|
2008-04-14 19:32:36 +02:00
|
|
|
|
|
|
|
+__END_DECLS
|
|
|
|
#endif
|