mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
- dodge compiling memchunk and bufspeed if NASM is not present
Original commit message from CVS: - dodge compiling memchunk and bufspeed if NASM is not present
This commit is contained in:
parent
0050b2af50
commit
769cc8e90c
2 changed files with 14 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-01-15 Bastien Nocera <hadess@hadess.net>
|
||||
|
||||
* tests/Makefile.am: dodge compiling memchunk and bufspeed
|
||||
if NASM is not present
|
||||
|
||||
2002-01-03 Rodney Dawes <dobey@free.fr>
|
||||
|
||||
* gstreamer.spec.in: Fixed the missing plug-ins problem
|
||||
|
|
|
@ -1,4 +1,12 @@
|
|||
SUBDIRS = bufspeed memchunk muxing sched
|
||||
# This directory depends on an x86 computer, so if nasm is present, we're good
|
||||
# complain to hadess@hadess.net
|
||||
if HAVE_NASM
|
||||
NASMDEP_DIR=bufspeed memchunk
|
||||
else
|
||||
NASMDEP_DIR=
|
||||
endif
|
||||
|
||||
SUBDIRS = $(NASMDEP_DIR) muxing sched
|
||||
|
||||
noinst_PROGRAMS = lat
|
||||
|
||||
|
|
Loading…
Reference in a new issue