|
From: <sv...@va...> - 2013-08-29 17:59:37
|
florian 2013-08-29 17:59:27 +0000 (Thu, 29 Aug 2013)
New Revision: 13518
Log:
Add missing headers and such so that 'make dist' works again.
Modified files:
trunk/Makefile.vex.am
trunk/configure.in
trunk/coregrind/Makefile.am
trunk/include/Makefile.am
Modified: trunk/Makefile.vex.am (+3 -1)
===================================================================
--- trunk/Makefile.vex.am 2013-08-28 10:03:45 +00:00 (rev 13517)
+++ trunk/Makefile.vex.am 2013-08-29 17:59:27 +00:00 (rev 13518)
@@ -26,6 +26,7 @@
pub/libvex_guest_arm.h \
pub/libvex_guest_s390x.h \
pub/libvex_guest_mips32.h \
+ pub/libvex_guest_mips64.h \
pub/libvex_s390x_common.h \
pub/libvex_ir.h \
pub/libvex_trc_values.h
@@ -71,7 +72,8 @@
pub/libvex_guest_ppc64.h \
pub/libvex_guest_arm.h \
pub/libvex_guest_s390x.h \
- pub/libvex_guest_mips32.h
+ pub/libvex_guest_mips32.h \
+ pub/libvex_guest_mips64.h
rm -f auxprogs/genoffsets.s
$(CC) $(CFLAGS) \
$(LIBVEX_CFLAGS) \
Modified: trunk/configure.in (+1 -0)
===================================================================
--- trunk/configure.in 2013-08-28 10:03:45 +00:00 (rev 13517)
+++ trunk/configure.in 2013-08-29 17:59:27 +00:00 (rev 13518)
@@ -2661,6 +2661,7 @@
coregrind/Makefile
memcheck/Makefile
memcheck/tests/Makefile
+ memcheck/tests/common/Makefile
memcheck/tests/amd64/Makefile
memcheck/tests/x86/Makefile
memcheck/tests/linux/Makefile
Modified: trunk/coregrind/Makefile.am (+4 -0)
===================================================================
--- trunk/coregrind/Makefile.am 2013-08-28 10:03:45 +00:00 (rev 13517)
+++ trunk/coregrind/Makefile.am 2013-08-29 17:59:27 +00:00 (rev 13518)
@@ -204,6 +204,9 @@
m_debuginfo/priv_readelf.h \
m_debuginfo/priv_readmacho.h \
m_debuginfo/priv_image.h \
+ m_debuginfo/lzoconf.h \
+ m_debuginfo/lzodefs.h \
+ m_debuginfo/minilzo.h \
m_demangle/ansidecl.h \
m_demangle/cp-demangle.h \
m_demangle/dyn-string.h \
@@ -298,6 +301,7 @@
m_debuginfo/storage.c \
m_debuginfo/tytypes.c \
m_debuginfo/image.c \
+ m_debuginfo/minilzo-inl.c \
m_demangle/cp-demangle.c \
m_demangle/cplus-dem.c \
m_demangle/demangle.c \
Modified: trunk/include/Makefile.am (+9 -0)
===================================================================
--- trunk/include/Makefile.am 2013-08-28 10:03:45 +00:00 (rev 13517)
+++ trunk/include/Makefile.am 2013-08-29 17:59:27 +00:00 (rev 13518)
@@ -68,4 +68,13 @@
vki/vki-scnums-mips64-linux.h \
vki/vki-scnums-darwin.h \
vki/vki-xen.h \
+ vki/vki-xen-domctl.h \
+ vki/vki-xen-evtchn.h \
+ vki/vki-xen-gnttab.h \
+ vki/vki-xen-hvm.h \
+ vki/vki-xen-memory.h \
+ vki/vki-xen-mmuext.h \
+ vki/vki-xen-sysctl.h \
+ vki/vki-xen-version.h \
+ vki/vki-xen-x86.h \
vki/vki-linux-drm.h
|