diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2011-06-04 06:49:43 +0000 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2011-06-04 06:49:43 +0000 |
commit | 9cbcc68913642494f6d9f5bbba980da229d93314 (patch) | |
tree | 3c2f1300ff633afdf9009348ec0af9375ca7d770 /x11/mlterm/files/patch-gtk_Makefile.in | |
parent | Fix segmentation fault on amd64. (diff) |
Add missing dependency on x11-toolkits/vte. [*]
Rename the libvte compatible library "libvte-mlterm" to avoid conflict.
Reported by: erwin [*]
Notes
Notes:
svn path=/head/; revision=275051
Diffstat (limited to 'x11/mlterm/files/patch-gtk_Makefile.in')
-rw-r--r-- | x11/mlterm/files/patch-gtk_Makefile.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/x11/mlterm/files/patch-gtk_Makefile.in b/x11/mlterm/files/patch-gtk_Makefile.in new file mode 100644 index 000000000000..8939a4c8d860 --- /dev/null +++ b/x11/mlterm/files/patch-gtk_Makefile.in @@ -0,0 +1,29 @@ +--- gtk/Makefile.in.orig 2011-06-04 15:13:16.000000000 +0900 ++++ gtk/Makefile.in 2011-06-04 15:14:33.000000000 +0900 +@@ -23,10 +23,10 @@ + + OBJ = vte.o marshal.o vtetypebuiltins.o reaper.o + +-all: libvte.la ++all: libvte-mlterm.la + +-libvte.la: $(OBJ) +- $(LIBTOOL_LINK) -o libvte.la $(OBJ:.o=.lo) ../mlterm/*.lo \ ++libvte-mlterm.la: $(OBJ) ++ $(LIBTOOL_LINK) -o libvte-mlterm.la $(OBJ:.o=.lo) ../mlterm/*.lo \ + `echo ../xwindow/*.lo|sed 's/..\/xwindow\/main.lo//g' | \ + sed 's/..\/xwindow\/x_term_manager.lo//g' | \ + sed 's/..\/xwindow\/x_sb_screen.lo//g' | \ +@@ -43,10 +43,10 @@ + -I$(top_builddir)/xwindow -I../mkf/include -I../kiklib/include -g -c $< + + clean: +- rm -rf $(OBJ) $(OBJ:.o=.lo) libvte.la *.core .libs ++ rm -rf $(OBJ) $(OBJ:.o=.lo) libvte-mlterm.la *.core .libs + + distclean: clean + rm -f Makefile + + install: +- $(LIBTOOL_INSTALL) libvte.la $(libdir) ++ $(LIBTOOL_INSTALL) libvte-mlterm.la $(libdir) |