mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-29 08:09:03 +00:00
Fix the MS-Windows build using the Posix configury.
w32/Makefile.am (libw32_a_SOURCES): Add compat/posixfcn.c. configure.ac (OUTPUT_SYNC): Define for mingw32 target.
This commit is contained in:
parent
cece7ad61f
commit
80183457ad
3 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,8 @@
|
||||||
2013-05-18 Eli Zaretskii <eliz@gnu.org>
|
2013-05-18 Alexey Pavlov <alexpux@gmail.com> (tiny change)
|
||||||
|
|
||||||
|
* w32/Makefile.am (libw32_a_SOURCES): Add compat/posixfcn.c.
|
||||||
|
|
||||||
|
* configure.ac (OUTPUT_SYNC): Define for mingw32 target.
|
||||||
|
|
||||||
* job.c (construct_command_argv_internal) <sh_cmds_dos>
|
* job.c (construct_command_argv_internal) <sh_cmds_dos>
|
||||||
[WINDOWS32]: Add "move". Fixes Savannah bug #30714.
|
[WINDOWS32]: Add "move". Fixes Savannah bug #30714.
|
||||||
|
|
|
@ -428,6 +428,7 @@ AS_CASE([$host],
|
||||||
[AM_CONDITIONAL([WINDOWSENV], [true])
|
[AM_CONDITIONAL([WINDOWSENV], [true])
|
||||||
w32_target_env=yes
|
w32_target_env=yes
|
||||||
AC_DEFINE([WINDOWS32], [1], [Use platform specific coding])
|
AC_DEFINE([WINDOWS32], [1], [Use platform specific coding])
|
||||||
|
AC_DEFINE([OUTPUT_SYNC], [1], [Support synchronized output])
|
||||||
AC_DEFINE([HAVE_DOS_PATHS], [1], [Use platform specific coding])
|
AC_DEFINE([HAVE_DOS_PATHS], [1], [Use platform specific coding])
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,6 @@
|
||||||
noinst_LIBRARIES = libw32.a
|
noinst_LIBRARIES = libw32.a
|
||||||
|
|
||||||
libw32_a_SOURCES = subproc/misc.c subproc/sub_proc.c subproc/w32err.c \
|
libw32_a_SOURCES = subproc/misc.c subproc/sub_proc.c subproc/w32err.c \
|
||||||
pathstuff.c
|
compat/posixfcn.c pathstuff.c
|
||||||
|
|
||||||
libw32_a_CPPFLAGS = -I$(srcdir)/include -I$(srcdir)/subproc -I$(top_srcdir)
|
libw32_a_CPPFLAGS = -I$(srcdir)/include -I$(srcdir)/subproc -I$(top_srcdir)
|
||||||
|
|
Loading…
Reference in a new issue