centos6.2 не удалось выполнить сборку python2.7 _hashlib и _ssl и создать [Модули/_ssl.o] Ошибка 1

#python #ssl #openssl #centos

#python #ssl #openssl #centos

Вопрос:

Я хочу обновить python2.6.6 по умолчанию до python2.7 из исходного кода, который я установил:

 yum groupinstall "Development tools"
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel
  

но _hashlib и _ssl не удалось собрать.

установлен мой openssl:

 whereis openssl
openssl: /usr/bin/openssl /usr/lib/openssl /usr/lib64/openssl /usr/local/bin/openssl /usr/include/openssl /usr/share/man/man1/openssl.1ssl.gz
  

И я раскомментирую конфигурацию модуля / настройки ssl следующим образом:

 # Socket module helper for socket(2)
_socket socketmodule.c timemodule.c

# Socket module helper for SSL support; you must comment out the other
# socket line above, and possibly edit the SSL variable:
SSL=/usr/local/ssl
_ssl _ssl.c 
        -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl 
        -L$(SSL)/lib -lssl -lcrypto
  

затем

 ./configure --prefix=/usr/local/python27/ --enable-shared
make
  

в нем есть ошибки:

 gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes  -I. -IInclude -I./Include   -DPy_BUILD_CORE  -DUSE_SSL -I/usr/local/ssl/include -I/usr/local/ssl/include/openssl -c ./Modules/_ssl.c -o Modules/_ssl.o
./Modules/_ssl.c: In function ‘newPySSLObject’:
./Modules/_ssl.c:307: warning: ‘TLSv1_method’ is deprecated (declared at /usr/local/include/openssl/ssl.h:1596)
./Modules/_ssl.c:309: warning: implicit declaration of function ‘SSLv3_method’
./Modules/_ssl.c:309: warning: passing argument 1 of ‘SSL_CTX_new’ makes pointer from integer without a cast
/usr/local/include/openssl/ssl.h:1302: note: expected ‘const struct SSL_METHOD *’ but argument is of typeint’
./Modules/_ssl.c:312: warning: implicit declaration of function ‘SSLv2_method’
./Modules/_ssl.c:312: warning: passing argument 1 of ‘SSL_CTX_new’ makes pointer from integer without a cast
/usr/local/include/openssl/ssl.h:1302: note: expected ‘const struct SSL_METHOD *’ but argument is of typeint’
./Modules/_ssl.c: In function ‘_create_tuple_for_X509_NAME’:
./Modules/_ssl.c:613: error: dereferencing pointer to incomplete type
./Modules/_ssl.c:630: error: dereferencing pointer to incomplete type
./Modules/_ssl.c: In function ‘_get_peer_alt_names’:
./Modules/_ssl.c:732: error: dereferencing pointer to incomplete type
./Modules/_ssl.c:736: error: dereferencing pointer to incomplete type
./Modules/_ssl.c:741: error: dereferencing pointer to incomplete type
./Modules/_ssl.c:802: warning: ‘ASN1_STRING_data’ is deprecated (declared at /usr/local/include/openssl/asn1.h:553)
./Modules/_ssl.c: In function ‘PySSL_cipher’:
./Modules/_ssl.c:1140: warning: assignment discards qualifiers from pointer target type
./Modules/_ssl.c: In function ‘PySSL_RAND_egd’:
./Modules/_ssl.c:1610: warning: implicit declaration of function ‘RAND_egd’
make: *** [Modules/_ssl.o] Error 1
  

Если не используется ssl, ошибка make не является этой ошибкой, она показывает:

 Python build finished, but the necessary bits to build these modules were not found:
bsddb185           dl                 imageop         
sunaudiodev                                           
To find the necessary bits, look in setup.py in detect_modules() for the module's name.


Failed to build these modules:
_hashlib           _ssl         
  

Я хочу знать, как это исправить, спасибо.

Комментарии:

1. Я решаю эту проблему, копируя сбойные модули с другого компьютера, который мог бы успешно скомпилироваться.

Ответ №1:

Попробуйте перенаправить выходные данные команды make, включая stderr и stdout, в файл, а затем просмотреть этот журнал. В моем случае я использовал другие openssl библиотеки, установленные в моей системе. После удаления этой папки библиотеки make были удалены правильные openssl библиотеки.