diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2002-10-09 06:17:55 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2002-10-09 06:17:55 +0800 |
commit | 852c9fd84723d3e5279b6813d3bd66351c6eaa71 (patch) | |
tree | 4471bf3c61e9f748e3bdebadd380a99fa59b7159 /x11-toolkits/eel2/files | |
parent | 293c7fb23c6800caebd9f3cf7fed3aaa58049d55 (diff) | |
download | marcuscom-ports-852c9fd84723d3e5279b6813d3bd66351c6eaa71.tar marcuscom-ports-852c9fd84723d3e5279b6813d3bd66351c6eaa71.tar.gz marcuscom-ports-852c9fd84723d3e5279b6813d3bd66351c6eaa71.tar.bz2 marcuscom-ports-852c9fd84723d3e5279b6813d3bd66351c6eaa71.tar.lz marcuscom-ports-852c9fd84723d3e5279b6813d3bd66351c6eaa71.tar.xz marcuscom-ports-852c9fd84723d3e5279b6813d3bd66351c6eaa71.tar.zst marcuscom-ports-852c9fd84723d3e5279b6813d3bd66351c6eaa71.zip |
Add eel2.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@32 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..a0c3e7a4a --- /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.4 2002/06/13 16:06:24 sobomax 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..5ba27fccc --- /dev/null +++ b/x11-toolkits/eel2/files/patch-configure @@ -0,0 +1,13 @@ + +$FreeBSD: ports/x11-toolkits/eel2/files/patch-configure,v 1.2 2002/05/20 17:47:26 sobomax 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..a1bb9775c --- /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.2 2002/05/20 17:47:26 sobomax 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; + } + |