diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1997-05-25 02:59:06 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1997-05-25 02:59:06 +0000 |
commit | 87322138a9e724f485f0e6c7287eae5ecd7a1751 (patch) | |
tree | 4b2d6065e8190b0c1723596459640d5e4ae68472 /editors/vim/files | |
parent | 6fceba7f126061dc0c5097f238fb1479c0a89ae0 (diff) |
Beta version of Vim 5.0.
Vim 5.0 beta is still under development (hasn't really reached a final beta
stage). Until that point, I don't want to change the stable vim-4.6 port.
Note that Vim5.0 has syntax coloring and Perl 5.004 support.
Notes
Notes:
svn path=/head/; revision=6549
Diffstat (limited to 'editors/vim/files')
-rw-r--r-- | editors/vim/files/patch-01 | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/editors/vim/files/patch-01 b/editors/vim/files/patch-01 new file mode 100644 index 000000000000..8d99a4858e36 --- /dev/null +++ b/editors/vim/files/patch-01 @@ -0,0 +1,21 @@ +--- Makefile.orig Tue May 13 01:50:19 1997 ++++ Makefile Sun May 18 19:45:46 1997 +@@ -559,7 +559,7 @@ + $(MOTIF_COMMENT)GUI_DEFS = -DUSE_GUI_MOTIF $(NARROW_PROTO) + $(MOTIF_COMMENT)GUI_IPATH = -I$(GUI_INC_LOC) + $(MOTIF_COMMENT)GUI_LIBS_DIR = -L$(GUI_LIB_LOC) +-$(MOTIF_COMMENT)GUI_LIBS = -lXm -lXt ++$(MOTIF_COMMENT)GUI_LIBS = ${MOTIFLIB} -lXt + $(MOTIF_COMMENT)GUI_TARGETS = $(BINLOC)/$(GVIMTARGET) \ + $(BINLOC)/$(GEXTARGET) \ + $(BINLOC)/$(GVIEWTARGET) \ +@@ -796,7 +796,8 @@ + GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \ + CC="$(CC)" CFLAGS="$(CFLAGS)" TERM_LIB="$(TERM_LIB)" \ + $(CONF_SHELL) ./configure $(CONF_OPT_GUI) $(CONF_OPT_X) \ +- $(CONF_OPT_PERL) $(CONF_ARGS) ++ $(CONF_OPT_PERL) $(CONF_ARGS) \ ++ --prefix=$(PREFIX) + + # When configure.in has changed, run autoconf to produce configure + # If you don't have autoconf, use the configure that's there |