diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2012-10-24 10:11:15 +0000 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2012-10-24 10:11:15 +0000 |
commit | 68157644d15d2486a3602eb1dcec91da029ca992 (patch) | |
tree | e9130bec665fa837e605a1903c962508296863ea /winsup/configure.in | |
parent | 02fbb3bb593e6c090439a14a321256fcd3a9241e (diff) | |
download | cygnal-68157644d15d2486a3602eb1dcec91da029ca992.tar.gz cygnal-68157644d15d2486a3602eb1dcec91da029ca992.tar.bz2 cygnal-68157644d15d2486a3602eb1dcec91da029ca992.zip |
2012-10-24 Kai Tietz <ktietz70@googlemail.com>
Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Corinna Vinschen <corinna@vinschen.de>
* configure.in [cygwin*]: Always build cygserver, lsaauth,
utils, and doc. Do not build mingw or w32api.
[mingw*]: Build w32api if present.
* configure: Regenerate.
* Makefile.common: Remove references to mingw and w32api
directories.
(MINGW_LDFLAGS): Redefine as -static to force static linking
with libgcc and libstdc++.
* Makefile.in: Remove references to mingw and w32api directories
from Cygwin targets.
Diffstat (limited to 'winsup/configure.in')
-rwxr-xr-x | winsup/configure.in | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/winsup/configure.in b/winsup/configure.in index c40d3d2c4..a1625d514 100755 --- a/winsup/configure.in +++ b/winsup/configure.in @@ -32,33 +32,17 @@ case "$target" in if ! test -d $srcdir/cygwin; then AC_MSG_ERROR("No cygwin dir. Can't build Cygwin. Exiting...") fi - AC_CONFIG_SUBDIRS(cygwin) + AC_CONFIG_SUBDIRS(cygwin cygserver lsaauth utils doc) INSTALL_LICENSE="install-license" ;; *mingw*) if ! test -d $srcdir/mingw; then AC_MSG_ERROR("No mingw dir. Can't build Mingw. Exiting...") fi - ;; -esac - -if test -d $srcdir/mingw; then - AC_CONFIG_SUBDIRS(mingw) -fi -AC_CONFIG_SUBDIRS(w32api cygserver) - -case "$with_cross_host" in - ""|*cygwin*) - # if test -d $srcdir/bz2lib; then - # AC_CONFIG_SUBDIRS(bz2lib) - # fi - # if test -d $srcdir/zlib; then - # AC_CONFIG_SUBDIRS(zlib) - # fi - if test -d $srcdir/lsaauth; then - AC_CONFIG_SUBDIRS(lsaauth) + AC_CONFIG_SUBDIRS(mingw) + if test -d $srcdir/w32api; then + AC_CONFIG_SUBDIRS(w32api) fi - AC_CONFIG_SUBDIRS(utils doc) ;; esac |