Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEarnie Boyd <earnie@users.sf.net>2012-08-02 05:53:55 +0400
committerEarnie Boyd <earnie@users.sf.net>2012-08-02 05:53:55 +0400
commitb766e1bfdfffe4972110a967de86dec49e459e66 (patch)
treec8c2c61341c54ac9d156d543a26cda8740f7de50 /winsup/w32api
parenta2e6f7e2ef1becf86f0a61443b35306e9b8b33c2 (diff)
* lib/Makefile.in (amvideo.h): Dependencies are not met making this file
implementation incomplete. Do not deliver it. (amaudio.h): Ditto.
Diffstat (limited to 'winsup/w32api')
-rw-r--r--winsup/w32api/ChangeLog3
-rw-r--r--winsup/w32api/lib/Makefile.in9
2 files changed, 11 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 5d7f389d2..b740a1e41 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -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>
diff --git a/winsup/w32api/lib/Makefile.in b/winsup/w32api/lib/Makefile.in
index 97201566a..d918f680f 100644
--- a/winsup/w32api/lib/Makefile.in
+++ b/winsup/w32api/lib/Makefile.in
@@ -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 \