1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-09 16:41:14 +02:00

Add autotools-fix-make-dist.patch to fix dist target of portsmf.

This commit is contained in:
benjamin.drung@gmail.com 2013-11-08 00:11:20 +00:00
parent 7fefc64aa8
commit 718c8d8554
4 changed files with 117 additions and 19 deletions

View File

@ -201,6 +201,7 @@ http://portmedia.sourceforge.net/
Cross-platform Midi file reader and writer (succeeded and obsoltes allegro)
Version in Audacity SVN: SVN snapshot from 227
Patches: autotools.patch: Fix all autotools warnings.
autotools-fix-make-dist.patch: Correct file lists to make dist target work.
Upstream Version: SVN revision 227
portburn

View File

@ -32,15 +32,38 @@ include_HEADERS = allegro.h \
# files that only really viscous cleans remove
MAINTAINERCLEANFILES = Makefile.in
# other distributed files in case users don't have a complete set of auto*
AUX_DIST = $(ac_aux_dir)/config.guess \
$(ac_aux_dir)/config.sub \
$(ac_aux_dir)/install-sh \
$(ac_aux_dir)/mdate-sh \
$(ac_aux_dir)/missing \
$(ac_aux_dir)/mkinstalldirs \
$(MAINTAINERCLEANFILES)
# Documentation files that should be both distributed and installed in the doc
# directory,
dist_doc_DATA = README.txt license.txt
EXTRA_DIST = \
allegro.htm \
allegroserial.cpp \
apps/allegroconvert.cpp \
apps/allegroconvert.vcproj \
apps/allegroplay.cpp \
apps/midicode.h \
apps/seq2midi.cpp \
apps/seq2midi.h \
changelog.txt \
notes.txt \
portsmf-VC8.sln \
portsmf-VC8.vcproj \
portsmf.sln \
portsmf.suo \
portsmf.vcproj \
portsmf.xcodeproj \
portsmf.xcodeproj/project.pbxproj \
portsmf.xcodeproj/rbd.mode1 \
portsmf_test \
portsmf_test/Makefile.osx \
portsmf_test/portsmf_test-VC8.vcproj \
portsmf_test/portsmf_test.cpp \
portsmf_test/portsmf_test.vcproj \
portsmf_test/scale.gro \
portsmf_test/test.gro \
portsmf_test/test2.gro \
portsmf_test/test5.gro \
todo.txt \
trace.cpp \
$(NULL)

View File

@ -363,19 +363,41 @@ include_HEADERS = allegro.h \
# files that only really viscous cleans remove
MAINTAINERCLEANFILES = Makefile.in
# other distributed files in case users don't have a complete set of auto*
AUX_DIST = $(ac_aux_dir)/config.guess \
$(ac_aux_dir)/config.sub \
$(ac_aux_dir)/install-sh \
$(ac_aux_dir)/mdate-sh \
$(ac_aux_dir)/missing \
$(ac_aux_dir)/mkinstalldirs \
$(MAINTAINERCLEANFILES)
# Documentation files that should be both distributed and installed in the doc
# directory,
dist_doc_DATA = README.txt license.txt
EXTRA_DIST = \
allegro.htm \
allegroserial.cpp \
apps/allegroconvert.cpp \
apps/allegroconvert.vcproj \
apps/allegroplay.cpp \
apps/midicode.h \
apps/seq2midi.cpp \
apps/seq2midi.h \
changelog.txt \
notes.txt \
portsmf-VC8.sln \
portsmf-VC8.vcproj \
portsmf.sln \
portsmf.suo \
portsmf.vcproj \
portsmf.xcodeproj \
portsmf.xcodeproj/project.pbxproj \
portsmf.xcodeproj/rbd.mode1 \
portsmf_test \
portsmf_test/Makefile.osx \
portsmf_test/portsmf_test-VC8.vcproj \
portsmf_test/portsmf_test.cpp \
portsmf_test/portsmf_test.vcproj \
portsmf_test/scale.gro \
portsmf_test/test.gro \
portsmf_test/test2.gro \
portsmf_test/test5.gro \
todo.txt \
trace.cpp \
$(NULL)
all: all-am
.SUFFIXES:

View File

@ -0,0 +1,52 @@
Index: Makefile.am
===================================================================
--- Makefile.am (revision 12902)
+++ Makefile.am (working copy)
@@ -32,15 +32,38 @@
# files that only really viscous cleans remove
MAINTAINERCLEANFILES = Makefile.in
-# other distributed files in case users don't have a complete set of auto*
-AUX_DIST = $(ac_aux_dir)/config.guess \
- $(ac_aux_dir)/config.sub \
- $(ac_aux_dir)/install-sh \
- $(ac_aux_dir)/mdate-sh \
- $(ac_aux_dir)/missing \
- $(ac_aux_dir)/mkinstalldirs \
- $(MAINTAINERCLEANFILES)
-
# Documentation files that should be both distributed and installed in the doc
# directory,
dist_doc_DATA = README.txt license.txt
+
+EXTRA_DIST = \
+ allegro.htm \
+ allegroserial.cpp \
+ apps/allegroconvert.cpp \
+ apps/allegroconvert.vcproj \
+ apps/allegroplay.cpp \
+ apps/midicode.h \
+ apps/seq2midi.cpp \
+ apps/seq2midi.h \
+ changelog.txt \
+ notes.txt \
+ portsmf-VC8.sln \
+ portsmf-VC8.vcproj \
+ portsmf.sln \
+ portsmf.suo \
+ portsmf.vcproj \
+ portsmf.xcodeproj \
+ portsmf.xcodeproj/project.pbxproj \
+ portsmf.xcodeproj/rbd.mode1 \
+ portsmf_test \
+ portsmf_test/Makefile.osx \
+ portsmf_test/portsmf_test-VC8.vcproj \
+ portsmf_test/portsmf_test.cpp \
+ portsmf_test/portsmf_test.vcproj \
+ portsmf_test/scale.gro \
+ portsmf_test/test.gro \
+ portsmf_test/test2.gro \
+ portsmf_test/test5.gro \
+ todo.txt \
+ trace.cpp \
+ $(NULL)