diff options
author | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-10-21 05:39:23 +0800 |
---|---|---|
committer | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-10-21 05:39:23 +0800 |
commit | 63eaf00c54e262457578fc7197397e38b4e6095e (patch) | |
tree | 86ec773f8b8e00f984db3776a62ada2a1625dd86 /x11-toolkits/eel2/files | |
parent | 015711d7dea58a5a1df999294ea0c099de66916a (diff) | |
download | marcuscom-ports-63eaf00c54e262457578fc7197397e38b4e6095e.tar marcuscom-ports-63eaf00c54e262457578fc7197397e38b4e6095e.tar.gz marcuscom-ports-63eaf00c54e262457578fc7197397e38b4e6095e.tar.bz2 marcuscom-ports-63eaf00c54e262457578fc7197397e38b4e6095e.tar.lz marcuscom-ports-63eaf00c54e262457578fc7197397e38b4e6095e.tar.xz marcuscom-ports-63eaf00c54e262457578fc7197397e38b4e6095e.tar.zst marcuscom-ports-63eaf00c54e262457578fc7197397e38b4e6095e.zip |
Add eel2-2.5.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1286 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/eel2/files')
-rw-r--r-- | x11-toolkits/eel2/files/patch-Makefile.in | 14 | ||||
-rw-r--r-- | x11-toolkits/eel2/files/patch-configure | 13 | ||||
-rw-r--r-- | x11-toolkits/eel2/files/patch-eel::eel-vfs-extensions.c | 15 |
3 files changed, 42 insertions, 0 deletions
diff --git a/x11-toolkits/eel2/files/patch-Makefile.in b/x11-toolkits/eel2/files/patch-Makefile.in new file mode 100644 index 000000000..5bd442108 --- /dev/null +++ b/x11-toolkits/eel2/files/patch-Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD: ports/x11-toolkits/eel2/files/patch-Makefile.in,v 1.6 2003/09/18 06:49:22 marcus Exp $ + +--- Makefile.in 2002/06/13 16:05:09 1.1 ++++ Makefile.in 2002/06/13 16:05:18 +@@ -119,7 +119,7 @@ + + NULL = + +-SUBDIRS = eel test po ++SUBDIRS = eel po + + EXTRA_DIST = COPYING.LIB HACKING MAINTAINERS eel.spec.in $(NULL) + diff --git a/x11-toolkits/eel2/files/patch-configure b/x11-toolkits/eel2/files/patch-configure new file mode 100644 index 000000000..5c98da6e5 --- /dev/null +++ b/x11-toolkits/eel2/files/patch-configure @@ -0,0 +1,13 @@ + +$FreeBSD: ports/x11-toolkits/eel2/files/patch-configure,v 1.4 2003/09/18 06:49:22 marcus Exp $ + +--- configure 2002/04/25 19:15:15 1.1 ++++ configure 2002/04/25 19:17:28 +@@ -5331,6 +5331,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/x11-toolkits/eel2/files/patch-eel::eel-vfs-extensions.c b/x11-toolkits/eel2/files/patch-eel::eel-vfs-extensions.c new file mode 100644 index 000000000..31f6a5e99 --- /dev/null +++ b/x11-toolkits/eel2/files/patch-eel::eel-vfs-extensions.c @@ -0,0 +1,15 @@ + +$FreeBSD: ports/x11-toolkits/eel2/files/patch-eel::eel-vfs-extensions.c,v 1.4 2003/09/18 06:49:22 marcus Exp $ + +--- eel/eel-vfs-extensions.c 2001/12/20 13:41:21 1.1 ++++ eel/eel-vfs-extensions.c 2001/12/20 13:47:36 +@@ -116,7 +116,8 @@ + + /* Return the file. */ + *file_size = total_bytes_read; +- *file_contents = g_realloc (buffer, total_bytes_read); ++ *file_contents = g_realloc (buffer, total_bytes_read + 1); ++ (*file_contents)[total_bytes_read] = '\0'; + return GNOME_VFS_OK; + } + |