[Python-checkins] python/dist/src README,1.175,1.176

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Mon, 21 Jul 2003 09:01:41 -0700


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv9117

Modified Files:
	README 
Log Message:
Clarify a statement regarding both shared and static library.
Closes SF bug #774480.


Index: README
===================================================================
RCS file: /cvsroot/python/python/dist/src/README,v
retrieving revision 1.175
retrieving revision 1.176
diff -C2 -d -r1.175 -r1.176
*** README	17 Jul 2003 17:58:38 -0000	1.175
--- README	21 Jul 2003 16:01:39 -0000	1.176
***************
*** 764,772 ****
  configure with --enable-shared. 
  
! If you do so, a static library will be created in addition to the
! shared library, which uses the same object files as the shared library
! In particular, the library likely object files using
! position-independent code (PIC) if PIC flags are needed for the shared
! library.
  
  
--- 764,771 ----
  configure with --enable-shared. 
  
! If you enable this feature, the same object files will be used to create
! a static library.  In particular, the static library will contain object
! files using position-independent code (PIC) on platforms where PIC flags
! are needed for the shared library.