diff options
author | mbr <mbr@FreeBSD.org> | 2003-03-23 16:17:26 +0800 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2003-03-23 16:17:26 +0800 |
commit | a57bc65d24a172a2fe4ff7522a1036bdf0a2458d (patch) | |
tree | f9818e82a14130e73326d43c83fc3432c54947f6 | |
parent | 5777ca0bb45f1de9b94a4d88c3d03dbac0704acd (diff) | |
download | freebsd-ports-graphics-a57bc65d24a172a2fe4ff7522a1036bdf0a2458d.tar.gz freebsd-ports-graphics-a57bc65d24a172a2fe4ff7522a1036bdf0a2458d.tar.zst freebsd-ports-graphics-a57bc65d24a172a2fe4ff7522a1036bdf0a2458d.zip |
Fix unresolved symbols in the recode port. Without this
fix the libs cannot be used with php.
-rw-r--r-- | converters/recode/files/patch-lib-error.c | 33 | ||||
-rw-r--r-- | converters/recode/files/patch-src-Makefile.in (renamed from converters/recode/files/patch-aa) | 11 |
2 files changed, 43 insertions, 1 deletions
diff --git a/converters/recode/files/patch-lib-error.c b/converters/recode/files/patch-lib-error.c new file mode 100644 index 00000000000..f98aed77d33 --- /dev/null +++ b/converters/recode/files/patch-lib-error.c @@ -0,0 +1,33 @@ +--- lib/error.c.orig Mon Mar 10 10:57:22 2003 ++++ lib/error.c Mon Mar 10 11:02:12 2003 +@@ -25,6 +25,18 @@ + # include <config.h> + #endif + ++# ifdef __FreeBSD__ ++# include <sys/types.h> ++# include <sys/exec.h> ++# include <vm/vm.h> ++# include <vm/vm_param.h> ++# include <vm/pmap.h> ++# include <vm/swap_pager.h> ++# include <machine/param.h> ++# include <machine/vmparam.h> ++# include <machine/pmap.h> ++# endif ++ + #include <stdio.h> + + #if HAVE_VPRINTF || HAVE_DOPRNT || _LIBC +@@ -80,7 +92,11 @@ + + /* The calling program should define program_name and set it to the + name of the executing program. */ ++# ifdef __FreeBSD__ ++# define program_name *((struct ps_strings *)PS_STRINGS)->ps_argvstr ++# else + extern char *program_name; ++# endif + + # ifdef HAVE_STRERROR_R + # define __strerror_r strerror_r diff --git a/converters/recode/files/patch-aa b/converters/recode/files/patch-src-Makefile.in index f8e7784ba6a..e168d585198 100644 --- a/converters/recode/files/patch-aa +++ b/converters/recode/files/patch-src-Makefile.in @@ -1,5 +1,5 @@ --- src/Makefile.in.orig Mon Jan 22 19:14:16 2001 -+++ src/Makefile.in Thu Sep 6 11:21:43 2001 ++++ src/Makefile.in Mon Mar 10 10:17:54 2003 @@ -131,7 +131,7 @@ librecode_la_SOURCES = argmatch.c charname.c combine.c fr-charname.c hash.c iconv.c libiconv.c localcharset.c merged.c names.c outer.c quotearg.c recode.c request.c strip-pool.c task.c xmalloc.c $(C_STEPS) @@ -9,3 +9,12 @@ INCLUDES = -I.. -I$(srcdir) -I$(top_srcdir)/lib -I$(top_srcdir)/libiconv DEFS = -DLIBDIR=\"$(libdir)\" @DEFS@ +@@ -153,7 +153,7 @@ + + CPPFLAGS = @CPPFLAGS@ + LDFLAGS = @LDFLAGS@ +-LIBS = @LIBS@ ++LIBS = @LIBS@ ../lib/libreco.a + ANSI2KNR = @ANSI2KNR@ + librecode_la_LIBADD = + librecode_la_OBJECTS = argmatch$U.lo charname$U.lo combine$U.lo \ |