Skip to content

Commit

Permalink
fix tarball generation regression
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksiy-Yakovenko committed Dec 22, 2024
1 parent d80e6cc commit 813d083
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 8 deletions.
5 changes: 3 additions & 2 deletions plugins/dca/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pkglib_LTLIBRARIES = dca.la
dca_la_SOURCES = dcaplug.c\
libdca/audio_out.h\
libdca/bitstream.c\
libdca/bitstream.h
libdca/bitstream.h\
libdca/dca.h\
libdca/dca_internal.h\
libdca/downmix.c\
Expand All @@ -25,6 +25,7 @@ dca_la_SOURCES = dcaplug.c\
dca_la_LDFLAGS = -module -avoid-version
dca_la_LIBADD = $(LDADD) -lm

dca_la_CFLAGS = $(CFLAGS) -fPIC -std=c99 -I@top_srcdir@/include -Ilibdca
dcapath=@top_srcdir@/plugins/dca
dca_la_CFLAGS = $(CFLAGS) -fPIC -std=c99 -I@top_srcdir@/include -I$(dcapath)/libdca

endif
5 changes: 4 additions & 1 deletion plugins/psf/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ psf_la_SOURCES = plugin.c\
psf_la_LDFLAGS = -module -avoid-version $(ZLIB_LIBS)

psf_la_LIBADD = $(LDADD)
psf_la_CFLAGS = $(CFLAGS) $(ZLIB_CFLAGS) -Wall -DHAS_PSXCPU=1 -Iaosdk -I.. -Iaosdk/eng_ssf -Iaosdk/eng_qsf -Iaosdk/eng_dsf -lm -fPIC -I@top_srcdir@/include

psfpath=@top_srcdir@/plugins/psf

psf_la_CFLAGS = $(CFLAGS) $(ZLIB_CFLAGS) -Wall -DHAS_PSXCPU=1 -I$(psfpath)/aosdk -I$(psfpath)/.. -I$(psfpath)/aosdk/eng_ssf -I$(psfpath)/aosdk/eng_qsf -I$(psfpath)/aosdk/eng_dsf -lm -fPIC -I@top_srcdir@/include
endif

4 changes: 3 additions & 1 deletion plugins/shn/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ ddb_shn_la_SOURCES =\
ddb_shn_la_LDFLAGS = -module -avoid-version

ddb_shn_la_LIBADD = $(LDADD) -lm
ddb_shn_la_CFLAGS = $(CFLAGS) -std=c99 -I@top_srcdir@/include -Ilibshn

shnpath=@top_srcdir@/plugins/shn
ddb_shn_la_CFLAGS = $(CFLAGS) -std=c99 -I@top_srcdir@/include -I$(shnpath)/libshn
endif
5 changes: 3 additions & 2 deletions plugins/supereq/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ supereq_la_SOURCES =\
libsupereq/Fftsg_fl.c\
libsupereq/paramlist.hpp

supereq_la_CFLAGS = $(CFLAGS) -std=c99 -DUSE_OOURA -I@top_srcdir@/include -Ilibsupereq
supereq_la_CXXFLAGS = $(CXXFLAGS) -fno-exceptions -fno-rtti -fno-unwind-tables -DUSE_OOURA -I@top_srcdir@/include -Ilibsupereq
supereqpath=@top_srcdir@/plugins/supereq
supereq_la_CFLAGS = $(CFLAGS) -std=c99 -DUSE_OOURA -I@top_srcdir@/include -I$(supereqpath)/libsupereq
supereq_la_CXXFLAGS = $(CXXFLAGS) -fno-exceptions -fno-rtti -fno-unwind-tables -DUSE_OOURA -I@top_srcdir@/include -I$(supereqpath)/libsupereq

supereq_la_LDFLAGS = -module -avoid-version $(NOCPPLIB)

Expand Down
3 changes: 2 additions & 1 deletion plugins/tta/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ tta_la_SOURCES =\

tta_la_LDFLAGS = -module -avoid-version

tta_la_CFLAGS = $(CFLAGS) -std=c99 -fPIC -I@top_srcdir@/include -Ilibtta
ttapath=@top_srcdir@/plugins/tta
tta_la_CFLAGS = $(CFLAGS) -std=c99 -fPIC -I@top_srcdir@/include -I$(ttapath)/libtta
endif

3 changes: 2 additions & 1 deletion plugins/vtx/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ vtx_la_SOURCES =\

vtx_la_LDFLAGS = -module -avoid-version

vtx_la_CFLAGS = $(CFLAGS) -std=c99 -I@top_srcdir@/include -Ilibayemu
vtxpath=@top_srcdir@/plugins/vtx
vtx_la_CFLAGS = $(CFLAGS) -std=c99 -I@top_srcdir@/include -I$(vtxpath)/libayemu
endif
4 changes: 4 additions & 0 deletions po/POTFILES.in
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ plugins/gtkui/search.c
plugins/gtkui/selpropertieswidget.c
plugins/gtkui/trkproperties.c
plugins/gtkui/widgets.c
plugins/gtkui/scriptable/gtkScriptable.c
plugins/gtkui/scriptable/gtkScriptableListEditViewController.c
plugins/gtkui/scriptable/gtkScriptableListEditWindowController.c
plugins/gtkui/undointegration.c
plugins/hotkeys/actionhandlers.c
plugins/notify/notify.c
plugins/pltbrowser/pltbrowser.c
Expand Down

0 comments on commit 813d083

Please sign in to comment.