Reorganize modules utf8-ucs4-unsafe, utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4,
[gnulib.git] / modules / sys_select
index 80dc8fa..f182f26 100644 (file)
@@ -1,14 +1,17 @@
 Description:
-A <sys/select.h> for systems lacking it (e.g., Mingw).
+A <sys/select.h> for systems lacking it.
 
 Files:
+lib/sys_select_.h
 m4/sys_select_h.m4
 
 Depends-on:
+absolute-header
 sys_socket
 
 configure.ac:
 gl_HEADER_SYS_SELECT
+AC_PROG_MKDIR_P
 
 Makefile.am:
 BUILT_SOURCES += $(SYS_SELECT_H)
@@ -16,9 +19,13 @@ BUILT_SOURCES += $(SYS_SELECT_H)
 # We need the following in order to create <sys/select.h> when the system
 # doesn't have one that works with the given compiler.
 sys/select.h:
-       test -d sys || mkdir sys
+       @MKDIR_P@ sys
        rm -f $@-t $@
-       echo '#include <sys/socket.h>' >$@-t
+       { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+         sed -e 's|@''ABSOLUTE_SYS_SELECT_H''@|$(ABSOLUTE_SYS_SELECT_H)|g' \
+             -e 's|@''HAVE_SYS_SELECT_H''@|$(HAVE_SYS_SELECT_H)|g' \
+             < $(srcdir)/sys_select_.h; \
+       } > $@-t
        mv $@-t $@
 MOSTLYCLEANFILES += sys/select.h sys/select.h-t
 MOSTLYCLEANDIRS += sys