[Python-checkins] python/dist/src configure,1.328,1.329 configure.in,1.339,1.340
loewis@users.sourceforge.net
loewis@users.sourceforge.net
2002年8月04日 05:38:52 -0700
Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv2977
Modified Files:
configure configure.in
Log Message:
Always link libpython.so with LIBS. Fixes #589422.
Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.328
retrieving revision 1.329
diff -C2 -d -r1.328 -r1.329
*** configure 1 Aug 2002 21:57:48 -0000 1.328
--- configure 4 Aug 2002 12:38:49 -0000 1.329
***************
*** 1,4 ****
#! /bin/sh
! # From configure.in Revision: 1.338 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53.
--- 1,4 ----
#! /bin/sh
! # From configure.in Revision: 1.339 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53.
***************
*** 9002,9014 ****
# library (with --enable-shared).
# For platforms on which shared libraries are not allowed to have unresolved
! # symbols, this must be set to $(LIBS) (expanded by make).
echo "$as_me:$LINENO: checking SHLIBS" >&5
echo $ECHO_N "checking SHLIBS... $ECHO_C" >&6
case "$ac_sys_system" in
- atheos*)
- SHLIBS='$(LIBS)';;
*)
! SHLIBS='';;
esac
echo "$as_me:$LINENO: result: $SHLIBS" >&5
--- 9002,9016 ----
# library (with --enable-shared).
# For platforms on which shared libraries are not allowed to have unresolved
! # symbols, this must be set to $(LIBS) (expanded by make). We do this even
! # if it is not required, since it creates a dependency of the shared library
! # to LIBS. This, in turn, means that applications linking the shared libpython
! # don't need to link LIBS explicitly. The default should be only changed
! # on systems where this approach causes problems.
echo "$as_me:$LINENO: checking SHLIBS" >&5
echo $ECHO_N "checking SHLIBS... $ECHO_C" >&6
case "$ac_sys_system" in
*)
! SHLIBS='$(LIBS)';;
esac
echo "$as_me:$LINENO: result: $SHLIBS" >&5
Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.339
retrieving revision 1.340
diff -C2 -d -r1.339 -r1.340
*** configure.in 1 Aug 2002 21:57:48 -0000 1.339
--- configure.in 4 Aug 2002 12:38:50 -0000 1.340
***************
*** 1044,1055 ****
# library (with --enable-shared).
# For platforms on which shared libraries are not allowed to have unresolved
! # symbols, this must be set to $(LIBS) (expanded by make).
AC_SUBST(SHLIBS)
AC_MSG_CHECKING(SHLIBS)
case "$ac_sys_system" in
- atheos*)
- SHLIBS='$(LIBS)';;
*)
! SHLIBS='';;
esac
AC_MSG_RESULT($SHLIBS)
--- 1044,1057 ----
# library (with --enable-shared).
# For platforms on which shared libraries are not allowed to have unresolved
! # symbols, this must be set to $(LIBS) (expanded by make). We do this even
! # if it is not required, since it creates a dependency of the shared library
! # to LIBS. This, in turn, means that applications linking the shared libpython
! # don't need to link LIBS explicitly. The default should be only changed
! # on systems where this approach causes problems.
AC_SUBST(SHLIBS)
AC_MSG_CHECKING(SHLIBS)
case "$ac_sys_system" in
*)
! SHLIBS='$(LIBS)';;
esac
AC_MSG_RESULT($SHLIBS)