diff options
Diffstat (limited to 'lang/clisp/files')
-rw-r--r-- | lang/clisp/files/patch-configure | 24 | ||||
-rw-r--r-- | lang/clisp/files/patch-modules__clx__mit-clx__Makefile | 20 | ||||
-rw-r--r-- | lang/clisp/files/patch-modules__fastcgi__fastcgi_wrappers.c | 40 | ||||
-rw-r--r-- | lang/clisp/files/patch-modules__postgresql__config.h.in | 22 | ||||
-rw-r--r-- | lang/clisp/files/patch-src__makemake.in | 20 | ||||
-rw-r--r-- | lang/clisp/files/pkg-message.in | 14 |
6 files changed, 0 insertions, 140 deletions
diff --git a/lang/clisp/files/patch-configure b/lang/clisp/files/patch-configure deleted file mode 100644 index 36353e85e44f..000000000000 --- a/lang/clisp/files/patch-configure +++ /dev/null @@ -1,24 +0,0 @@ ---- configure.orig 2009-01-29 22:59:16.000000000 -0500 -+++ configure 2009-01-29 23:01:58.000000000 -0500 -@@ -392,21 +392,17 @@ - passnext=both ;; - - --elispdir=* | --elispdi=* | --elispd=* | --elisp=* | --elis=* | --eli=* | --el=*) -- subdir_configure_args="$subdir_configure_args $arg" - makemake_args="$makemake_args --elispdir="`getarg "$arg"` ;; - - --elispdir | --elispdi | --elispd | --elisp | --elis | --eli | --el) -- subdir_configure_args="$subdir_configure_args $arg" - makemake_args="$makemake_args --elispdir=" - prev=elispdir - passnext=both ;; - - --vimdir=* | --vimdi=* | --vimd=* | --vim=* | --vi=*) -- subdir_configure_args="$subdir_configure_args $arg" - makemake_args="$makemake_args --vimdir="`getarg "$arg"` ;; - - --vimdir | --vimdi | --vimd | --vim | --vi) -- subdir_configure_args="$subdir_configure_args $arg" - makemake_args="$makemake_args --vimdir=" - prev=vimdir - passnext=both ;; diff --git a/lang/clisp/files/patch-modules__clx__mit-clx__Makefile b/lang/clisp/files/patch-modules__clx__mit-clx__Makefile deleted file mode 100644 index 1f4f0d116f9c..000000000000 --- a/lang/clisp/files/patch-modules__clx__mit-clx__Makefile +++ /dev/null @@ -1,20 +0,0 @@ ---- modules/clx/mit-clx/Makefile 2009/08/16 20:21:21 1.8 -+++ modules/clx/mit-clx/Makefile 2010/09/14 18:12:08 1.9 -@@ -75,7 +75,7 @@ - chmod a+x $(bindir)/clx - - link.sh : $(srcdir)/link.sh -- $(LN_S) $< . -+ $(LN_S) $(srcdir)/link.sh . - - distrib : src-distrib clisp-distrib - -@@ -87,7 +87,7 @@ - - - # Make a module --clisp-module : defsystem.fas stamp.fas $(ALLFAS) -+clisp-module : defsystem.fas stamp.fas $(ALLFAS) link.sh - - # Make a module distribution into $(distribdir) - clisp-module-distrib : clisp-module force diff --git a/lang/clisp/files/patch-modules__fastcgi__fastcgi_wrappers.c b/lang/clisp/files/patch-modules__fastcgi__fastcgi_wrappers.c deleted file mode 100644 index f2b01d03f4fa..000000000000 --- a/lang/clisp/files/patch-modules__fastcgi__fastcgi_wrappers.c +++ /dev/null @@ -1,40 +0,0 @@ ---- ./modules/fastcgi/fastcgi_wrappers.c.orig Fri Dec 8 09:28:45 2006 -+++ ./modules/fastcgi/fastcgi_wrappers.c Fri Dec 8 09:35:23 2006 -@@ -41,6 +41,25 @@ - /* Crank this up as needed */ - #define TEMPBUFSIZE 65536 - -+#ifdef __FreeBSD__ -+char* t_strndup(const char* string, size_t n) -+{ -+ char* copy_string = 0; -+ -+ if(0 == string || 0 == n) -+ return 0; -+ -+ copy_string = (char*) malloc(n + 1); -+ if(0 == copy_string) -+ return 0; -+ -+ memcpy(copy_string, string, n); -+ *(copy_string + n) = '\0'; -+ -+ return copy_string; -+} -+#endif -+ - /* Local functions */ - static char * read_stdio(FILE *); - static int write_stdio(FILE *, char *, int); -@@ -91,7 +110,11 @@ - result[i+1] = NULL; - } - else { -+#ifdef __FreeBSD__ -+ result[i] = t_strndup(*envp, equ - *envp); -+#else - result[i] = strndup(*envp, equ - *envp); -+#endif - result[i+1] = strdup(equ + 1); - } - } diff --git a/lang/clisp/files/patch-modules__postgresql__config.h.in b/lang/clisp/files/patch-modules__postgresql__config.h.in deleted file mode 100644 index f29ec1412421..000000000000 --- a/lang/clisp/files/patch-modules__postgresql__config.h.in +++ /dev/null @@ -1,22 +0,0 @@ ---- ./modules/postgresql/config.h.in.orig 2010-07-08 08:26:09.000000000 -0400 -+++ ./modules/postgresql/config.h.in 2010-07-08 08:27:26.000000000 -0400 -@@ -228,9 +228,6 @@ - /* Define to 1 if you have the `PQgetResult' function. */ - #undef HAVE_PQGETRESULT - --/* Define to 1 if you have the `PQgetssl' function. */ --#undef HAVE_PQGETSSL -- - /* Define to 1 if you have the `PQgetvalue' function. */ - #undef HAVE_PQGETVALUE - -@@ -240,9 +237,6 @@ - /* Define to 1 if you have the `PQinitOpenSSL' function. */ - #undef HAVE_PQINITOPENSSL - --/* Define to 1 if you have the `PQinitSSL' function. */ --#undef HAVE_PQINITSSL -- - /* Define to 1 if you have the `PQisBusy' function. */ - #undef HAVE_PQISBUSY - diff --git a/lang/clisp/files/patch-src__makemake.in b/lang/clisp/files/patch-src__makemake.in deleted file mode 100644 index c09ef584726e..000000000000 --- a/lang/clisp/files/patch-src__makemake.in +++ /dev/null @@ -1,20 +0,0 @@ ---- ./src/makemake.in.orig 2010-11-08 19:22:10.000000000 -0500 -+++ ./src/makemake.in 2010-11-08 19:22:50.000000000 -0500 -@@ -1424,7 +1424,7 @@ - freebsd2* | netbsd* | openbsd*) - XCC_CREATESHARED='ld -Bshareable -o $lib $libs' - ;; -- freebsd3* | gnu* | linux* | cygwin* | mingw* | k*bsd* | dragonfly*) -+ freebsd* | gnu* | linux* | cygwin* | mingw* | k*bsd* | dragonfly*) - XCC_CREATESHARED='${CC} ${CFLAGS} ${CLFLAGS} -shared -o $lib $libs' - ;; - hpux9* | hpux10*) -@@ -1917,7 +1917,7 @@ - echol "psdir = ${PSDIR}" - echol "pdfdir = ${PDFDIR}" - echol "libdir = ${LIBDIR}" --echol "lisplibdir = \$(libdir)${NEXT_}\$(TOPDIR)" -+echol "lisplibdir = \$(libdir)${NEXT_}clisp" - test -n "$USE_GETTEXT" && echol "localedir = ${LOCALEDIR}" - echol "elispdir = ${ELISPDIR}" - echol "vimdir = ${VIMDIR}" diff --git a/lang/clisp/files/pkg-message.in b/lang/clisp/files/pkg-message.in deleted file mode 100644 index 18ca19581e22..000000000000 --- a/lang/clisp/files/pkg-message.in +++ /dev/null @@ -1,14 +0,0 @@ -============================================================================== - -Emacs and Vim editing facilities for CLISP were installed into: -%%DATADIR%% - -And you will have to symlink/copy the files to the corresponding directories. -For global installation: - -Emacs: %%PREFIX%%/share/emacs/site-lisp -Vim: $VIMRUNTIME/vimfiles/after/syntax - -Alternatively you may do per-user installations. - -============================================================================== |