aboutsummaryrefslogtreecommitdiffstats
path: root/x11/xfedor/files
diff options
context:
space:
mode:
Diffstat (limited to 'x11/xfedor/files')
-rw-r--r--x11/xfedor/files/default.sos1
-rw-r--r--x11/xfedor/files/patch-aa23
-rw-r--r--x11/xfedor/files/patch-ab19
-rw-r--r--x11/xfedor/files/patch-ac19
-rw-r--r--x11/xfedor/files/patch-ad57
-rw-r--r--x11/xfedor/files/patch-ae56
6 files changed, 0 insertions, 175 deletions
diff --git a/x11/xfedor/files/default.sos b/x11/xfedor/files/default.sos
deleted file mode 100644
index 1c3db10bf30..00000000000
--- a/x11/xfedor/files/default.sos
+++ /dev/null
@@ -1 +0,0 @@
-No help on this subject
diff --git a/x11/xfedor/files/patch-aa b/x11/xfedor/files/patch-aa
deleted file mode 100644
index e4af534ad79..00000000000
--- a/x11/xfedor/files/patch-aa
+++ /dev/null
@@ -1,23 +0,0 @@
---- Imakefile.orig Fri May 27 01:56:29 1994
-+++ Imakefile Wed Nov 1 09:38:11 2000
-@@ -1,11 +1,8 @@
--XCOMM Specify here your Xpm installation directories
-- XPM_INCLUDEDIR = /project/motif/build/Xpm3.4/source/lib
-- XPM_LIBDIR = /project/motif/build/Xpm3.4/sun/lib
--
-- EXTRA_INCLUDES = -I$(XPM_INCLUDEDIR)
-+ DEFINES = -DDIRSOS=\"${X11BASE}/lib/X11/xfedor\"
-+ EXTRA_INCLUDES = -I$(INCROOT)/X11
-
- DEPLIBS = $(DEPXLIB)
--LOCAL_LIBRARIES = $(XLIB) -L$(XPM_LIBDIR) -lXpm
-+LOCAL_LIBRARIES = $(XLIB) -lXpm
- SYS_LIBRARIES = -lm
-
- SRCS = couchex.c myrast.c dialogue.c popup.c\
-@@ -31,4 +28,4 @@
- main.o
-
-
--ComplexProgramTarget(xfedor)
-+ComplexProgramTargetNoMan(xfedor)
diff --git a/x11/xfedor/files/patch-ab b/x11/xfedor/files/patch-ab
deleted file mode 100644
index fa4b4a99939..00000000000
--- a/x11/xfedor/files/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
-*** sos.c.bak Thu May 26 21:59:13 1994
---- sos.c Tue Sep 3 01:15:19 1996
-***************
-*** 36,42 ****
- {
-
- if ((dirsos = getenv("SOS"))==0)
-! if (UnixFileNameMode) dirsos = "/usr/local/lib/X11/xfedor" ;
- else dirsos = "";
- if (UnixFileNameMode) {
- newdirsos = (char *)malloc(strlen(dirsos)+2);
---- 36,42 ----
- {
-
- if ((dirsos = getenv("SOS"))==0)
-! if (UnixFileNameMode) dirsos = DIRSOS;
- else dirsos = "";
- if (UnixFileNameMode) {
- newdirsos = (char *)malloc(strlen(dirsos)+2);
diff --git a/x11/xfedor/files/patch-ac b/x11/xfedor/files/patch-ac
deleted file mode 100644
index f8e1920a9ee..00000000000
--- a/x11/xfedor/files/patch-ac
+++ /dev/null
@@ -1,19 +0,0 @@
-*** bitmaps/bull.bak Mon Jun 13 17:59:16 1988
---- bitmaps/bull Tue Sep 3 01:46:36 1996
-***************
-*** 1,7 ****
- #define bull_width 70
- #define bull_height 75
- #define bull_x_hot 0
-! #define bull-y_hot -1
- static char bull_bits[] = {
- 0xff, 0xff, 0xff, 0xff, 0x5f, 0xfe, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff,
- 0xff, 0x29, 0xfc, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0x3f, 0x00, 0xf0,
---- 1,7 ----
- #define bull_width 70
- #define bull_height 75
- #define bull_x_hot 0
-! #define bull_y_hot -1
- static char bull_bits[] = {
- 0xff, 0xff, 0xff, 0xff, 0x5f, 0xfe, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff,
- 0xff, 0x29, 0xfc, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0x3f, 0x00, 0xf0,
diff --git a/x11/xfedor/files/patch-ad b/x11/xfedor/files/patch-ad
deleted file mode 100644
index 8e56c774e66..00000000000
--- a/x11/xfedor/files/patch-ad
+++ /dev/null
@@ -1,57 +0,0 @@
-*** couchex.c.orig Thu May 26 21:59:03 1994
---- couchex.c Tue Sep 3 02:09:18 1996
-***************
-*** 366,377 ****
- {
- XEvent rep ;
- static int ZoneCour = 0 ;
-! int i, keysym ;
- char s[1] ;
-
- do {
- XNextEvent(Dpl,&rep) ;
-! if (rep.type == KeyPress) XLookupString(&rep,s,1,&keysym,NULL);
- } while ( ((rep.type != Expose) || (rep.xexpose.count != 0)) &&
- ((rep.type != KeyPress) || (IsModifierKey(keysym))) &&
- (rep.type != ButtonPress) &&
---- 366,378 ----
- {
- XEvent rep ;
- static int ZoneCour = 0 ;
-! int i ;
-! KeySym keysym ;
- char s[1] ;
-
- do {
- XNextEvent(Dpl,&rep) ;
-! if (rep.type == KeyPress) XLookupString(&rep.xkey,s,1,&keysym,NULL);
- } while ( ((rep.type != Expose) || (rep.xexpose.count != 0)) &&
- ((rep.type != KeyPress) || (IsModifierKey(keysym))) &&
- (rep.type != ButtonPress) &&
-***************
-*** 788,798 ****
- int wd ;
- {
- int px, py ;
-! long bidon ;
- XWindowAttributes watt ;
-
- XGetWindowAttributes(Dpl,wd,&watt);
-! XQueryPointer(Dpl,root,&bidon,&bidon,&px,&py,&bidon,&bidon,&bidon);
-
- if ((px + watt.width/2) > DisplayWidth(Dpl,screen))
- px = DisplayWidth(Dpl,screen) - watt.width/2 ;
---- 789,801 ----
- int wd ;
- {
- int px, py ;
-! Window bidon ;
-! int fake;
-! unsigned int mfake;
- XWindowAttributes watt ;
-
- XGetWindowAttributes(Dpl,wd,&watt);
-! XQueryPointer(Dpl,root,&bidon,&bidon,&px,&py,&fake,&fake,&mfake);
-
- if ((px + watt.width/2) > DisplayWidth(Dpl,screen))
- px = DisplayWidth(Dpl,screen) - watt.width/2 ;
diff --git a/x11/xfedor/files/patch-ae b/x11/xfedor/files/patch-ae
deleted file mode 100644
index 214fa2003fa..00000000000
--- a/x11/xfedor/files/patch-ae
+++ /dev/null
@@ -1,56 +0,0 @@
-*** filer.c.orig Thu May 26 21:59:10 1994
---- filer.c Tue Sep 3 15:01:15 1996
-***************
-*** 85,91 ****
- {
- int i ;
- int nchars ;
-! char * filename[138] ;
- int bytesperrow ;
- unsigned char * vidmem ;
- int vidwidth ;
---- 85,91 ----
- {
- int i ;
- int nchars ;
-! char filename[138] ;
- int bytesperrow ;
- unsigned char * vidmem ;
- int vidwidth ;
-***************
-*** 187,193 ****
- fprintf(stderr,"\n");
- fprintf(stderr, msg, p1, p2, p3, p4);
- fprintf(stderr,"\n");
-! fclose(pF);
- return -1 ;
- }
-
---- 187,196 ----
- fprintf(stderr,"\n");
- fprintf(stderr, msg, p1, p2, p3, p4);
- fprintf(stderr,"\n");
-! if (pF != NULL) {
-! fclose(pF);
-! pF = NULL;
-! }
- return -1 ;
- }
-
-***************
-*** 300,306 ****
-
- if (!Extension(filename,".bdf")) strcat(filename,".bdf");
-
-! if ((pF = fopen( filename, "r")) == NULL) return fatal("Can't open file");
-
- getline(linebuf);
- if ((sscanf(linebuf, "STARTFONT %s", namebuf) != 1) ||
---- 303,309 ----
-
- if (!Extension(filename,".bdf")) strcat(filename,".bdf");
-
-! if ((pF = fopen( filename, "r")) == NULL) return fatal("Can't open file %s", filename);
-
- getline(linebuf);
- if ((sscanf(linebuf, "STARTFONT %s", namebuf) != 1) ||