Advertisement
Guest User

Untitled

a guest
Jul 11th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.89 KB | None | 0 0
  1.  
  2. root@neocharles:/home/neocharles/tls/tls1.6# make clean
  3. test -z "libtls1.6.so" || rm -f libtls1.6.so
  4. rm -f *.o core *.core
  5. test -z "pkgIndex.tcl" || rm -f pkgIndex.tcl
  6. root@neocharles:/home/neocharles/tls/tls1.6# ./configure --prefix=/usr/local
  7. checking for correct TEA configuration... ok (TEA 3.6)
  8. checking for Tcl configuration... found /usr/local/lib/tclConfig.sh
  9. checking for existence of /usr/local/lib/tclConfig.sh... loading
  10. configure: --exec-prefix defaulting to TCL_EXEC_PREFIX /usr/local
  11. checking for gcc... gcc
  12. checking for C compiler default output file name... a.out
  13. checking whether the C compiler works... yes
  14. checking whether we are cross compiling... no
  15. checking for suffix of executables...
  16. checking for suffix of object files... o
  17. checking whether we are using the GNU C compiler... yes
  18. checking whether gcc accepts -g... yes
  19. checking for gcc option to accept ANSI C... none needed
  20. checking how to run the C preprocessor... gcc -E
  21. checking for a BSD-compatible install... /usr/bin/install -c
  22. checking whether make sets $(MAKE)... yes
  23. checking for ranlib... ranlib
  24. checking for egrep... grep -E
  25. checking for ANSI C header files... yes
  26. checking for sys/types.h... yes
  27. checking for sys/stat.h... yes
  28. checking for stdlib.h... yes
  29. checking for string.h... yes
  30. checking for memory.h... yes
  31. checking for strings.h... yes
  32. checking for inttypes.h... yes
  33. checking for stdint.h... yes
  34. checking for unistd.h... yes
  35. checking if the compiler understands -pipe... yes
  36. checking whether byte ordering is bigendian... no
  37. checking for sin... no
  38. checking for main in -lieee... yes
  39. checking for main in -linet... no
  40. checking net/errno.h usability... no
  41. checking net/errno.h presence... no
  42. checking for net/errno.h... no
  43. checking for connect... yes
  44. checking for gethostbyname... yes
  45. checking dirent.h... yes
  46. checking errno.h usability... yes
  47. checking errno.h presence... yes
  48. checking for errno.h... yes
  49. checking float.h usability... yes
  50. checking float.h presence... yes
  51. checking for float.h... yes
  52. checking values.h usability... yes
  53. checking values.h presence... yes
  54. checking for values.h... yes
  55. checking limits.h usability... yes
  56. checking limits.h presence... yes
  57. checking for limits.h... yes
  58. checking for stdlib.h... (cached) yes
  59. checking for string.h... (cached) yes
  60. checking sys/wait.h usability... yes
  61. checking sys/wait.h presence... yes
  62. checking for sys/wait.h... yes
  63. checking dlfcn.h usability... yes
  64. checking dlfcn.h presence... yes
  65. checking for dlfcn.h... yes
  66. checking sys/param.h usability... yes
  67. checking sys/param.h presence... yes
  68. checking for sys/param.h... yes
  69. checking for Tcl public headers... /usr/local/include
  70. checking for pthread_mutex_init in -lpthread... yes
  71. checking for building with threads... yes (default)
  72. checking how to build libraries... shared
  73. checking if 64bit support is requested... no
  74. checking if 64bit Sparc VIS support is requested... no
  75. checking system version... Linux-2.6.32-042stab078.22
  76. checking for dlopen in -ldl... yes
  77. checking for ar... ar
  78. checking for required early compiler flags... _LARGEFILE64_SOURCE
  79. checking for 64-bit integer type... using long
  80. checking for build with symbols... no
  81. checking for SSL directory... /usr
  82. checking if libgcc is needed to resolve openssl symbols... no
  83. checking for tclsh... /usr/local/bin/tclsh8.6
  84. configure: creating ./config.status
  85. config.status: creating Makefile
  86. root@neocharles:/home/neocharles/tls/tls1.6# make install
  87. gcc -DPACKAGE_NAME=\"tls\" -DPACKAGE_TARNAME=\"tls\" -DPACKAGE_VERSION=\"1.6\" -DPACKAGE_STRING=\"tls\ 1.6\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 -DNO_IDEA=1 -DNO_RC5=1 -I"/usr/local/include" -I"/usr/include" -pipe -O2 -fomit-frame-pointer -Wall -Wno-implicit-int -fPIC -c `echo tls.c` -o tls.o
  88. tls.c: In function 'VerifyCallback':
  89. tls.c:248:20: warning: variable 'string' set but not used [-Wunused-but-set-variable]
  90. tls.c: In function 'MiscObjCmd':
  91. tls.c:1332:3: warning: pointer targets in passing argument 4 of 'X509_NAME_add_entry_by_txt' differ in signedness [-Wpointer-sign]
  92. In file included from /usr/include/openssl/ssl.h:156:0,
  93. from tlsInt.h:52,
  94. from tls.c:26:
  95. /usr/include/openssl/x509.h:1029:5: note: expected 'const unsigned char *' but argument is of type 'char *'
  96. tls.c:1333:3: warning: pointer targets in passing argument 4 of 'X509_NAME_add_entry_by_txt' differ in signedness [-Wpointer-sign]
  97. In file included from /usr/include/openssl/ssl.h:156:0,
  98. from tlsInt.h:52,
  99. from tls.c:26:
  100. /usr/include/openssl/x509.h:1029:5: note: expected 'const unsigned char *' but argument is of type 'char *'
  101. tls.c:1334:3: warning: pointer targets in passing argument 4 of 'X509_NAME_add_entry_by_txt' differ in signedness [-Wpointer-sign]
  102. In file included from /usr/include/openssl/ssl.h:156:0,
  103. from tlsInt.h:52,
  104. from tls.c:26:
  105. /usr/include/openssl/x509.h:1029:5: note: expected 'const unsigned char *' but argument is of type 'char *'
  106. tls.c:1335:3: warning: pointer targets in passing argument 4 of 'X509_NAME_add_entry_by_txt' differ in signedness [-Wpointer-sign]
  107. In file included from /usr/include/openssl/ssl.h:156:0,
  108. from tlsInt.h:52,
  109. from tls.c:26:
  110. /usr/include/openssl/x509.h:1029:5: note: expected 'const unsigned char *' but argument is of type 'char *'
  111. tls.c:1336:3: warning: pointer targets in passing argument 4 of 'X509_NAME_add_entry_by_txt' differ in signedness [-Wpointer-sign]
  112. In file included from /usr/include/openssl/ssl.h:156:0,
  113. from tlsInt.h:52,
  114. from tls.c:26:
  115. /usr/include/openssl/x509.h:1029:5: note: expected 'const unsigned char *' but argument is of type 'char *'
  116. tls.c:1337:3: warning: pointer targets in passing argument 4 of 'X509_NAME_add_entry_by_txt' differ in signedness [-Wpointer-sign]
  117. In file included from /usr/include/openssl/ssl.h:156:0,
  118. from tlsInt.h:52,
  119. from tls.c:26:
  120. /usr/include/openssl/x509.h:1029:5: note: expected 'const unsigned char *' but argument is of type 'char *'
  121. tls.c:1338:3: warning: pointer targets in passing argument 4 of 'X509_NAME_add_entry_by_txt' differ in signedness [-Wpointer-sign]
  122. In file included from /usr/include/openssl/ssl.h:156:0,
  123. from tlsInt.h:52,
  124. from tls.c:26:
  125. /usr/include/openssl/x509.h:1029:5: note: expected 'const unsigned char *' but argument is of type 'char *'
  126. gcc -DPACKAGE_NAME=\"tls\" -DPACKAGE_TARNAME=\"tls\" -DPACKAGE_VERSION=\"1.6\" -DPACKAGE_STRING=\"tls\ 1.6\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 -DNO_IDEA=1 -DNO_RC5=1 -I"/usr/local/include" -I"/usr/include" -pipe -O2 -fomit-frame-pointer -Wall -Wno-implicit-int -fPIC -c `echo tlsIO.c` -o tlsIO.o
  127. tlsIO.c: In function 'TlsCloseProc':
  128. tlsIO.c:289:44: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  129. tlsIO.c: In function 'TlsOutputProc':
  130. tlsIO.c:421:45: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  131. tlsIO.c:441:2: warning: value computed is not used [-Wunused-value]
  132. tlsIO.c:459:3: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  133. tlsIO.c: In function 'TlsGetOptionProc':
  134. tlsIO.c:551:9: warning: variable 'len' set but not used [-Wunused-but-set-variable]
  135. tlsIO.c: In function 'Tls_WaitForConnect':
  136. tlsIO.c:872:46: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  137. tlsIO.c:883:6: warning: value computed is not used [-Wunused-value]
  138. gcc -DPACKAGE_NAME=\"tls\" -DPACKAGE_TARNAME=\"tls\" -DPACKAGE_VERSION=\"1.6\" -DPACKAGE_STRING=\"tls\ 1.6\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 -DNO_IDEA=1 -DNO_RC5=1 -I"/usr/local/include" -I"/usr/include" -pipe -O2 -fomit-frame-pointer -Wall -Wno-implicit-int -fPIC -c `echo tlsBIO.c` -o tlsBIO.o
  139. tlsBIO.c: In function 'BioWrite':
  140. tlsBIO.c:65:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  141. tlsBIO.c:65:34: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  142. tlsBIO.c:74:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  143. tlsBIO.c: In function 'BioRead':
  144. tlsBIO.c:100:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  145. tlsBIO.c:100:34: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  146. tlsBIO.c:111:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  147. tlsBIO.c: In function 'BioCtrl':
  148. tlsBIO.c:147:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  149. tlsBIO.c:148:6: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
  150. gcc -DPACKAGE_NAME=\"tls\" -DPACKAGE_TARNAME=\"tls\" -DPACKAGE_VERSION=\"1.6\" -DPACKAGE_STRING=\"tls\ 1.6\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 -DNO_IDEA=1 -DNO_RC5=1 -I"/usr/local/include" -I"/usr/include" -pipe -O2 -fomit-frame-pointer -Wall -Wno-implicit-int -fPIC -c `echo tlsX509.c` -o tlsX509.o
  151. tlsX509.c: In function 'Tls_NewX509Obj':
  152. tlsX509.c:121:2: warning: value computed is not used [-Wunused-value]
  153. tlsX509.c:127:2: warning: value computed is not used [-Wunused-value]
  154. tlsX509.c:133:2: warning: value computed is not used [-Wunused-value]
  155. gcc -DPACKAGE_NAME=\"tls\" -DPACKAGE_TARNAME=\"tls\" -DPACKAGE_VERSION=\"1.6\" -DPACKAGE_STRING=\"tls\ 1.6\" -DPACKAGE_BUGREPORT=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DTCL_THREADS=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_IS_LONG=1 -DUSE_TCL_STUBS=1 -DNO_IDEA=1 -DNO_RC5=1 -I"/usr/local/include" -I"/usr/include" -pipe -O2 -fomit-frame-pointer -Wall -Wno-implicit-int -fPIC -c `echo fixstrtod.c` -o fixstrtod.o
  156. rm -f libtls1.6.so
  157. gcc -shared -pipe -O2 -fomit-frame-pointer -Wall -Wno-implicit-int -fPIC -Wl,--export-dynamic -o libtls1.6.so tls.o tlsIO.o tlsBIO.o tlsX509.o fixstrtod.o -Wl,-rpath,/usr/lib -L/usr/lib -lssl -lcrypto -L/usr/local/lib -ltclstub8.6
  158. : libtls1.6.so
  159. (echo 'package ifneeded tls 1.6 \
  160. "[list source [file join $dir tls.tcl]] ; \
  161. [list tls::initlib $dir libtls1.6.so]"'\
  162. ) > pkgIndex.tcl
  163. /usr/bin/install -c libtls1.6.so /usr/local/lib/tls1.6/libtls1.6.so
  164. : /usr/local/lib/tls1.6/libtls1.6.so
  165. Install tls.tcl /usr/local/lib/tls1.6/tls.tcl
  166. Install pkgIndex.tcl /usr/local/lib/tls1.6
  167. Installing header files in /usr/local/include
  168. Installing ./tls.h
  169. root@neocharles:/home/neocharles/tls/tls1.6#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement