summaryrefslogtreecommitdiff
path: root/lang/squeak-dev/files
diff options
context:
space:
mode:
Diffstat (limited to 'lang/squeak-dev/files')
-rw-r--r--lang/squeak-dev/files/patch-platforms__Cross__plugins__Mpeg3Plugin__libmpeg__mpeg3io.h11
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__config__configure10
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in23
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__npsqueak__Makefile20
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueak.c20
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueakregister.in13
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueakrun.in38
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__plugins__PseudoTTYPlugin__openpty.h14
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__plugins__SqueakFFIPrims__ffi-config10
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__src__plugins__UnixOSProcessPlugin__UnixOSProcessPlugin.c47
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__vm-sound-OSS__acinclude.m411
-rw-r--r--lang/squeak-dev/files/pkg-message.in22
12 files changed, 0 insertions, 239 deletions
diff --git a/lang/squeak-dev/files/patch-platforms__Cross__plugins__Mpeg3Plugin__libmpeg__mpeg3io.h b/lang/squeak-dev/files/patch-platforms__Cross__plugins__Mpeg3Plugin__libmpeg__mpeg3io.h
deleted file mode 100644
index dbfac8c0722b..000000000000
--- a/lang/squeak-dev/files/patch-platforms__Cross__plugins__Mpeg3Plugin__libmpeg__mpeg3io.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- platforms/Cross/plugins/Mpeg3Plugin/libmpeg/mpeg3io.h.orig 2006-04-15 01:17:20.000000000 +0200
-+++ platforms/Cross/plugins/Mpeg3Plugin/libmpeg/mpeg3io.h 2009-04-11 14:54:38.000000000 +0200
-@@ -35,7 +35,7 @@
- #endif
-
- #define mpeg3io_total_bytes(fs) (((mpeg3_fs_t *)(fs))->total_bytes)
--inline int mpeg3io_fgetc(mpeg3_fs_t *fs);
-+int mpeg3io_fgetc(mpeg3_fs_t *fs);
-
- static inline unsigned int mpeg3io_read_int32(mpeg3_fs_t *fs)
- {
diff --git a/lang/squeak-dev/files/patch-platforms__unix__config__configure b/lang/squeak-dev/files/patch-platforms__unix__config__configure
deleted file mode 100644
index 38f45aa494ec..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__config__configure
+++ /dev/null
@@ -1,10 +0,0 @@
---- platforms/unix/config/configure.orig Mon May 10 10:54:48 2004
-+++ platforms/unix/config/configure Mon May 10 10:54:15 2004
-@@ -23526,6 +23526,7 @@
- cat >>conftest.$ac_ext <<_ACEOF
- /* end confdefs.h. */
- #include <sys/soundcard.h>
-+#define OPEN_SOUND_SYSTEM
- int
- main ()
- {
diff --git a/lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in b/lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in
deleted file mode 100644
index f756bee6026e..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in
+++ /dev/null
@@ -1,23 +0,0 @@
---- platforms/unix/config/inisqueak.in.org Mon Feb 6 15:10:05 2006
-+++ platforms/unix/config/inisqueak.in Mon Feb 6 15:10:58 2006
-@@ -99,7 +99,7 @@
- exit 1
- }
-
--if ${test} \( -f squeak.image \) -a \( -f squeak.changes \) -a \( -e ${SOURCES} \)
-+if ${test} \( -f squeak.image \) -a \( -e ${SOURCES} \)
- then
- if ${startup}; then
- if test ! -x ${SQUEAK}; then
-@@ -200,7 +200,10 @@
-
- install "ln -s" "${imgdir}/${SOURCES}" " " "${SOURCES}"
- install "gunzip -dc" "${imgdir}/${IMAGE}" ">" "squeak.image"
--install "gunzip -dc" "${imgdir}/${CHANGES}" ">" "squeak.changes"
-+# For SqueakPlugin.image which don't have changes file.
-+if test -e "${imgdir}/${CHANGES}"; then
-+ install "gunzip -dc" "${imgdir}/${CHANGES}" ">" "squeak.changes"
-+fi
-
- if ${startup}; then
- if test ! -x ${SQUEAK}; then
diff --git a/lang/squeak-dev/files/patch-platforms__unix__npsqueak__Makefile b/lang/squeak-dev/files/patch-platforms__unix__npsqueak__Makefile
deleted file mode 100644
index d5def76a44c7..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__npsqueak__Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
---- platforms/unix/npsqueak/Makefile.orig Sat Aug 23 06:59:39 2003
-+++ platforms/unix/npsqueak/Makefile Fri Nov 24 18:55:48 2006
-@@ -3,7 +3,7 @@
-
- ############ Customize flags here #######################
-
--INC = -I./include -I/usr/X11R6/include
-+INC = -I./include -I%%LOCALBASE%%/include
- CC = gcc
- CFLAGS = $(INC) -O2 -fPIC -Wall
- LD = gcc
-@@ -20,7 +20,7 @@
- ############ compile and link ###########################
-
- npsqueak.so : npsqueak.o npunix.o
-- $(LD) $(LDFLAGS) npsqueak.o npunix.o -o npsqueak.so
-+ $(LD) $(LDFLAGS) npsqueak.o npunix.o -o npsqueak.so -L%%LOCALBASE%%/lib -lXt -lX11
-
- npsqueak.o: npsqueak.c ../config.h
- $(CC) -c $(CFLAGS) -DVM_LIBDIR=\"$(VM_LIBDIR)\" $<
diff --git a/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueak.c b/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueak.c
deleted file mode 100644
index 20eddcbb168b..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueak.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- platforms/unix/npsqueak/npsqueak.c.orig Sun Mar 20 05:38:26 2005
-+++ platforms/unix/npsqueak/npsqueak.c Sat Oct 7 19:56:10 2006
-@@ -177,13 +177,16 @@
- findFileInPaths(char* result, char *filename, int dirn, char *dirv[PATH_MAX]){
- int i;
- char path[PATH_MAX];
-+ char gzipedpath[PATH_MAX];
-
- for(i= 0; i < dirn; i++){
- DPRINT("NP: search \"%s\" in \"%s\" \n",filename,dirv[i]);
-
- strcpy(path, dirv[i]);
- strcat(path, filename);
-- if (access(path, R_OK) == 0){
-+ strcpy(gzipedpath, path);
-+ strcat(gzipedpath, ".gz");
-+ if (access(path, R_OK) == 0 || access(gzipedpath, R_OK) == 0){
- DPRINT("NP: \"%s\" in \"%s\" found\n",filename,dirv[i]);
- return strcpy(result, path);
- }
diff --git a/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueakregister.in b/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueakregister.in
deleted file mode 100644
index de93fdadec66..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueakregister.in
+++ /dev/null
@@ -1,13 +0,0 @@
---- platforms/unix/npsqueak/npsqueakregister.in.orig Sun Mar 20 05:38:26 2005
-+++ platforms/unix/npsqueak/npsqueakregister.in Fri Oct 6 21:02:25 2006
-@@ -8,8 +8,8 @@
- # Parameters: -u unregister
-
- NPSQUEAK_SO=@NPSQUEAK_SO@
--BROWSERS="netscape mozilla mozilla-firefox opera MozillaFirefox/lib"
--BROWSER_DIRS="/usr/local/lib /usr/lib /opt"
-+BROWSERS="netscape mozilla firefox opera seamonkey"
-+BROWSER_DIRS="%%LOCALBASE%%/lib %%LOCALBASE%%/share /usr/lib"
- SYSTEM_BROWSER_DIR="/usr/lib/browser-plugins"
-
- ACTION=register
diff --git a/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueakrun.in b/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueakrun.in
deleted file mode 100644
index 0a6058b52ab4..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__npsqueak__npsqueakrun.in
+++ /dev/null
@@ -1,38 +0,0 @@
---- platforms/unix/npsqueak/npsqueakrun.in.orig Sun Mar 20 05:38:26 2005
-+++ platforms/unix/npsqueak/npsqueakrun.in Sun Jan 7 16:30:12 2007
-@@ -1,4 +1,4 @@
--#! /bin/bash
-+#! %%LOCALBASE%%/bin/bash
-
- # File: npsqueakrun
- # Author: Bert Freudenberg
-@@ -60,12 +60,24 @@
- ensurefile()
- {
- if [ ! -e "${1}" ] ; then
-- if cp "${2}" "${1}" ; then
-- pdebug "Created ${1}"
-+ if [ -e "${2}" ] ;then
-+ if cp "${2}" "${1}" ; then
-+ pdebug "Created ${1}"
-+ else
-+ perror "Could not create ${1}"
-+ if [ ! -r "${2}" ] ; then
-+ perror "because ${2} is missing"
-+ fi
-+ fi
- else
-- perror "Could not create ${1}"
-- if [ ! -r "${2}" ] ; then
-- perror "because ${2} is missing"
-+ if [ -e "${2}.gz" ] ; then
-+ gunzip -c "${2}.gz" > "${1}"
-+ pdebug "Created ${1} from ${2}.gz"
-+ else
-+ perror "Could not create ${1}"
-+ if [ ! -r "${2}" ] ; then
-+ perror "because ${2} is missing"
-+ fi
- fi
- fi
- fi
diff --git a/lang/squeak-dev/files/patch-platforms__unix__plugins__PseudoTTYPlugin__openpty.h b/lang/squeak-dev/files/patch-platforms__unix__plugins__PseudoTTYPlugin__openpty.h
deleted file mode 100644
index 36dd49bcd97b..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__plugins__PseudoTTYPlugin__openpty.h
+++ /dev/null
@@ -1,14 +0,0 @@
---- platforms/unix/plugins/PseudoTTYPlugin/openpty.h.orig Tue Jan 14 16:02:55 2003
-+++ platforms/unix/plugins/PseudoTTYPlugin/openpty.h Tue Jan 14 16:03:09 2003
-@@ -45,7 +45,10 @@
- # elif defined(HAVE_LIBUTIL_H)
- # include <libutil.h> /* openpty() on FreeBSD */
- # else
--# error: cannot find headers for openpty()
-+# include <sys/types.h>
-+# include <sys/ioctl.h>
-+# include <termios.h>
-+# include <libutil.h>
- # endif
-
- #else /* !HAVE_OPENPTY */
diff --git a/lang/squeak-dev/files/patch-platforms__unix__plugins__SqueakFFIPrims__ffi-config b/lang/squeak-dev/files/patch-platforms__unix__plugins__SqueakFFIPrims__ffi-config
deleted file mode 100644
index 80ded9fb17c9..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__plugins__SqueakFFIPrims__ffi-config
+++ /dev/null
@@ -1,10 +0,0 @@
---- platforms/unix/plugins/SqueakFFIPrims/ffi-config.org Wed Apr 26 20:27:53 2006
-+++ platforms/unix/plugins/SqueakFFIPrims/ffi-config Wed Apr 26 20:29:00 2006
-@@ -39,6 +39,7 @@
-
- case ${abi} in
- linux) abi=sysv;;
-+ freebsd*) abi=sysv;;
- darwin*) abi=darwin;;
- *) abi=libffi; lib="-lffi";;
- esac
diff --git a/lang/squeak-dev/files/patch-platforms__unix__src__plugins__UnixOSProcessPlugin__UnixOSProcessPlugin.c b/lang/squeak-dev/files/patch-platforms__unix__src__plugins__UnixOSProcessPlugin__UnixOSProcessPlugin.c
deleted file mode 100644
index 91518b93b728..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__src__plugins__UnixOSProcessPlugin__UnixOSProcessPlugin.c
+++ /dev/null
@@ -1,47 +0,0 @@
---- platforms/unix/src/plugins/UnixOSProcessPlugin/UnixOSProcessPlugin.c.org Sun Apr 23 16:18:27 2006
-+++ platforms/unix/src/plugins/UnixOSProcessPlugin/UnixOSProcessPlugin.c Sun Apr 23 16:20:43 2006
-@@ -1818,7 +1818,7 @@
- return interpreterProxy->primitiveFail();
- }
- sqFile = interpreterProxy->arrayValueOf(sqFileOop);
-- if ((feof(sqFile->file)) == 0) {
-+ if ((feof((FILE *)sqFile->file)) == 0) {
- result = interpreterProxy->falseObject();
- } else {
- result = interpreterProxy->trueObject();
-@@ -1870,7 +1870,7 @@
-
- /* Set up the flock structure parameter for fcntl() */
-
-- fileNo = fileno(sqFile->file);
-+ fileNo = fileno((FILE *)sqFile->file);
- if (exclusive) {
- lockStruct.l_type = F_WRLCK;
- } else {
-@@ -2897,7 +2897,7 @@
-
- /* Set up the flock structure parameter for fcntl() */
-
-- fileNo = fileno(sqFile->file);
-+ fileNo = fileno((FILE *)sqFile->file);
- if (exclusive) {
- lockStruct.l_type = F_WRLCK;
- } else {
-@@ -2957,7 +2957,7 @@
- return interpreterProxy->primitiveFail();
- }
- sqFile = interpreterProxy->arrayValueOf(sqFileOop);
-- fileNo = fileno(sqFile->file);
-+ fileNo = fileno((FILE *)sqFile->file);
- interpreterProxy->pop(2);
- interpreterProxy->pushInteger(fileNo);
- }
-@@ -3001,7 +3001,7 @@
-
- /* Set up the flock structure parameter for fcntl() */
-
-- fileNo = fileno(sqFile->file);
-+ fileNo = fileno((FILE *)sqFile->file);
- lockStruct.l_type = F_UNLCK;
- lockStruct.l_whence = SEEK_SET;
- lockStruct.l_start = start;
diff --git a/lang/squeak-dev/files/patch-platforms__unix__vm-sound-OSS__acinclude.m4 b/lang/squeak-dev/files/patch-platforms__unix__vm-sound-OSS__acinclude.m4
deleted file mode 100644
index 3fb9e7e023a1..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__vm-sound-OSS__acinclude.m4
+++ /dev/null
@@ -1,11 +0,0 @@
---- platforms/unix/vm-sound-OSS/acinclude.m4.orig Mon May 10 10:18:03 2004
-+++ platforms/unix/vm-sound-OSS/acinclude.m4 Mon May 10 10:18:22 2004
-@@ -1,7 +1,7 @@
- # -*- sh -*-
-
- AC_MSG_CHECKING([for Open Sound System])
--AC_TRY_COMPILE([#include <sys/soundcard.h>],[OPEN_SOUND_SYSTEM;],[
-+AC_TRY_COMPILE([#include <sys/soundcard.h>],[EV_SEQ_LOCAL;],[
- AC_MSG_RESULT(yes)
- ],[
- AC_MSG_RESULT(no)
diff --git a/lang/squeak-dev/files/pkg-message.in b/lang/squeak-dev/files/pkg-message.in
deleted file mode 100644
index b19bc6aa0dd2..000000000000
--- a/lang/squeak-dev/files/pkg-message.in
+++ /dev/null
@@ -1,22 +0,0 @@
- ------------------------- Please note: -------------------------
-
- In order to be able to make use of squeak you need to have an
- image and a changes file in your working directory as well
- as access to a source file. This is easy by using inisqueak.
- Please see the inisqueak(1) manpage for details.
-
- Make sure you have the following values in your environment
- variables:
- PATH: %%PREFIX%%/bin
- LD_LIBRARY_PATH: %%PREFIX%%/lib
- %%PREFIX%%/share/squeak/%%VMVERSION%%
-
- If you want to use web browser plugin,
- run %%PREFIX%%/share/squeak/npsqueakregister.
-
- If you want to use (Japanese) XIM at full screen,
- you get changeset at
- http://squeak.610t.org/patches/CompositionFocus.1.cs
- and file in it.
- ------------------ Thanks for your attention! ------------------
-