diff options
author | Yang Tse <yangsita@gmail.com> | 2008-11-16 02:23:18 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-11-16 02:23:18 +0000 |
commit | 3f01d9a043664caa17e764d53c62b2bef58027a0 (patch) | |
tree | 6b8c8eb7251dae841a84af07553312bde909d546 /configure.ac | |
parent | dbc6fe3e84a592bf69f140311a79c9116e561ad8 (diff) | |
download | curl-3f01d9a043664caa17e764d53c62b2bef58027a0.tar.gz |
trim down configure script size
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac index ada25fc1c..54d435044 100644 --- a/configure.ac +++ b/configure.ac @@ -27,6 +27,8 @@ AC_PREREQ(2.57) dnl We don't know the version number "statically" so we use a dash here AC_INIT([curl], [-], [a suitable curl mailing list => http://curl.haxx.se/mail/]) +CURL_OVERRIDE_AUTOCONF + dnl configure script copyright AC_COPYRIGHT([Copyright (c) 1998 - 2008 Daniel Stenberg, <daniel@haxx.se> This configure script may be copied, distributed and modified under the @@ -153,22 +155,6 @@ AC_LIBTOOL_WIN32_DLL CURL_PROCESS_DEBUG_BUILD_OPTS -dnl skip libtool C++ and Fortran compiler checks -m4_ifdef([AC_PROG_CXX], [m4_undefine([AC_PROG_CXX])]) -m4_defun([AC_PROG_CXX],[]) -m4_ifdef([AC_PROG_CXXCPP], [m4_undefine([AC_PROG_CXXCPP])]) -m4_defun([AC_PROG_CXXCPP],[true]) -m4_ifdef([AC_PROG_F77], [m4_undefine([AC_PROG_F77])]) -m4_defun([AC_PROG_F77],[]) - -dnl skip libtool C++ and Fortran linker checks -m4_ifdef([AC_LIBTOOL_CXX], [m4_undefine([AC_LIBTOOL_CXX])]) -m4_defun([AC_LIBTOOL_CXX],[]) -m4_ifdef([AC_LIBTOOL_CXXCPP], [m4_undefine([AC_LIBTOOL_CXXCPP])]) -m4_defun([AC_LIBTOOL_CXXCPP],[true]) -m4_ifdef([AC_LIBTOOL_F77], [m4_undefine([AC_LIBTOOL_F77])]) -m4_defun([AC_LIBTOOL_F77],[]) - dnl force libtool to build static libraries with PIC on AMD64-Linux & FreeBSD AC_MSG_CHECKING([if arch-OS host is AMD64-Linux/FreeBSD (to build static libraries with PIC)]) case $host in |