winsup:
* configure.in: Configure winsup/cygserver regardless of cross_host. * configure: Regenerate. winsup/cygwin: * configure.in: Define LIBSERVER regardless of cross_host. * configure: Regenerate.
This commit is contained in:
parent
93a4d9d97c
commit
9ce2a54f70
|
@ -1,3 +1,8 @@
|
||||||
|
2011-01-28 Peter Foley <jpfoley2@verizon.net>
|
||||||
|
|
||||||
|
* configure.in: Configure winsup/cygserver regardless of cross_host.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2009-07-07 Dave Korn <dave.korn.cygwin@gmail.com>
|
2009-07-07 Dave Korn <dave.korn.cygwin@gmail.com>
|
||||||
|
|
||||||
* Makefile.common (COMPILE_CXX): Add support for per-file overrides
|
* Makefile.common (COMPILE_CXX): Add support for per-file overrides
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -45,7 +45,7 @@ esac
|
||||||
if test -d $srcdir/mingw; then
|
if test -d $srcdir/mingw; then
|
||||||
AC_CONFIG_SUBDIRS(mingw)
|
AC_CONFIG_SUBDIRS(mingw)
|
||||||
fi
|
fi
|
||||||
AC_CONFIG_SUBDIRS(w32api)
|
AC_CONFIG_SUBDIRS(w32api cygserver)
|
||||||
|
|
||||||
case "$with_cross_host" in
|
case "$with_cross_host" in
|
||||||
""|*cygwin*)
|
""|*cygwin*)
|
||||||
|
@ -58,7 +58,7 @@ case "$with_cross_host" in
|
||||||
if test -d $srcdir/lsaauth; then
|
if test -d $srcdir/lsaauth; then
|
||||||
AC_CONFIG_SUBDIRS(lsaauth)
|
AC_CONFIG_SUBDIRS(lsaauth)
|
||||||
fi
|
fi
|
||||||
AC_CONFIG_SUBDIRS(cygserver utils doc)
|
AC_CONFIG_SUBDIRS(utils doc)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2011-01-28 Peter Foley <jpfoley2@verizon.net>
|
||||||
|
|
||||||
|
* configure.in: Define LIBSERVER regardless of cross_host.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-01-28 Corinna Vinschen <corinna@vinschen.de>
|
2011-01-28 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* fhandler_socket.cc (fhandler_socket::wait_for_events): Call
|
* fhandler_socket.cc (fhandler_socket::wait_for_events): Call
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -25,15 +25,15 @@ case "$with_cross_host" in
|
||||||
""|*cygwin*)
|
""|*cygwin*)
|
||||||
all_host="all_host"
|
all_host="all_host"
|
||||||
install_host="install_host"
|
install_host="install_host"
|
||||||
LIBSERVER='$(bupdir)/cygserver/libcygserver.a'
|
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
all_host=
|
all_host=
|
||||||
install_host=
|
install_host=
|
||||||
LIBSERVER=
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
LIBSERVER='$(bupdir)/cygserver/libcygserver.a'
|
||||||
|
|
||||||
AC_SUBST(all_host)
|
AC_SUBST(all_host)
|
||||||
AC_SUBST(install_host)
|
AC_SUBST(install_host)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue