* lib/Makefile.in (amvideo.h): Dependencies are not met making this file

implementation incomplete.  Do not deliver it.
	(amaudio.h): Ditto.
This commit is contained in:
Earnie Boyd 2012-08-02 01:53:55 +00:00
parent a2e6f7e2ef
commit b766e1bfdf
2 changed files with 11 additions and 1 deletions

View File

@ -20,6 +20,9 @@
(InterlockedIncrement): Ditto.
(InterlockedExchange): Ditto.
* include/winnt.h (MemoryBarrier): Add definition.
* lib/Makefile.in (amvideo.h): Dependencies are not met making this file
implementation incomplete. Do not deliver it.
(amaudio.h): Ditto.
2012-07-29 Earnie Boyd <earnie@users.sourceforge.net>

View File

@ -131,7 +131,14 @@ install-libraries: all $(need-DESTDIR-compatibility)
install-headers: $(need-DESTDIR-compatibility)
$(mkinstalldirs) $(DESTDIR)${inst_includedir}
for file in $(HEADERS); do \
$(INSTALL_DATA) ${top_srcdir}/include/$$file $(DESTDIR)${inst_includedir}; \
case $$file in \
amvideo.h | amaudio.h) \
echo Not installing $$file \
;; \
*) \
$(INSTALL_DATA) ${top_srcdir}/include/$$file $(DESTDIR)${inst_includedir}; \
;; \
esac \
done
$(mkinstalldirs) $(DESTDIR)${inst_includedir}/GL
for file in $(GL_HEADERS); do \