diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-12-23 00:11:38 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-12-23 00:11:38 +0800 |
commit | 31e1343260ef48cb4bc33755e9b0030ab90716b6 (patch) | |
tree | a6e50f9dbda3b6a70376ab86044ab1b0e8f85fd5 /x11-toolkits/vte/files | |
parent | df8c54899c0dd6ad31f293706f8ee17afd5a157a (diff) | |
download | marcuscom-ports-31e1343260ef48cb4bc33755e9b0030ab90716b6.tar.gz marcuscom-ports-31e1343260ef48cb4bc33755e9b0030ab90716b6.tar.zst marcuscom-ports-31e1343260ef48cb4bc33755e9b0030ab90716b6.zip |
Update to 0.23.2
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13286 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/vte/files')
-rw-r--r-- | x11-toolkits/vte/files/patch-config.h.in | 12 | ||||
-rw-r--r-- | x11-toolkits/vte/files/patch-configure | 11 | ||||
-rw-r--r-- | x11-toolkits/vte/files/patch-gnome-pty-helper_Makefile.in | 13 | ||||
-rw-r--r-- | x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-utmp.c | 40 | ||||
-rw-r--r-- | x11-toolkits/vte/files/patch-python_Makefile.in | 19 | ||||
-rw-r--r-- | x11-toolkits/vte/files/patch-src_vteseq.c | 10 |
6 files changed, 105 insertions, 0 deletions
diff --git a/x11-toolkits/vte/files/patch-config.h.in b/x11-toolkits/vte/files/patch-config.h.in new file mode 100644 index 000000000..03db0e1c4 --- /dev/null +++ b/x11-toolkits/vte/files/patch-config.h.in @@ -0,0 +1,12 @@ +--- config.h.in.orig Wed May 17 10:45:57 2006 ++++ config.h.in Wed May 17 10:46:25 2006 +@@ -106,6 +106,9 @@ + /* Define to 1 if you have the <GL/glx.h> header file. */ + #undef HAVE_GL_GLX_H + ++/* Define to 1 if you have the `posix_openpt' function. */ ++#undef HAVE_POSIX_OPENPT ++ + /* Define to 1 if you have the `grantpt' function. */ + #undef HAVE_GRANTPT + diff --git a/x11-toolkits/vte/files/patch-configure b/x11-toolkits/vte/files/patch-configure new file mode 100644 index 000000000..e9fe90107 --- /dev/null +++ b/x11-toolkits/vte/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Tue Feb 13 16:22:38 2007 ++++ configure Tue Feb 13 16:23:19 2007 +@@ -24887,7 +24887,7 @@ fi + + + +-for ac_func in cfmakeraw fork setsid setpgid getpgid getpt grantpt unlockpt ptsname ptsname_r tcgetattr tcsetattr ++for ac_func in cfmakeraw fork setsid setpgid getpgid getpt grantpt posix_openpt unlockpt ptsname ptsname_r tcgetattr tcsetattr + do + as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` + echo "$as_me:$LINENO: checking for $ac_func" >&5 diff --git a/x11-toolkits/vte/files/patch-gnome-pty-helper_Makefile.in b/x11-toolkits/vte/files/patch-gnome-pty-helper_Makefile.in new file mode 100644 index 000000000..93f9d08da --- /dev/null +++ b/x11-toolkits/vte/files/patch-gnome-pty-helper_Makefile.in @@ -0,0 +1,13 @@ +--- gnome-pty-helper/Makefile.in.orig 2009-05-06 01:20:54.000000000 -0400 ++++ gnome-pty-helper/Makefile.in 2009-05-06 01:21:30.000000000 -0400 +@@ -590,8 +590,8 @@ uninstall-am: uninstall-libexecPROGRAMS + + + install-exec-hook: +- chown root.utmp $(DESTDIR)$(libexecdir)/gnome-pty-helper || true +- chmod g+s $(DESTDIR)$(libexecdir)/gnome-pty-helper || true ++ chown root:wheel $(DESTDIR)$(libexecdir)/gnome-pty-helper || true ++ chmod u+s $(DESTDIR)$(libexecdir)/gnome-pty-helper || true + + -include $(top_srcdir)/git.mk + # Tell versions [3.59,3.63) of GNU make to not export all variables. diff --git a/x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-utmp.c b/x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-utmp.c new file mode 100644 index 000000000..bc0877bf5 --- /dev/null +++ b/x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-utmp.c @@ -0,0 +1,40 @@ +--- gnome-pty-helper/gnome-utmp.c.orig Sat Oct 28 23:15:53 2006 ++++ gnome-pty-helper/gnome-utmp.c Sat Oct 28 23:15:40 2006 +@@ -258,10 +258,18 @@ write_logout_record (char *login_name, v + #endif + + if (utmp) ++#if defined(__FreeBSD__) ++ logout (put.ut_line); ++#else + update_utmp (&put); ++#endif + + if (wtmp) ++#if defined(__FreeBSD__) ++ logwtmp (put.ut_line, "", ""); ++#else + update_wtmp (WTMP_OUTPUT_FILENAME, &put); ++#endif + + free (ut); + } +@@ -347,10 +355,18 @@ write_login_record (char *login_name, ch + # endif + #endif + if (utmp) ++#if defined(__FreeBSD__) ++ login (ut); ++#else + update_utmp (ut); ++#endif + + if (wtmp) ++#if defined(__FreeBSD__) ++ logwtmp (ut->ut_line, ut->ut_name, ut->ut_host); ++#else + update_wtmp (WTMP_OUTPUT_FILENAME, ut); ++#endif + + if (lastlog) + update_lastlog(login_name, ut); diff --git a/x11-toolkits/vte/files/patch-python_Makefile.in b/x11-toolkits/vte/files/patch-python_Makefile.in new file mode 100644 index 000000000..d821a7cf6 --- /dev/null +++ b/x11-toolkits/vte/files/patch-python_Makefile.in @@ -0,0 +1,19 @@ +--- python/Makefile.in.orig 2009-11-01 13:38:24.000000000 -0500 ++++ python/Makefile.in 2009-11-01 13:38:24.000000000 -0500 +@@ -73,7 +73,6 @@ am__installdirs = "$(DESTDIR)$(pythonsit + LTLIBRARIES = $(pythonsiteexec_LTLIBRARIES) + am__DEPENDENCIES_1 = + @BUILD_PYTHON_MODULES_TRUE@vtemodule_la_DEPENDENCIES = \ +-@BUILD_PYTHON_MODULES_TRUE@ $(top_builddir)/src/libvte.la \ + @BUILD_PYTHON_MODULES_TRUE@ $(am__DEPENDENCIES_1) \ + @BUILD_PYTHON_MODULES_TRUE@ $(am__DEPENDENCIES_1) \ + @BUILD_PYTHON_MODULES_TRUE@ $(am__DEPENDENCIES_1) +@@ -320,7 +319,7 @@ EXTRA_DIST = vte.defs pyvte.pc.in vte.ov + # we do this to suport building with -Wl,-z,defs which errors on + # vtemodule.so as we cannot include $(PYTHON_LIBS) due to bug 410986. + @BUILD_PYTHON_MODULES_TRUE@vtemodule_la_LDFLAGS = -module -avoid-version -export-symbols-regex initvte $(PYTHON_LDFLAGS) $(AM_LDFLAGS) +-@BUILD_PYTHON_MODULES_TRUE@vtemodule_la_LIBADD = $(top_builddir)/src/libvte.la $(LIBS) $(PYGTK_LIBS) $(VTE_LIBS) $(X_LIBS) ++@BUILD_PYTHON_MODULES_TRUE@vtemodule_la_LIBADD = -lvte $(LIBS) $(PYGTK_LIBS) $(VTE_LIBS) $(X_LIBS) + @BUILD_PYTHON_MODULES_TRUE@nodist_vtemodule_la_SOURCES = vte.c + all: all-am + diff --git a/x11-toolkits/vte/files/patch-src_vteseq.c b/x11-toolkits/vte/files/patch-src_vteseq.c new file mode 100644 index 000000000..e5afb288b --- /dev/null +++ b/x11-toolkits/vte/files/patch-src_vteseq.c @@ -0,0 +1,10 @@ +--- src/vteseq.c.orig Mon Jun 12 20:27:00 2006 ++++ src/vteseq.c Mon Jun 12 20:27:19 2006 +@@ -20,6 +20,7 @@ + #include "../config.h" + + #ifdef HAVE_SYS_SYSLIMITS_H ++#include <sys/cdefs.h> + #include <sys/syslimits.h> + #endif + |