diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-03-24 23:31:56 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-03-24 23:31:56 +0000 |
commit | fceae5849b57feab320e768696564b3b93bcddc7 (patch) | |
tree | 7e0ea6e409c2781b7c1a2d6f762283d07af576c8 /src/demuxers | |
parent | 75960283e292df4e37078a68fbb9eea9cc20a76c (diff) | |
download | xine-lib-fceae5849b57feab320e768696564b3b93bcddc7.tar.gz xine-lib-fceae5849b57feab320e768696564b3b93bcddc7.tar.bz2 |
Get rid of GLOBAL_CFLAGS, use CFLAGS instead. Note: maybe things are broken
now, so check and report, thanks.
CVS patchset: 1629
CVS date: 2002/03/24 23:31:56
Diffstat (limited to 'src/demuxers')
-rw-r--r-- | src/demuxers/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am index fc121d011..6654f244b 100644 --- a/src/demuxers/Makefile.am +++ b/src/demuxers/Makefile.am @@ -1,4 +1,4 @@ -CFLAGS = @GLOBAL_CFLAGS@ @OGG_CFLAGS@ +CFLAGS = @CFLAGS@ $(OGG_CFLAGS) LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic @@ -29,7 +29,7 @@ lib_LTLIBRARIES = $(ogg_module) $(qt_modules) $(asf_module) xineplug_dmx_avi.la xineplug_dmx_cda.la xineplug_dmx_ogg_la_SOURCES = demux_ogg.c -xineplug_dmx_ogg_la_LIBADD = @OGG_LIBS@ +xineplug_dmx_ogg_la_LIBADD = $(OGG_LIBS) xineplug_dmx_ogg_la_LDFLAGS = -avoid-version -module xineplug_dmx_avi_la_SOURCES = demux_avi.c |