5b31f27f6d
* Makefile.common (zlib_source): Remove. (zlib_build): Remove. (bz2lib_source): Remove. (bz2lib_build): Remove. (w32api_source): Remove. (w32api_build): Remove. (w32api_lib): Remove. (mingw_build): Remove. (mingw_source): Remove. ($(w32api_lib)/%.a): Remove rule. * Makefile.in (ZLIB): Remove. ($(SUBDIRS)): Drop mingw check. (mingw): Remove rule. (install_mingw): Ditto. * configure.in: Remove support for mingw as build target. * configure: Regenerate. utils: * Makefile.in ($(MINGW_BINS)): Drop -B$(mingw_build)/ from build expression.
45 lines
927 B
Plaintext
Executable File
45 lines
927 B
Plaintext
Executable File
dnl Autoconf configure script for Cygwin.
|
|
dnl Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2006,
|
|
dnl 2009 Red Hat, Inc.
|
|
dnl
|
|
dnl This file is part of Cygwin.
|
|
dnl
|
|
dnl This software is a copyrighted work licensed under the terms of the
|
|
dnl Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
dnl details.
|
|
dnl
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ(2.59)dnl
|
|
AC_INIT(Makefile.in)
|
|
|
|
INSTALL=`cd $srcdir/..; echo $(pwd)/install-sh -c`
|
|
|
|
AC_PROG_INSTALL
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
GCC_NO_EXECUTABLES
|
|
|
|
LIB_AC_PROG_CC
|
|
LIB_AC_PROG_CXX
|
|
|
|
AC_LANG_C
|
|
|
|
INSTALL_LICENSE=
|
|
|
|
case "$target" in
|
|
*cygwin*)
|
|
if ! test -d $srcdir/cygwin; then
|
|
AC_MSG_ERROR("No cygwin dir. Can't build Cygwin. Exiting...")
|
|
fi
|
|
AC_CONFIG_SUBDIRS(cygwin cygserver lsaauth utils doc)
|
|
INSTALL_LICENSE="install-license"
|
|
;;
|
|
esac
|
|
|
|
AC_SUBST(INSTALL_LICENSE)
|
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
AC_OUTPUT(Makefile)
|