# Patch created by kt # Date: Di Aug 16 22:32:40 CEST 2005 # Repository: pnet # Comments: # # 2005-08-15 Klaus Treichel # # Start changes to make a tarball created with make dist build. # #### End of Preamble #### #### Patch data follows #### Index: ChangeLog =================================================================== RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v retrieving revision 1.3197 diff -c -r1.3197 ChangeLog *** ChangeLog 15 Aug 2005 19:59:12 -0000 1.3197 --- ChangeLog 16 Aug 2005 20:33:02 -0000 *************** *** 1,3 **** --- 1,12 ---- + 2005-08-16 Klaus Treichel + + * Makefile.am: add profiles to EXTRA_DIST. + + * libffi/Makefile.am, libffi.Makefile.in: Fix problems with make dist + and add missing filed for build to EXTRA_DIST. + + * coremul/Makefile.am: Add headers to EXTRA_DIST. + 2005-08-15 Klaus Treichel * Makefile.am: add coremul to SUBDIRS. Index: Makefile.am =================================================================== RCS file: /cvsroot/dotgnu-pnet/pnet/Makefile.am,v retrieving revision 1.30 diff -c -r1.30 Makefile.am *** Makefile.am 15 Aug 2005 19:59:12 -0000 1.30 --- Makefile.am 16 Aug 2005 20:33:09 -0000 *************** *** 1,3 **** --- 1,8 ---- + EXTRA_DIST = config-ml.in profiles/compact profiles/compact-fp \ + profiles/full profiles/full-tl profiles/kernel \ + profiles/kernel-fp profiles/mkprofile.sh profiles/README \ + profiles/tiny + if USING_LIBFFI LIBFFI_DIR = libffi else Index: coremul/Makefile.am =================================================================== RCS file: /cvsroot/dotgnu-pnet/pnet/coremul/Makefile.am,v retrieving revision 1.1 diff -c -r1.1 Makefile.am *** coremul/Makefile.am 13 Feb 2003 05:24:44 -0000 1.1 --- coremul/Makefile.am 16 Aug 2005 20:33:17 -0000 *************** *** 1,6 **** --- 1,12 ---- lib_LIBRARIES = libILCorEmul.a + EXTRA_DIST = cor.h \ + corhdr.h \ + corole2.h \ + corwin32.h \ + corwinerror.h + libILCorEmul_a_SOURCES = cocreate.cpp \ guid.cpp \ shim.c Index: libffi/Makefile.am =================================================================== RCS file: /cvsroot/dotgnu-pnet/pnet/libffi/Makefile.am,v retrieving revision 1.8 diff -c -r1.8 Makefile.am *** libffi/Makefile.am 30 Jul 2005 19:00:13 -0000 1.8 --- libffi/Makefile.am 16 Aug 2005 20:33:31 -0000 *************** *** 5,11 **** SUBDIRS = include ! EXTRA_DIST = LICENSE ChangeLog.v1 \ src/alpha/ffi.c src/alpha/osf.S src/alpha/ffitarget.h \ src/arm/ffi.c src/arm/sysv.S src/arm/ffitarget.h \ src/cris/ffi.c src/cris/sysv.S src/cris/ffitarget.h \ --- 5,11 ---- SUBDIRS = include ! EXTRA_DIST = LICENSE ChangeLog.v1 configure.host libtool-version \ src/alpha/ffi.c src/alpha/osf.S src/alpha/ffitarget.h \ src/arm/ffi.c src/arm/sysv.S src/arm/ffitarget.h \ src/cris/ffi.c src/cris/sysv.S src/cris/ffitarget.h \ Index: libffi/Makefile.in =================================================================== RCS file: /cvsroot/dotgnu-pnet/pnet/libffi/Makefile.in,v retrieving revision 1.10 diff -c -r1.10 Makefile.in *** libffi/Makefile.in 13 Aug 2005 17:47:52 -0000 1.10 --- libffi/Makefile.in 16 Aug 2005 20:33:42 -0000 *************** *** 60,66 **** @SH_TRUE@am__append_19 = src/sh/sysv.S src/sh/ffi.c @SH64_TRUE@am__append_20 = src/sh64/sysv.S src/sh64/ffi.c @PA_TRUE@am__append_21 = src/pa/linux.S src/pa/ffi.c ! DIST_COMMON = README $(am__configure_deps) $(srcdir)/../compile \ $(srcdir)/../config.guess $(srcdir)/../config.sub \ $(srcdir)/../install-sh \ $(srcdir)/../ltmain.sh $(srcdir)/../missing \ --- 60,66 ---- @SH_TRUE@am__append_19 = src/sh/sysv.S src/sh/ffi.c @SH64_TRUE@am__append_20 = src/sh64/sysv.S src/sh64/ffi.c @PA_TRUE@am__append_21 = src/pa/linux.S src/pa/ffi.c ! DIST_COMMON = README $(am__configure_deps) \ $(srcdir)/../config.guess $(srcdir)/../config.sub \ $(srcdir)/../install-sh \ $(srcdir)/../ltmain.sh $(srcdir)/../missing \ *************** *** 338,344 **** AUTOMAKE_OPTIONS = foreign subdir-objects ACLOCAL_AMFLAGS = -I .. SUBDIRS = include ! EXTRA_DIST = LICENSE ChangeLog.v1 \ src/alpha/ffi.c src/alpha/osf.S src/alpha/ffitarget.h \ src/arm/ffi.c src/arm/sysv.S src/arm/ffitarget.h \ src/cris/ffi.c src/cris/sysv.S src/cris/ffitarget.h \ --- 338,344 ---- AUTOMAKE_OPTIONS = foreign subdir-objects ACLOCAL_AMFLAGS = -I .. SUBDIRS = include ! EXTRA_DIST = LICENSE ChangeLog.v1 configure.host libtool-version \ src/alpha/ffi.c src/alpha/osf.S src/alpha/ffitarget.h \ src/arm/ffi.c src/arm/sysv.S src/arm/ffitarget.h \ src/cris/ffi.c src/cris/sysv.S src/cris/ffitarget.h \ #### End of Patch data ####