diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-06-25 05:37:59 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-06-25 05:37:59 +0200 |
commit | 182c5be111889643294083c830080cfbaa3dd154 (patch) | |
tree | 4c393150480418e953031c93453cedc10738185f /src/Makefile | |
parent | ba52cde53d8eeb0bd8949ab0acc47a56f87e7963 (diff) | |
download | vim-182c5be111889643294083c830080cfbaa3dd154.zip |
Remove the old and not well supported GTK 1 code. (James Vega)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Makefile b/src/Makefile index 375b5988e..33780d00b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -325,9 +325,7 @@ CClink = $(CC) # Uncomment one of these lines if you have that GUI but don't want to use it. # The automatic check will use another one that can be found. # Gnome is disabled by default, it may cause trouble. -#CONF_OPT_GUI = --disable-gtk-check #CONF_OPT_GUI = --disable-gtk2-check -#CONF_OPT_GUI = --enable-gnome-check #CONF_OPT_GUI = --enable-gnome2-check #CONF_OPT_GUI = --disable-motif-check #CONF_OPT_GUI = --disable-athena-check @@ -339,6 +337,7 @@ CClink = $(CC) # # GTK versions that are known not to work 100% are rejected. # Use "--disable-gtktest" to accept them anyway. +# Only GTK 2 is supported, for GTK 1 use Vim 7.2. # # GNOME means GTK with Gnome support. If using GTK and --enable-gnome-check # is used then GNOME will automatically be used if it is found. If you have @@ -346,11 +345,8 @@ CClink = $(CC) # --enable-gui=gtk or leave out --enable-gnome-check. # # If the selected GUI isn't found, the GUI is disabled automatically -#CONF_OPT_GUI = --enable-gui=gtk -#CONF_OPT_GUI = --enable-gui=gtk --disable-gtktest #CONF_OPT_GUI = --enable-gui=gtk2 #CONF_OPT_GUI = --enable-gui=gtk2 --disable-gtktest -#CONF_OPT_GUI = --enable-gui=gnome #CONF_OPT_GUI = --enable-gui=gnome2 #CONF_OPT_GUI = --enable-gui=gnome2 --disable-gtktest #CONF_OPT_GUI = --enable-gui=motif @@ -396,8 +392,8 @@ CClink = $(CC) # RUBY # Uncomment this when you want to include the Ruby interface. # Note: you need the development package (e.g., ruby1.9.1-dev on Ubuntu). -# CONF_OPT_RUBY = --enable-rubyinterp -# CONF_OPT_RUBY = --enable-rubyinterp --with-ruby-command=ruby1.9.1 +#CONF_OPT_RUBY = --enable-rubyinterp +#CONF_OPT_RUBY = --enable-rubyinterp --with-ruby-command=ruby1.9.1 # MZSCHEME # Uncomment this when you want to include the MzScheme interface. |