| OLD | NEW |
| 1 #! /bin/sh | 1 #! /bin/sh |
| 2 # Guess values for system-dependent variables and create Makefiles. | 2 # Guess values for system-dependent variables and create Makefiles. |
| 3 # Generated by GNU Autoconf 2.68 for python 3.3. | 3 # Generated by GNU Autoconf 2.68 for python 3.3. |
| 4 # | 4 # |
| 5 # Report bugs to <http://bugs.python.org/>. | 5 # Report bugs to <http://bugs.python.org/>. |
| 6 # | 6 # |
| 7 # | 7 # |
| 8 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, | 8 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, |
| 9 # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software | 9 # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software |
| 10 # Foundation, Inc. | 10 # Foundation, Inc. |
| (...skipping 6584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6595 #endif | 6595 #endif |
| 6596 | 6596 |
| 6597 " | 6597 " |
| 6598 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : | 6598 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : |
| 6599 cat >>confdefs.h <<_ACEOF | 6599 cat >>confdefs.h <<_ACEOF |
| 6600 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 | 6600 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 |
| 6601 _ACEOF | 6601 _ACEOF |
| 6602 | 6602 |
| 6603 fi | 6603 fi |
| 6604 | 6604 |
| 6605 done |
| 6606 |
| 6607 |
| 6608 # On Linux, irda.h requires sys/socket.h |
| 6609 for ac_header in linux/irda.h |
| 6610 do : |
| 6611 ac_fn_c_check_header_compile "$LINENO" "linux/irda.h" "ac_cv_header_linux_irda
_h" " |
| 6612 #ifdef HAVE_SYS_SOCKET_H |
| 6613 #include <sys/socket.h> |
| 6614 #endif |
| 6615 |
| 6616 " |
| 6617 if test "x$ac_cv_header_linux_irda_h" = xyes; then : |
| 6618 cat >>confdefs.h <<_ACEOF |
| 6619 #define HAVE_LINUX_IRDA_H 1 |
| 6620 _ACEOF |
| 6621 |
| 6622 fi |
| 6623 |
| 6605 done | 6624 done |
| 6606 | 6625 |
| 6607 | 6626 |
| 6608 # checks for typedefs | 6627 # checks for typedefs |
| 6609 was_it_defined=no | 6628 was_it_defined=no |
| 6610 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_t in time.h" >&5 | 6629 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_t in time.h" >&5 |
| 6611 $as_echo_n "checking for clock_t in time.h... " >&6; } | 6630 $as_echo_n "checking for clock_t in time.h... " >&6; } |
| 6612 cat confdefs.h - <<_ACEOF >conftest.$ac_ext | 6631 cat confdefs.h - <<_ACEOF >conftest.$ac_ext |
| 6613 /* end confdefs.h. */ | 6632 /* end confdefs.h. */ |
| 6614 #include <time.h> | 6633 #include <time.h> |
| (...skipping 9128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 15743 if test ! -f Modules/Setup.local | 15762 if test ! -f Modules/Setup.local |
| 15744 then | 15763 then |
| 15745 echo "# Edit this file for local setup changes" >Modules/Setup.local | 15764 echo "# Edit this file for local setup changes" >Modules/Setup.local |
| 15746 fi | 15765 fi |
| 15747 | 15766 |
| 15748 echo "creating Makefile" | 15767 echo "creating Makefile" |
| 15749 $SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \ | 15768 $SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \ |
| 15750 -s Modules Modules/Setup.config \ | 15769 -s Modules Modules/Setup.config \ |
| 15751 Modules/Setup.local Modules/Setup | 15770 Modules/Setup.local Modules/Setup |
| 15752 mv config.c Modules | 15771 mv config.c Modules |
| OLD | NEW |