Advertisement
s243a

pygtk-config-log

Aug 18th, 2018
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.72 KB | None | 0 0
  1. configure:19179: result: /usr/bin/pkg-config
  2. configure:19202: checking for GLIB - version >= 2.0.0
  3. configure:19322: gcc -o conftest -g -O2 -pthread -I/usr/include/glib-2.0 -I/usr/lib/aarch64-linux-gnu/glib-2.0/include -I/usr/include -lpcre conftest.c -L/usr/lib/aarch64-linux-gnu -lgobject-2.0 -lgthread-2.0 -pthread -lglib-2.0 >&5
  4. /usr/bin/ld: /usr/lib/aarch64-linux-gnu/libglib-2.0.a(libglib_2_0_la-gregex.o): undefined reference to symbol 'pcre_study'
  5. /lib/aarch64-linux-gnu/libpcre.so.3: error adding symbols: DSO missing from command line
  6. collect2: error: ld returned 1 exit status
  7. configure:19325: $? = 1
  8. configure: program exited with status 1
  9. configure: failed program was:
  10. | #line 19241 "configure"
  11. | /* confdefs.h. */
  12. |
  13. | #define PACKAGE_NAME "pygtk"
  14. | #define PACKAGE_TARNAME "pygtk"
  15. | #define PACKAGE_VERSION "1.99.18"
  16. | #define PACKAGE_STRING "pygtk 1.99.18"
  17. | #define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python&component=pygtk"
  18. | #define PYGTK_MAJOR_VERSION 1
  19. | #define PYGTK_MINOR_VERSION 99
  20. | #define PYGTK_MICRO_VERSION 18
  21. | #define PACKAGE "pygtk"
  22. | #define VERSION "1.99.18"
  23. | #define HAVE_BIND_TEXTDOMAIN_CODESET 1
  24. | #define STDC_HEADERS 1
  25. | #define HAVE_SYS_TYPES_H 1
  26. | #define HAVE_SYS_STAT_H 1
  27. | #define HAVE_STDLIB_H 1
  28. | #define HAVE_STRING_H 1
  29. | #define HAVE_MEMORY_H 1
  30. | #define HAVE_STRINGS_H 1
  31. | #define HAVE_INTTYPES_H 1
  32. | #define HAVE_STDINT_H 1
  33. | #define HAVE_UNISTD_H 1
  34. | #define HAVE_DLFCN_H 1
  35. | #ifdef __cplusplus
  36. | #include <stdlib.h>
  37. | #endif
  38. | #define ENABLE_PYGTK_THREADING 1
  39. | /* end confdefs.h. */
  40. |
  41. | #include <glib.h>
  42. | #include <stdio.h>
  43. | #include <stdlib.h>
  44. |
  45. | int
  46. | main ()
  47. | {
  48. | int major, minor, micro;
  49. | char *tmp_version;
  50. |
  51. | system ("touch conf.glibtest");
  52. |
  53. | /* HP/UX 9 (%@#!) writes to sscanf strings */
  54. | tmp_version = g_strdup("2.0.0");
  55. | if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
  56. | printf("%s, bad version string\n", "2.0.0");
  57. | exit(1);
  58. | }
  59. |
  60. | if ((glib_major_version != 2) ||
  61. | (glib_minor_version != 50) ||
  62. | (glib_micro_version != 3))
  63. | {
  64. | printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n",
  65. | 2, 50, 3,
  66. | glib_major_version, glib_minor_version, glib_micro_version);
  67. | printf ("*** was found! If pkg-config was correct, then it is best\n");
  68. | printf ("*** to remove the old version of GLib. You may also be able to fix the error\n");
  69. | printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
  70. | printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
  71. | printf("*** required on your system.\n");
  72. | printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n");
  73. | printf("*** to point to the correct configuration files\n");
  74. | }
  75. | else if ((glib_major_version != GLIB_MAJOR_VERSION) ||
  76. | (glib_minor_version != GLIB_MINOR_VERSION) ||
  77. | (glib_micro_version != GLIB_MICRO_VERSION))
  78. | {
  79. | printf("*** GLIB header files (version %d.%d.%d) do not match\n",
  80. | GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
  81. | printf("*** library (version %d.%d.%d)\n",
  82. | glib_major_version, glib_minor_version, glib_micro_version);
  83. | }
  84. | else
  85. | {
  86. | if ((glib_major_version > major) ||
  87. | ((glib_major_version == major) && (glib_minor_version > minor)) ||
  88. | ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro)))
  89. | {
  90. | return 0;
  91. | }
  92. | else
  93. | {
  94. | printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n",
  95. | glib_major_version, glib_minor_version, glib_micro_version);
  96. | printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n",
  97. | major, minor, micro);
  98. | printf("*** GLIB is always available from ftp://ftp.gtk.org.\n");
  99. | printf("***\n");
  100. | printf("*** If you have already installed a sufficiently new version, this error\n");
  101. | printf("*** probably means that the wrong copy of the pkg-config shell script is\n");
  102. | printf("*** being found. The easiest way to fix this is to remove the old version\n");
  103. | printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n");
  104. | printf("*** correct copy of pkg-config. (In this case, you will have to\n");
  105. | printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
  106. | printf("*** so that the correct libraries are found at run-time))\n");
  107. | }
  108. | }
  109. | return 1;
  110. | }
  111. |
  112. configure:19352: result: no
  113. configure:19386: gcc -o conftest -g -O2 -pthread -I/usr/include/glib-2.0 -I/usr/lib/aarch64-linux-gnu/glib-2.0/include -I/usr/include -lpcre conftest.c -L/usr/lib/aarch64-linux-gnu -lgobject-2.0 -lgthread-2.0 -pthread -lglib-2.0 >&5
  114. /usr/bin/ld: /usr/lib/aarch64-linux-gnu/libglib-2.0.a(libglib_2_0_la-gregex.o): undefined reference to symbol 'pcre_study'
  115. /lib/aarch64-linux-gnu/libpcre.so.3: error adding symbols: DSO missing from command line
  116. collect2: error: ld returned 1 exit status
  117. configure:19389: $? = 1
  118. configure: failed program was:
  119. | #line 19366 "configure"
  120. | /* confdefs.h. */
  121. |
  122. | #define PACKAGE_NAME "pygtk"
  123. | #define PACKAGE_TARNAME "pygtk"
  124. | #define PACKAGE_VERSION "1.99.18"
  125. | #define PACKAGE_STRING "pygtk 1.99.18"
  126. | #define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python&component=pygtk"
  127. | #define PYGTK_MAJOR_VERSION 1
  128. | #define PYGTK_MINOR_VERSION 99
  129. | #define PYGTK_MICRO_VERSION 18
  130. | #define PACKAGE "pygtk"
  131. | #define VERSION "1.99.18"
  132. | #define HAVE_BIND_TEXTDOMAIN_CODESET 1
  133. | #define STDC_HEADERS 1
  134. | #define HAVE_SYS_TYPES_H 1
  135. | #define HAVE_SYS_STAT_H 1
  136. | #define HAVE_STDLIB_H 1
  137. | #define HAVE_STRING_H 1
  138. | #define HAVE_MEMORY_H 1
  139. | #define HAVE_STRINGS_H 1
  140. | #define HAVE_INTTYPES_H 1
  141. | #define HAVE_STDINT_H 1
  142. | #define HAVE_UNISTD_H 1
  143. | #define HAVE_DLFCN_H 1
  144. | #ifdef __cplusplus
  145. | #include <stdlib.h>
  146. | #endif
  147. | #define ENABLE_PYGTK_THREADING 1
  148. | /* end confdefs.h. */
  149. |
  150. | #include <glib.h>
  151. | #include <stdio.h>
  152. |
  153. | int
  154. | main ()
  155. | {
  156. | return ((glib_major_version) || (glib_minor_version) || (glib_micro_version));
  157. | ;
  158. | return 0;
  159. | }
  160. configure:19423: error: maybe you want the gtk-gnome-1-2 branch?
  161.  
  162. ## ---------------- ##
  163. ## Cache variables. ##
  164. ## ---------------- ##
  165.  
  166. ac_cv_build=aarch64-unknown-linux-gnu
  167. ac_cv_build_alias=aarch64-unknown-linux
  168. ac_cv_c_compiler_gnu=yes
  169. ac_cv_cxx_compiler_gnu=yes
  170. ac_cv_env_CC_set=
  171. ac_cv_env_CC_value=
  172. ac_cv_env_CFLAGS_set=
  173. ac_cv_env_CFLAGS_value=
  174. ac_cv_env_CPPFLAGS_set=
  175. ac_cv_env_CPPFLAGS_value=
  176. ac_cv_env_CPP_set=
  177. ac_cv_env_CPP_value=
  178. ac_cv_env_CXXCPP_set=
  179. ac_cv_env_CXXCPP_value=
  180. ac_cv_env_CXXFLAGS_set=
  181. ac_cv_env_CXXFLAGS_value=
  182. ac_cv_env_CXX_set=
  183. ac_cv_env_CXX_value=
  184. ac_cv_env_F77_set=
  185. ac_cv_env_F77_value=
  186. ac_cv_env_FFLAGS_set=
  187. ac_cv_env_FFLAGS_value=
  188. ac_cv_env_LDFLAGS_set=set
  189. ac_cv_env_LDFLAGS_value=-lpcre
  190. ac_cv_env_build_alias_set=set
  191. ac_cv_env_build_alias_value=aarch64-unknown-linux
  192. ac_cv_env_host_alias_set=
  193. ac_cv_env_host_alias_value=
  194. ac_cv_env_target_alias_set=
  195. ac_cv_env_target_alias_value=
  196. ac_cv_exeext=
  197. ac_cv_f77_compiler_gnu=no
  198. ac_cv_func_bind_textdomain_codeset=yes
  199. ac_cv_header_dlfcn_h=yes
  200. ac_cv_header_inttypes_h=yes
  201. ac_cv_header_memory_h=yes
  202. ac_cv_header_stdc=yes
  203. ac_cv_header_stdint_h=yes
  204. ac_cv_header_stdlib_h=yes
  205. ac_cv_header_string_h=yes
  206. ac_cv_header_strings_h=yes
  207. ac_cv_header_sys_stat_h=yes
  208. ac_cv_header_sys_types_h=yes
  209. ac_cv_header_unistd_h=yes
  210. ac_cv_host=aarch64-unknown-linux-gnu
  211. ac_cv_host_alias=aarch64-unknown-linux
  212. ac_cv_objext=o
  213. ac_cv_path_PKG_CONFIG=/usr/bin/pkg-config
  214. ac_cv_path_PYTHON=/usr/bin/python
  215. ac_cv_path_install='/usr/bin/install -c'
  216. ac_cv_prog_AWK=mawk
  217. ac_cv_prog_CPP='gcc -E'
  218. ac_cv_prog_CXXCPP='g++ -E'
  219. ac_cv_prog_ac_ct_AR=ar
  220. ac_cv_prog_ac_ct_CC=gcc
  221. ac_cv_prog_ac_ct_CXX=g++
  222. ac_cv_prog_ac_ct_RANLIB=ranlib
  223. ac_cv_prog_ac_ct_STRIP=strip
  224. ac_cv_prog_cc_g=yes
  225. ac_cv_prog_cc_stdc=
  226. ac_cv_prog_cxx_g=yes
  227. ac_cv_prog_egrep='grep -E'
  228. ac_cv_prog_f77_g=no
  229. ac_cv_prog_make_make_set=yes
  230. am_cv_CC_dependencies_compiler_type=gcc
  231. am_cv_CXX_dependencies_compiler_type=gcc
  232. am_cv_pathless_PYTHON=python
  233. am_cv_python_platform=linux2
  234. am_cv_python_pyexecdir='${exec_prefix}/lib/python2.7/site-packages'
  235. am_cv_python_pythondir='${prefix}/lib/python2.7/site-packages'
  236. am_cv_python_version=2.7
  237. lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'
  238. lt_cv_file_magic_cmd='$MAGIC_CMD'
  239. lt_cv_file_magic_test_file='/lib/libc.so* /lib/libc-*.so'
  240. lt_cv_ld_reload_flag=-r
  241. lt_cv_objdir=.libs
  242. lt_cv_path_LD=/usr/bin/ld
  243. lt_cv_path_LDCXX=/usr/bin/ld
  244. lt_cv_path_MAGIC_CMD=/usr/bin/file
  245. lt_cv_path_NM='/usr/bin/nm -B'
  246. lt_cv_path_SED=/bin/sed
  247. lt_cv_prog_compiler_c_o=yes
  248. lt_cv_prog_compiler_c_o_CXX=yes
  249. lt_cv_prog_compiler_rtti_exceptions=no
  250. lt_cv_prog_gnu_ld=yes
  251. lt_cv_prog_gnu_ldcxx=yes
  252. lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGISTW][ABCDGISTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p'\'''
  253. lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\'''
  254. lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
  255. lt_cv_sys_max_cmd_len=32768
  256. lt_lt_cv_prog_compiler_c_o='"yes"'
  257. lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
  258. lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGISTW][ABCDGISTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'\''"'
  259. lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
  260. lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
  261. py_cv_mod_thread_=yes
  262.  
  263. ## ----------------- ##
  264. ## Output variables. ##
  265. ## ----------------- ##
  266.  
  267. ACLOCAL='${SHELL} /pkg/pygtk-1.99.18/missing --run aclocal-1.7 '
  268. AMDEPBACKSLASH='\'
  269. AMDEP_FALSE='#'
  270. AMDEP_TRUE=''
  271. AMTAR='${SHELL} /pkg/pygtk-1.99.18/missing --run tar'
  272. AR='ar'
  273. AS='as'
  274. ATK_CFLAGS=''
  275. ATK_LIBS=''
  276. AUTOCONF='${SHELL} /pkg/pygtk-1.99.18/missing --run autoconf'
  277. AUTOHEADER='${SHELL} /pkg/pygtk-1.99.18/missing --run autoheader'
  278. AUTOMAKE='${SHELL} /pkg/pygtk-1.99.18/missing --run automake-1.7'
  279. AWK='mawk'
  280. BUILD_GTKGL_FALSE=''
  281. BUILD_GTKGL_TRUE=''
  282. BUILD_LIBGLADE_FALSE=''
  283. BUILD_LIBGLADE_TRUE=''
  284. CC='gcc'
  285. CCDEPMODE='depmode=gcc'
  286. CFLAGS='-g -O2'
  287. CPP='gcc -E'
  288. CPPFLAGS=''
  289. CXX='g++'
  290. CXXCPP='g++ -E'
  291. CXXDEPMODE='depmode=gcc'
  292. CXXFLAGS='-g -O2'
  293. CYGPATH_W='echo'
  294. DEFS=''
  295. DEPDIR='.deps'
  296. DLLTOOL='dlltool'
  297. ECHO='echo'
  298. ECHO_C=''
  299. ECHO_N='-n'
  300. ECHO_T=''
  301. EGREP='grep -E'
  302. EXEEXT=''
  303. F77=''
  304. FFLAGS=''
  305. GLIB_CFLAGS=''
  306. GLIB_GENMARSHAL=''
  307. GLIB_LIBS=''
  308. GLIB_MKENUMS=''
  309. GOBJECT_QUERY=''
  310. GTKGL_CFLAGS=''
  311. GTKGL_LIBS=''
  312. GTK_CFLAGS=''
  313. GTK_LIBS=''
  314. INSTALL_DATA='${INSTALL} -m 644'
  315. INSTALL_PROGRAM='${INSTALL}'
  316. INSTALL_SCRIPT='${INSTALL}'
  317. INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
  318. LDFLAGS='-lpcre'
  319. LIBGLADE_CFLAGS=''
  320. LIBGLADE_LIBS=''
  321. LIBOBJS=''
  322. LIBS=''
  323. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  324. LN_S='ln -s'
  325. LTLIBOBJS=''
  326. MAKEINFO='${SHELL} /pkg/pygtk-1.99.18/missing --run makeinfo'
  327. OBJDUMP='objdump'
  328. OBJEXT='o'
  329. OS_WIN32_FALSE=''
  330. OS_WIN32_TRUE='#'
  331. PACKAGE='pygtk'
  332. PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python&component=pygtk'
  333. PACKAGE_NAME='pygtk'
  334. PACKAGE_STRING='pygtk 1.99.18'
  335. PACKAGE_TARNAME='pygtk'
  336. PACKAGE_VERSION='1.99.18'
  337. PANGO_CFLAGS=''
  338. PANGO_LIBS=''
  339. PATH_SEPARATOR=':'
  340. PKG_CONFIG='/usr/bin/pkg-config'
  341. PLATFORM_WIN32_FALSE=''
  342. PLATFORM_WIN32_TRUE='#'
  343. PYTHON='/usr/bin/python'
  344. PYTHON_EXEC_PREFIX='${exec_prefix}'
  345. PYTHON_INCLUDES='-I/usr/include/python2.7'
  346. PYTHON_PLATFORM='linux2'
  347. PYTHON_PREFIX='${prefix}'
  348. PYTHON_VERSION='2.7'
  349. RANLIB='ranlib'
  350. SET_MAKE=''
  351. SHELL='/bin/bash'
  352. STRIP='strip'
  353. VERSION='1.99.18'
  354. ac_ct_AR='ar'
  355. ac_ct_AS=''
  356. ac_ct_CC='gcc'
  357. ac_ct_CXX='g++'
  358. ac_ct_DLLTOOL=''
  359. ac_ct_F77=''
  360. ac_ct_OBJDUMP=''
  361. ac_ct_RANLIB='ranlib'
  362. ac_ct_STRIP='strip'
  363. am__fastdepCC_FALSE=''
  364. am__fastdepCC_TRUE='#'
  365. am__fastdepCXX_FALSE=''
  366. am__fastdepCXX_TRUE='#'
  367. am__include='include'
  368. am__leading_dot='.'
  369. am__quote=''
  370. bindir='${exec_prefix}/bin'
  371. build='aarch64-unknown-linux-gnu'
  372. build_alias='aarch64-unknown-linux'
  373. build_cpu='aarch64'
  374. build_os='linux-gnu'
  375. build_vendor='unknown'
  376. datadir='${prefix}/share'
  377. exec_prefix='NONE'
  378. host='aarch64-unknown-linux-gnu'
  379. host_alias=''
  380. host_cpu='aarch64'
  381. host_os='linux-gnu'
  382. host_vendor='unknown'
  383. includedir='${prefix}/include'
  384. infodir='${prefix}/info'
  385. install_sh='/pkg/pygtk-1.99.18/install-sh'
  386. libdir='${exec_prefix}/lib'
  387. libexecdir='${exec_prefix}/libexec'
  388. localstatedir='${prefix}/var'
  389. mandir='${prefix}/man'
  390. oldincludedir='/usr/include'
  391. pkgpyexecdir='${pyexecdir}/pygtk'
  392. pkgpythondir='${pythondir}/pygtk'
  393. prefix='/usr/lib/python2.7/'
  394. program_transform_name='s,x,x,'
  395. pyexecdir='${exec_prefix}/lib/python2.7/site-packages'
  396. pythondir='${prefix}/lib/python2.7/site-packages'
  397. sbindir='${exec_prefix}/sbin'
  398. sharedstatedir='${prefix}/com'
  399. sysconfdir='${prefix}/etc'
  400. target_alias=''
  401.  
  402. ## ----------- ##
  403. ## confdefs.h. ##
  404. ## ----------- ##
  405.  
  406. #define ENABLE_PYGTK_THREADING 1
  407. #define HAVE_BIND_TEXTDOMAIN_CODESET 1
  408. #define HAVE_DLFCN_H 1
  409. #define HAVE_INTTYPES_H 1
  410. #define HAVE_MEMORY_H 1
  411. #define HAVE_STDINT_H 1
  412. #define HAVE_STDLIB_H 1
  413. #define HAVE_STRINGS_H 1
  414. #define HAVE_STRING_H 1
  415. #define HAVE_SYS_STAT_H 1
  416. #define HAVE_SYS_TYPES_H 1
  417. #define HAVE_UNISTD_H 1
  418. #define PACKAGE "pygtk"
  419. #define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python&component=pygtk"
  420. #define PACKAGE_NAME "pygtk"
  421. #define PACKAGE_STRING "pygtk 1.99.18"
  422. #define PACKAGE_TARNAME "pygtk"
  423. #define PACKAGE_VERSION "1.99.18"
  424. #define PYGTK_MAJOR_VERSION 1
  425. #define PYGTK_MICRO_VERSION 18
  426. #define PYGTK_MINOR_VERSION 99
  427. #define STDC_HEADERS 1
  428. #define VERSION "1.99.18"
  429. #endif
  430. #ifdef __cplusplus
  431. #include <stdlib.h>
  432.  
  433. configure: exit 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement