summaryrefslogtreecommitdiff
path: root/win32/include/Makefile.am
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2004-09-06 18:34:37 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2004-09-06 18:34:37 +0000
commit261088452aebcd55874ba9cfdea8bbc6534122a0 (patch)
treea02f0717c43f30d7fb55e6a9f4e0d4134798ba63 /win32/include/Makefile.am
parente1ea9c13f9d15c4f9bf1372678fe9827be626be0 (diff)
downloadxine-lib-261088452aebcd55874ba9cfdea8bbc6534122a0.tar.gz
xine-lib-261088452aebcd55874ba9cfdea8bbc6534122a0.tar.bz2
Updates:
- usability MSVC for frontends - remove unistd.h from public headers - add configure option "--with-dxheaders" - install .def file under WIN32 - MSVC port update (some people might want it) CVS patchset: 6944 CVS date: 2004/09/06 18:34:37
Diffstat (limited to 'win32/include/Makefile.am')
-rw-r--r--win32/include/Makefile.am24
1 files changed, 24 insertions, 0 deletions
diff --git a/win32/include/Makefile.am b/win32/include/Makefile.am
new file mode 100644
index 000000000..1b13e092b
--- /dev/null
+++ b/win32/include/Makefile.am
@@ -0,0 +1,24 @@
+include $(top_srcdir)/misc/Makefile.common
+
+msvc_headers = \
+ msvc/inttypes.h \
+ msvc/stdint.h \
+ msvc/sys/time.h
+
+if WIN32
+ install_h = $(msvc_headers)
+else
+ dist_h = $(msvc_headers)
+endif
+
+EXTRA_DIST = $(dist_h) \
+ sys/socket.h \
+ msvc/config.h \
+ netinet/in.h \
+ sys/socket.h \
+ dlfcn.h \
+ netdb.h \
+ pwd.h \
+ unistd.h
+
+nobase_include_HEADERS = $(install_h)