Deleted Added
full compact
configure.in (157184) configure.in (165670)
1dnl
2dnl Configure script for readline library
3dnl
4dnl report bugs to chet@po.cwru.edu
5dnl
6dnl Process this file with autoconf to produce a configure script.
7
8# Copyright (C) 1987-2005 Free Software Foundation, Inc.

--- 8 unchanged lines hidden (view full) ---

17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23# 02111-1307, USA.
24
1dnl
2dnl Configure script for readline library
3dnl
4dnl report bugs to chet@po.cwru.edu
5dnl
6dnl Process this file with autoconf to produce a configure script.
7
8# Copyright (C) 1987-2005 Free Software Foundation, Inc.

--- 8 unchanged lines hidden (view full) ---

17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23# 02111-1307, USA.
24
25AC_REVISION([for Readline 5.1, version 2.59])
25AC_REVISION([for Readline 5.2, version 2.61])
26
26
27AC_INIT(readline, 5.1-release, bug-readline@gnu.org)
27AC_INIT(readline, 5.2, bug-readline@gnu.org)
28
29dnl make sure we are using a recent autoconf version
30AC_PREREQ(2.50)
31
32AC_CONFIG_SRCDIR(readline.h)
33AC_CONFIG_AUX_DIR(./support)
34AC_CONFIG_HEADERS(config.h)
35
36dnl update the value of RL_READLINE_VERSION in readline.h when this changes
28
29dnl make sure we are using a recent autoconf version
30AC_PREREQ(2.50)
31
32AC_CONFIG_SRCDIR(readline.h)
33AC_CONFIG_AUX_DIR(./support)
34AC_CONFIG_HEADERS(config.h)
35
36dnl update the value of RL_READLINE_VERSION in readline.h when this changes
37LIBVERSION=5.1
37LIBVERSION=5.2
38
39AC_CANONICAL_HOST
40
41dnl configure defaults
42opt_curses=no
43opt_purify=no
44
45dnl arguments to configure

--- 24 unchanged lines hidden (view full) ---

70fi
71
72dnl load up the cross-building cache file -- add more cases and cache
73dnl files as necessary
74
75dnl Note that host and target machine are the same, and different than the
76dnl build machine.
77
38
39AC_CANONICAL_HOST
40
41dnl configure defaults
42opt_curses=no
43opt_purify=no
44
45dnl arguments to configure

--- 24 unchanged lines hidden (view full) ---

70fi
71
72dnl load up the cross-building cache file -- add more cases and cache
73dnl files as necessary
74
75dnl Note that host and target machine are the same, and different than the
76dnl build machine.
77
78CROSS_COMPILE=
78if test "x$cross_compiling" = "xyes"; then
79 case "${host}" in
80 *-cygwin*)
81 cross_cache=${srcdir}/cross-build/cygwin.cache
82 ;;
83 *-mingw*)
84 cross_cache=${srcdir}/cross-build/mingw.cache
85 ;;

--- 210 unchanged lines hidden ---
79if test "x$cross_compiling" = "xyes"; then
80 case "${host}" in
81 *-cygwin*)
82 cross_cache=${srcdir}/cross-build/cygwin.cache
83 ;;
84 *-mingw*)
85 cross_cache=${srcdir}/cross-build/mingw.cache
86 ;;

--- 210 unchanged lines hidden ---