Advertisement
Guest User

Untitled

a guest
Mar 11th, 2014
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.46 KB | None | 0 0
  1. I'm trying to get a copy of vim to compile with python support. I've tried with 2.6 & 3.3.
  2. *The installer renders no error when it comes to python.
  3.  
  4. :* Configure command example: ./configure --enable-perlinterp --enable-pythoninterp --with-features=huge --enable-multibyte --enable-fail-if-missing
  5. :* Configure output: (see attached)
  6.  
  7. All looks well prior and post configure, then doing a vim --version shows python as (-). Or, if I setup to configure a python3interp and even drop a config dir ( --with-python-config-dir=/usr/lib/python3.3m/config ), same deal. Nothing.
  8.  
  9. What can I check? Much appreciated all.
  10.  
  11. ---
  12. Some filtered text out of the configure script::
  13.  
  14. configure: loading cache auto/config.cache
  15. 2 checking whether make sets $(MAKE)... (cached) yes
  16. 3 checking for gcc... (cached) gcc
  17. 4 checking whether the C compiler works... yes
  18. 5 checking for C compiler default output file name... a.out
  19. 6 checking for suffix of executables...
  20. 7 checking whether we are cross compiling... no
  21. 8 checking for suffix of object files... (cached) o
  22. 9 checking whether we are using the GNU C compiler... (cached) yes
  23. 10 checking whether gcc accepts -g... (cached) yes
  24. 11 checking for gcc option to accept ISO C89... (cached) none needed
  25. 12...
  26. 30 checking for BeOS... no
  27. 31 checking for QNX... no
  28. 32 checking for Darwin (Mac OS X)... no
  29. 33 checking for AvailabilityMacros.h... (cached) no
  30. 34 checking --with-local-dir argument... Defaulting to /usr/local
  31. 35 checking --with-vim-name argument... Defaulting to vim
  32. 36 checking --with-ex-name argument... Defaulting to ex
  33. 37 checking --with-view-name argument... Defaulting to view
  34. 38 checking --with-global-runtime argument... no
  35. 39 checking --with-modified-by argument... no
  36. ...
  37. 50 checking for perl... (cached) /usr/bin/perl
  38. 51 checking Perl version... OK
  39. 52 checking if compile and link flags for Perl are sane... yes
  40. 53 checking --enable-pythoninterp argument... dynamic
  41. 54 checking for python2... (cached) /usr/bin/python2
  42. 55 checking Python version... (cached) 2.4
  43. 56 checking Python is 2.3 or better... yep
  44. 57 checking Python's install prefix... (cached) /usr
  45. 58 checking Python's execution prefix... (cached) /usr
  46. 59 (cached) checking Python's configuration directory... (cached) /usr/lib/python2.6/config
  47. 60 (cached) checking if -pthread should be used... yes
  48. 61 checking if compile and link flags for Python are sane... yes
  49. 62 checking --enable-python3interp argument... no
  50. 63 checking --enable-tclinterp argument... no
  51. 64 checking --enable-rubyinterp argument... no
  52. 65 checking --enable-cscope argument... no
  53. ...
  54. 295 configure: creating auto/config.status
  55. 296 config.status: creating auto/config.mk
  56. 297 config.status: creating auto/config.h
  57. ----
  58. VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Mar 8 2014 00:58:00)
  59. Included patches: 1-192
  60. Compiled by cdieringer@neweb10.mind.unm.edu
  61. Normal version with X11-Athena GUI. Features included (+) or not (-):
  62. +acl +cmdline_compl +diff +find_in_path -keymap +modify_fname +mouse_xterm -profile -sniff +termresponse +vreplace -xterm_save
  63. -arabic +cmdline_hist +digraphs +float -langmap +mouse +multi_byte -python +startuptime +textobjects +wildignore +xpm
  64. +autocmd +cmdline_info -dnd +folding +libcall +mouseshape +multi_lang -python3 +statusline +title +wildmenu
  65. +balloon_eval +comments -ebcdic -footer +linebreak -mouse_dec -mzscheme +quickfix -sun_workshop +toolbar +windows
  66. +browse -conceal -emacs_tags +fork() +lispindent +mouse_gpm +netbeans_intg +reltime +syntax +user_commands +writebackup
  67. +builtin_terms +cryptv +eval +gettext +listcmds -mouse_jsbterm +path_extra -rightleft +tag_binary +vertsplit +X11
  68. +byte_offset -cscope +ex_extra -hangul_input +localmap -mouse_netterm -perl -ruby +tag_old_static +virtualedit +xfontset
  69. +cindent +cursorbind +extra_search +iconv -lua -mouse_sgr +persistent_undo +scrollbind -tag_any_white +visual +xim
  70. +clientserver +cursorshape -farsi +insert_expand +menu -mouse_sysmouse +postscript +signs -tcl +visualextra +xsmp_interact
  71. +clipboard +dialog_con_gui +file_in_path +jumplist +mksession -mouse_urxvt +printer +smartindent +terminfo +viminfo +xterm_clipboard
  72. system vimrc file: "$VIM/vimrc"
  73. user vimrc file: "$HOME/.vimrc"
  74. 2nd user vimrc file: "~/.vim/vimrc"
  75. user exrc file: "$HOME/.exrc"
  76. system gvimrc file: "$VIM/gvimrc"
  77. user gvimrc file: "$HOME/.gvimrc"
  78. 2nd user gvimrc file: "~/.vim/gvimrc"
  79. system menu file: "$VIMRUNTIME/menu.vim"
  80. fall-back for $VIM: "/usr/local/share/vim"
  81. Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_ATHENA -DFUNCPROTO=15 -DNARROWPROTO -g -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1
  82. Linking: gcc -L/usr/local/lib -Wl,--as-needed -o vim -lXaw -lXmu -lXext -lXt -lSM -lICE -lXpm -lXt -lX11 -lXdmcp -lSM -lICE -ldl -lm -lncurses -lelf -lnsl -lselinux -lacl -lattr -lgpm
  83. Press ENTER or type command to continue
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement