mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
Add autotools-fix-make-dist.patch to fix dist target of sbsms.
This commit is contained in:
parent
d08f0da2bd
commit
7fefc64aa8
@ -228,6 +228,8 @@ same ends by better means, replacing a hacked version from Gentoo. Patch
|
||||
linked to from upstream tracker at
|
||||
https://sourceforge.net/tracker/index.php?func=detail&aid=2561247&group_id=177794&atid=882654
|
||||
because attachements there don't seem to work.
|
||||
autotools.patch: Fix all autotools warnings.
|
||||
autotools-fix-make-dist.patch: Correct file lists to make dist target work.
|
||||
|
||||
soundtouch
|
||||
----------
|
||||
|
@ -3,8 +3,15 @@ SUBDIRS = src
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = sbsms.pc
|
||||
|
||||
libtool: $(LIBTOOL_DEPS)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
#tell aclocal that extra macros can be found in m4/
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
EXTRA_DIST = \
|
||||
build/macosx.sh \
|
||||
win/config.h \
|
||||
win/sbsms/sbsms.ICO \
|
||||
win/sbsms/sbsms.rc \
|
||||
win/sbsms/sbsms.sln \
|
||||
win/sbsms/sbsms.vcproj \
|
||||
win/sbsms/sbsms.wxs \
|
||||
$(NULL)
|
||||
|
@ -359,6 +359,16 @@ pkgconfig_DATA = sbsms.pc
|
||||
|
||||
#tell aclocal that extra macros can be found in m4/
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
EXTRA_DIST = \
|
||||
build/macosx.sh \
|
||||
win/config.h \
|
||||
win/sbsms/sbsms.ICO \
|
||||
win/sbsms/sbsms.rc \
|
||||
win/sbsms/sbsms.sln \
|
||||
win/sbsms/sbsms.vcproj \
|
||||
win/sbsms/sbsms.wxs \
|
||||
$(NULL)
|
||||
|
||||
all: all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
@ -846,9 +856,6 @@ uninstall-am: uninstall-pkgconfigDATA
|
||||
uninstall-am uninstall-pkgconfigDATA
|
||||
|
||||
|
||||
libtool: $(LIBTOOL_DEPS)
|
||||
$(SHELL) ./config.status --recheck
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
|
59
lib-src/sbsms/autotools-fix-make-dist.patch
Normal file
59
lib-src/sbsms/autotools-fix-make-dist.patch
Normal file
@ -0,0 +1,59 @@
|
||||
Index: Makefile.am
|
||||
===================================================================
|
||||
--- Makefile.am (revision 12902)
|
||||
+++ Makefile.am (working copy)
|
||||
@@ -3,8 +3,15 @@
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = sbsms.pc
|
||||
|
||||
-libtool: $(LIBTOOL_DEPS)
|
||||
- $(SHELL) ./config.status --recheck
|
||||
-
|
||||
#tell aclocal that extra macros can be found in m4/
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
+
|
||||
+EXTRA_DIST = \
|
||||
+ build/macosx.sh \
|
||||
+ win/config.h \
|
||||
+ win/sbsms/sbsms.ICO \
|
||||
+ win/sbsms/sbsms.rc \
|
||||
+ win/sbsms/sbsms.sln \
|
||||
+ win/sbsms/sbsms.vcproj \
|
||||
+ win/sbsms/sbsms.wxs \
|
||||
+ $(NULL)
|
||||
Index: src/Makefile.am
|
||||
===================================================================
|
||||
--- src/Makefile.am (revision 12902)
|
||||
+++ src/Makefile.am (working copy)
|
||||
@@ -4,4 +4,30 @@
|
||||
libsbsmsinclude_HEADERS = ../include/sbsms.h
|
||||
|
||||
lib_LTLIBRARIES = libsbsms.la
|
||||
-libsbsms_la_SOURCES = sms.cpp track.cpp trackpoint.cpp resample.cpp sbsms.cpp fft.cpp grain.cpp buffer.cpp dBTable.cpp slide.cpp dBTable.h synthTable.h sse.h subband.cpp buffer.h fft.h utils.h trackpoint.h grain.h real.h resample.h ../include/sbsms.h sms.h subband.h track.h
|
||||
+libsbsms_la_SOURCES = \
|
||||
+ sms.cpp \
|
||||
+ track.cpp \
|
||||
+ trackpoint.cpp \
|
||||
+ resample.cpp \
|
||||
+ sbsms.cpp \
|
||||
+ fft.cpp \
|
||||
+ grain.cpp \
|
||||
+ buffer.cpp \
|
||||
+ dBTable.cpp \
|
||||
+ slide.cpp \
|
||||
+ dBTable.h \
|
||||
+ sincCoeffs.h \
|
||||
+ synthTable.h \
|
||||
+ sse.h \
|
||||
+ subband.cpp \
|
||||
+ buffer.h \
|
||||
+ fft.h \
|
||||
+ utils.h \
|
||||
+ trackpoint.h \
|
||||
+ grain.h \
|
||||
+ real.h \
|
||||
+ ../include/sbsms.h \
|
||||
+ sms.h \
|
||||
+ subband.h \
|
||||
+ track.h \
|
||||
+ $(NULL)
|
@ -4,4 +4,30 @@ libsbsmsincludedir = $(includedir)
|
||||
libsbsmsinclude_HEADERS = ../include/sbsms.h
|
||||
|
||||
lib_LTLIBRARIES = libsbsms.la
|
||||
libsbsms_la_SOURCES = sms.cpp track.cpp trackpoint.cpp resample.cpp sbsms.cpp fft.cpp grain.cpp buffer.cpp dBTable.cpp slide.cpp dBTable.h synthTable.h sse.h subband.cpp buffer.h fft.h utils.h trackpoint.h grain.h real.h resample.h ../include/sbsms.h sms.h subband.h track.h
|
||||
libsbsms_la_SOURCES = \
|
||||
sms.cpp \
|
||||
track.cpp \
|
||||
trackpoint.cpp \
|
||||
resample.cpp \
|
||||
sbsms.cpp \
|
||||
fft.cpp \
|
||||
grain.cpp \
|
||||
buffer.cpp \
|
||||
dBTable.cpp \
|
||||
slide.cpp \
|
||||
dBTable.h \
|
||||
sincCoeffs.h \
|
||||
synthTable.h \
|
||||
sse.h \
|
||||
subband.cpp \
|
||||
buffer.h \
|
||||
fft.h \
|
||||
utils.h \
|
||||
trackpoint.h \
|
||||
grain.h \
|
||||
real.h \
|
||||
../include/sbsms.h \
|
||||
sms.h \
|
||||
subband.h \
|
||||
track.h \
|
||||
$(NULL)
|
||||
|
@ -343,7 +343,34 @@ AM_CXXFLAGS = -I../include @SBSMS_CFLAGS@
|
||||
libsbsmsincludedir = $(includedir)
|
||||
libsbsmsinclude_HEADERS = ../include/sbsms.h
|
||||
lib_LTLIBRARIES = libsbsms.la
|
||||
libsbsms_la_SOURCES = sms.cpp track.cpp trackpoint.cpp resample.cpp sbsms.cpp fft.cpp grain.cpp buffer.cpp dBTable.cpp slide.cpp dBTable.h synthTable.h sse.h subband.cpp buffer.h fft.h utils.h trackpoint.h grain.h real.h resample.h ../include/sbsms.h sms.h subband.h track.h
|
||||
libsbsms_la_SOURCES = \
|
||||
sms.cpp \
|
||||
track.cpp \
|
||||
trackpoint.cpp \
|
||||
resample.cpp \
|
||||
sbsms.cpp \
|
||||
fft.cpp \
|
||||
grain.cpp \
|
||||
buffer.cpp \
|
||||
dBTable.cpp \
|
||||
slide.cpp \
|
||||
dBTable.h \
|
||||
sincCoeffs.h \
|
||||
synthTable.h \
|
||||
sse.h \
|
||||
subband.cpp \
|
||||
buffer.h \
|
||||
fft.h \
|
||||
utils.h \
|
||||
trackpoint.h \
|
||||
grain.h \
|
||||
real.h \
|
||||
../include/sbsms.h \
|
||||
sms.h \
|
||||
subband.h \
|
||||
track.h \
|
||||
$(NULL)
|
||||
|
||||
all: config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-am
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user