* 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:
parent
a2e6f7e2ef
commit
b766e1bfdf
|
@ -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>
|
||||
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue