Move finished...

This commit is contained in:
espie 2000-04-03 01:26:02 +00:00
parent 12e62d5741
commit a2e699e9cc
25 changed files with 0 additions and 4141 deletions

View File

@ -1,23 +0,0 @@
# $OpenBSD: Makefile,v 1.9 2000/03/23 23:09:03 turan Exp $
BROKEN= this port is so wrong.
DISTNAME= xview-clients
PKGNAME= xview-clients-3.2.1
MASTER_SITES= ${MASTER_SITE_LOCAL}
DISTFILES= xview3.2p1-X11R6.tar.gz
CATEGORIES= x11
NEED_VERSION= 1.223
#DEPENDS= x11/xview-lib
WRKDIST= ${WRKDIR}/xview3.2p1-X11R6/clients
USE_X11= Yes
post-configure:
cd $(WRKSRC)/.. && make SUBDIRS=clients depend
pre-install:
@cd ${WRKSRC} && make ${MAKE_FLAGS} -f ${MAKE_FILE} install.man
.include <bsd.port.mk>

View File

@ -1,343 +0,0 @@
*** olwm/cmdstream.c.orig Tue Jun 29 01:11:43 1993
--- olwm/cmdstream.c Sun Nov 20 13:38:56 1994
***************
*** 51,60 ****
* Local Forward Declarations
* ---------------------------------------------------------------------*/
! Command *MatchCommand();
! CmdAttr *MatchAttr();
! int EncodeAttrValue();
! int DecodeAttrValue();
/* ----------------------------------------------------------------------
* SetCmdStream
--- 51,60 ----
* Local Forward Declarations
* ---------------------------------------------------------------------*/
! static Command *MatchCommand();
! static CmdAttr *MatchAttr();
! static int EncodeAttrValue();
! static int DecodeAttrValue();
/* ----------------------------------------------------------------------
* SetCmdStream
diff -rc ../old/xview3.2p1-X11R6/clients/olwm/gettext.h olwm/gettext.h
*** ../old/xview3.2p1-X11R6/clients/olwm/gettext.h Tue Jun 29 01:11:46 1993
--- olwm/gettext.h Sun Nov 20 13:38:57 1994
***************
*** 27,33 ****
#include <stdio.h>
#include <sys/types.h>
#include <sys/param.h>
!
struct domain_binding {
char *domain_name;
char *binding;
--- 27,37 ----
#include <stdio.h>
#include <sys/types.h>
#include <sys/param.h>
!
! #ifndef LC_MESSAGES
! #define LC_MESSAGES 0
! #endif
!
struct domain_binding {
char *domain_name;
char *binding;
diff -rc ../old/xview3.2p1-X11R6/clients/olwm/i18n.h olwm/i18n.h
*** ../old/xview3.2p1-X11R6/clients/olwm/i18n.h Tue Jun 29 01:11:48 1993
--- olwm/i18n.h Sun Nov 20 13:38:57 1994
***************
*** 35,40 ****
--- 35,44 ----
#endif /* OW_I18N_L4 */
+ #ifndef LC_MESSAGES
+ #define LC_MESSAGES 0
+ #endif
+
/*
* String/Text - To better handle non-i18n, Level3 and Level4
* we introduce two 'types'; string and text.
diff -rc ../old/xview3.2p1-X11R6/clients/olwm/mem.c olwm/mem.c
*** ../old/xview3.2p1-X11R6/clients/olwm/mem.c Tue Jun 29 01:11:45 1993
--- olwm/mem.c Sun Nov 20 13:38:57 1994
***************
*** 14,21 ****
*
*/
!
#include <malloc.h>
#include <memory.h>
#include <stdio.h>
#include <sys/types.h>
--- 14,25 ----
*
*/
! #include <sys/param.h>
! #if (defined(BSD) && (BSD >= 199103))
! #include <stdlib.h>
! #else
#include <malloc.h>
+ #endif
#include <memory.h>
#include <stdio.h>
#include <sys/types.h>
diff -rc ../old/xview3.2p1-X11R6/clients/olwm/menu.c olwm/menu.c
*** ../old/xview3.2p1-X11R6/clients/olwm/menu.c Tue Jun 29 01:11:50 1993
--- olwm/menu.c Sun Nov 20 13:38:57 1994
***************
*** 52,57 ****
--- 52,59 ----
static WinGeneric *prevColorFocusWindow = NULL;
static MenuTrackMode menuTrackMode;
+ static Bool isEnabled();
+
/*
* Table of currently active menus.
* REMIND: perhaps this should be dynamically allocated.
diff -rc ../old/xview3.2p1-X11R6/clients/olwm/olwm.c olwm/olwm.c
*** ../old/xview3.2p1-X11R6/clients/olwm/olwm.c Tue Jun 29 01:11:52 1993
--- olwm/olwm.c Sun Nov 20 13:38:57 1994
***************
*** 23,28 ****
--- 23,32 ----
#include <sys/stat.h>
#include <sys/wait.h>
+ #ifndef MAXPID
+ #define MAXPID 30000
+ #endif
+
#include <X11/Xos.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
***************
*** 622,634 ****
void
ReapChildren()
{
! #ifdef SYSV
pid_t pid;
int status;
#else
int oldmask;
int pid;
union wait status;
#endif
if (!deadChildren)
--- 626,644 ----
void
ReapChildren()
{
! #if defined(SYSV)
pid_t pid;
int status;
#else
+ #if (defined(BSD) && (BSD >= 199103))
+ pid_t pid;
+ int status;
+ int oldmask;
+ #else
int oldmask;
int pid;
union wait status;
+ #endif
#endif
if (!deadChildren)
diff -rc ../old/xview3.2p1-X11R6/clients/olwm/screen.c olwm/screen.c
*** ../old/xview3.2p1-X11R6/clients/olwm/screen.c Tue Jun 29 01:11:56 1993
--- olwm/screen.c Sun Nov 20 13:38:58 1994
***************
*** 111,116 ****
--- 111,122 ----
static XrmQuark stippledRubberBandsCQ;
static XrmQuark stippledRubberBandsIQ;
+ static updateScreenWorkspaceColor();
+ static updateScreenWindowColor();
+ static updateScreenForegroundColor();
+ static updateScreenBackgroundColor();
+ static updateScreenBorderColor();
+ static updateScreenGlyphFont();
/*-------------------------------------------------------------------------
* Local Functions
diff -rc ../old/xview3.2p1-X11R6/clients/olwm/slave.c olwm/slave.c
*** ../old/xview3.2p1-X11R6/clients/olwm/slave.c Tue Jun 29 01:11:57 1993
--- olwm/slave.c Sun Nov 20 13:38:58 1994
***************
*** 22,27 ****
--- 22,29 ----
#include <signal.h>
#include <stdio.h>
+ #include <sys/param.h>
+
#include "cmdstream.h"
#include "error.h"
diff -rc ../old/xview3.2p1-X11R6/clients/olwm/winicon.c olwm/winicon.c
*** ../old/xview3.2p1-X11R6/clients/olwm/winicon.c Tue Jun 29 01:12:04 1993
--- olwm/winicon.c Sun Nov 20 13:38:58 1994
***************
*** 32,37 ****
--- 32,41 ----
extern Bool PropGetWMName();
extern Bool PropGetWMIconName();
+ static int heightTopIcon();
+ static int heightBottomIcon();
+ static int widthBothIcon();
+
/***************************************************************************
* private data
***************************************************************************/
diff -rc ../old/xview3.2p1-X11R6/clients/olwmslave/Imakefile olwmslave/Imakefile
*** ../old/xview3.2p1-X11R6/clients/olwmslave/Imakefile Tue Jun 29 01:12:14 1993
--- olwmslave/Imakefile Sun Nov 20 13:38:58 1994
***************
*** 38,55 ****
mem.c \
olwmslave.c \
propsrecv.c \
! propswin.c
OBJS = \
cmdstream.o \
help_file.o \
! helprecv.o \
helpwin.o \
mem.o \
olwmslave.o \
propsrecv.o \
! propswin.o
ALLFILES = \
--- 38,55 ----
mem.c \
olwmslave.c \
propsrecv.c \
! propswin.c ${GETTEXT.C}
OBJS = \
cmdstream.o \
help_file.o \
! helprecv.o \
helpwin.o \
mem.o \
olwmslave.o \
propsrecv.o \
! propswin.o ${GETTEXT.O}
ALLFILES = \
diff -rc ../old/xview3.2p1-X11R6/clients/olwmslave/cmdstream.c olwmslave/cmdstream.c
*** ../old/xview3.2p1-X11R6/clients/olwmslave/cmdstream.c Tue Jun 29 01:12:10 1993
--- olwmslave/cmdstream.c Sun Nov 20 13:38:58 1994
***************
*** 50,59 ****
* Local Forward Declarations
* ---------------------------------------------------------------------*/
! Command *MatchCommand();
! CmdAttr *MatchAttr();
! int EncodeAttrValue();
! int DecodeAttrValue();
/* ----------------------------------------------------------------------
* SetCmdStream
--- 50,59 ----
* Local Forward Declarations
* ---------------------------------------------------------------------*/
! static Command *MatchCommand();
! static CmdAttr *MatchAttr();
! static int EncodeAttrValue();
! static int DecodeAttrValue();
/* ----------------------------------------------------------------------
* SetCmdStream
diff -rc ../old/xview3.2p1-X11R6/clients/olwmslave/helpwin.c olwmslave/helpwin.c
*** ../old/xview3.2p1-X11R6/clients/olwmslave/helpwin.c Tue Jun 29 01:12:11 1993
--- olwmslave/helpwin.c Sun Nov 20 13:38:58 1994
***************
*** 136,141 ****
--- 136,142 ----
Bool ImageHelpWindow();
void MoreHelp();
void ErrorNotice();
+ static int ConstrainMousePos();
/* ----------------------------------------------------------------------
* ShowHelpWindow
diff -rc ../old/xview3.2p1-X11R6/clients/olwmslave/mem.c olwmslave/mem.c
*** ../old/xview3.2p1-X11R6/clients/olwmslave/mem.c Tue Jun 29 01:12:12 1993
--- olwmslave/mem.c Sun Nov 20 13:38:58 1994
***************
*** 16,22 ****
*
*/
! #include <malloc.h>
#include <memory.h>
#include <stdio.h>
#include <sys/types.h>
--- 16,23 ----
*
*/
! #include <sys/param.h>
! #include <stdlib.h>
#include <memory.h>
#include <stdio.h>
#include <sys/types.h>
*** olwm/defaults.c.orig Tue Jun 29 07:11:43 1993
--- olwm/defaults.c Mon Feb 27 00:59:03 1995
***************
*** 25,33 ****
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include <X11/Xresource.h>
! #ifdef OW_I18N_L4
#include <sys/param.h>
! #endif
#include "i18n.h"
#include "ollocale.h"
--- 25,33 ----
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include <X11/Xresource.h>
! /* #ifdef OW_I18N_L4 */
#include <sys/param.h>
! /* #endif */
#include "i18n.h"
#include "ollocale.h"
***************
*** 80,86 ****
--- 80,90 ----
if (homedir != NULL) {
(void) strcpy(filename, homedir);
(void) strcat(filename, "/.Xdefaults-");
+ #if defined(__OpenBSD__)
+ if (0 == gethostname(hostname, sizeof(hostname))) {
+ #else
if (0 == gethostname(hostname, sizeof(hostname), &namelen)) {
+ #endif
(void) strcat(filename, hostname);
fileDB = XrmGetFileDatabase(filename);
}

View File

@ -1,13 +0,0 @@
*** /usr/ports/x11/xview-config/work/xview3.2p1-X11R6/clients/olwm/screen.c Tue Oct 8 23:31:04 1996
--- clients/olwm/screen.c Mon Jan 1 23:54:12 1996
***************
*** 220,225 ****
--- 220,226 ----
case PseudoColor:
case GrayScale:
case DirectColor:
+ case TrueColor:
return True;
/*NOTREACHED*/
break;

View File

@ -1 +0,0 @@
OpenLook applications and man pages

View File

@ -1,20 +0,0 @@
XView (X Window-System-based Visual/Integrated Environment for
Workstations) is a user-interface toolkit to support interactive,
graphics-based applications running under the X Window System. The
appearance and functionality of XView applications follow the OPEN
LOOK Graphical User Interface (GUI) specification.
This package contains the olwm window manager, which is a ICCCM-compliant
window that adheres to the OPEN LOOK (TM) user interface.
The complete list of XView clients contained in this package are:
clock An XView clock application.
cmdtool An XView terminal emulator.
olwm The OPENLOOK window manager.
olwmslave 'helper' program for olwm.
Notes
-----
This version of the XView applications corresponds to that provided with
OpenWindows Version 3.2 from SunSoft Inc.

View File

@ -1,15 +0,0 @@
bin/clock
bin/cmdtool
bin/olwm
bin/olwmslave
bin/shelltool
lib/help/clock.info
lib/help/olwm.info
lib/help/workspace.info
lib/openwin-menu
man/cat1/clock.0
man/cat1/cmdtool.0
man/cat1/olwm.0
man/cat1/olwmslave.0
man/cat1/shelltool.0
@dirrm lib/help

View File

@ -1,2 +0,0 @@
#!/bin/sh
(cd $WRKSRC/..; make SUBDIRS=clients Makefiles)

View File

@ -1,19 +0,0 @@
# $OpenBSD: Makefile,v 1.5 2000/03/24 22:12:07 espie Exp $
BROKEN= this port is so wrong.
DISTNAME= xview-config-3.2.1
CATEGORIES= x11
NEED_VERSION= 1.191
MASTER_SITES= ${MASTER_SITE_LOCAL}
DISTFILES= xview3.2p1-X11R6.tar.gz
WRKDIST= ${WRKDIR}/xview3.2p1-X11R6/config
USE_IMAKE= yes
post-extract:
@chmod -R go+rX ${WRKDIR}
do-build:
.include <bsd.port.mk>

View File

@ -1,3 +0,0 @@
MD5 (xview3.2p1-X11R6.tar.gz) = 9d3049c6e83114148a9f51d361272816
RMD160 (xview3.2p1-X11R6.tar.gz) = 2f21b14cb088aec887683bbc6d4ed9a3bc3fe2bb
SHA1 (xview3.2p1-X11R6.tar.gz) = 1cd04231b893c3e6c70b56791d527b498e21a27a

View File

@ -1,299 +0,0 @@
diff -rc ../old/xview3.2p1-X11R6/config/Imakefile Imakefile
*** ../old/xview3.2p1-X11R6/config/Imakefile Tue Jun 29 01:13:19 1993
--- Imakefile Sun Nov 20 13:38:58 1994
***************
*** 8,14 ****
/**/# config directory
/**/# @(#)Imakefile 1.9 28 Jun 1993 SMI
! XVFILES = XView.cf XView.lib XView.obj XView.rules XView.tmpl library.tmpl
CFFILES = $(XVFILES) $(HEADERS)
InstallMultipleDestFlags(install,$(CFFILES),$(CONFIGDIR),$(INSTDATFLAGS))
--- 8,14 ----
/**/# config directory
/**/# @(#)Imakefile 1.9 28 Jun 1993 SMI
! XVFILES = XView.cf XView.lib XView.obj XView.rules XView.tmpl XView.prog
CFFILES = $(XVFILES) $(HEADERS)
InstallMultipleDestFlags(install,$(CFFILES),$(CONFIGDIR),$(INSTDATFLAGS))
diff -rc ../old/xview3.2p1-X11R6/config/XView.cf XView.cf
*** ../old/xview3.2p1-X11R6/config/XView.cf Sun Jun 26 22:09:19 1994
--- XView.cf Sun Nov 20 13:38:58 1994
***************
*** 101,107 ****
* the appropriate value.
*/
#ifndef XVDestDir
! #define XVDestDir /usr/X11/xview
#endif
/*
* Command to add object modules to the library.
--- 101,107 ----
* the appropriate value.
*/
#ifndef XVDestDir
! #define XVDestDir /usr/X11R6
#endif
/*
* Command to add object modules to the library.
***************
*** 139,145 ****
* installed in $(DESTDIR)/lib/X11/config (aka $(CONFIGDIR)).
*/
#ifndef OnlyNeedsNewXViewConfigInstalled
! #define OnlyNeedsNewXViewConfigInstalled NO
#endif
/*
* If you would like the XView man pages to be installed in
--- 139,145 ----
* installed in $(DESTDIR)/lib/X11/config (aka $(CONFIGDIR)).
*/
#ifndef OnlyNeedsNewXViewConfigInstalled
! #define OnlyNeedsNewXViewConfigInstalled YES
#endif
/*
* If you would like the XView man pages to be installed in
***************
*** 305,311 ****
* malloc() and read() will be used instead.
*/
#ifndef OsHasMmap
! #define OsHasMmap YES
#endif
/*
* The implementation of internationalization support in XView depends
--- 305,311 ----
* malloc() and read() will be used instead.
*/
#ifndef OsHasMmap
! #define OsHasMmap NO
#endif
/*
* The implementation of internationalization support in XView depends
***************
*** 315,321 ****
* features disabled.
*/
#ifndef OsHasLocale
! #define OsHasLocale YES
#endif
/*
* There are number of memory allocation macros in lib/libxview/base.h
--- 315,321 ----
* features disabled.
*/
#ifndef OsHasLocale
! #define OsHasLocale NO
#endif
/*
* There are number of memory allocation macros in lib/libxview/base.h
***************
*** 360,366 ****
* be defined as -PIC
*/
#ifndef PositionIndependentCodeFlag
! #define PositionIndependentCodeFlag -PIC
#endif
/*
--- 360,366 ----
* be defined as -PIC
*/
#ifndef PositionIndependentCodeFlag
! #define PositionIndependentCodeFlag -fPIC
#endif
/*
diff -rc ../old/xview3.2p1-X11R6/config/XView.obj XView.obj
*** ../old/xview3.2p1-X11R6/config/XView.obj Tue Jun 29 01:13:20 1993
--- XView.obj Sun Nov 20 13:38:59 1994
***************
*** 15,21 ****
STD_DEFINES = StandardDefines LibXViewDefines
#endif
HEADERS= ${HDRSPUBLIC} ${HDRSPRIVATE}
! INCLUDES= -I$(BUILDINCDIR)$(INCDIR)
OBJS = $(TEXT_OBJS) $(DATA_OBJS) $(SPECIAL_OBJS)
#if !NotLibXView
ALLFILES = $(SRCS) $(HEADERS)
--- 15,21 ----
STD_DEFINES = StandardDefines LibXViewDefines
#endif
HEADERS= ${HDRSPUBLIC} ${HDRSPRIVATE}
! INCLUDES= -I$(BUILDINCDIR)/$(INCDIR)
OBJS = $(TEXT_OBJS) $(DATA_OBJS) $(SPECIAL_OBJS)
#if !NotLibXView
ALLFILES = $(SRCS) $(HEADERS)
***************
*** 85,98 ****
#if SubdirHasPublicHeaders
# if NotLibXView
! BuildIncludes($(HDRSPUBLIC),$(PUB_INCDIR),/**/)
install::
$(MKDIRHIER) $(PUB_HEADER_DEST)
InstallMultiple($(HDRSPUBLIC),$(PUB_HEADER_DEST))
# else
! BuildIncludes($(HDRSPUBLIC),$(XVPUB_INCDIR),/**/)
install::
$(MKDIRHIER) $(XVPUB_HEADER_DEST)
--- 85,98 ----
#if SubdirHasPublicHeaders
# if NotLibXView
! BuildIncludes($(HDRSPUBLIC),$(PUB_INCDIR),.)
install::
$(MKDIRHIER) $(PUB_HEADER_DEST)
InstallMultiple($(HDRSPUBLIC),$(PUB_HEADER_DEST))
# else
! BuildIncludes($(HDRSPUBLIC),$(XVPUB_INCDIR),.)
install::
$(MKDIRHIER) $(XVPUB_HEADER_DEST)
***************
*** 103,111 ****
#if SubdirHasPrivateHeaders
# if NotLibXView
! BuildIncludes($(HDRSPRIVATE),$(PRI_INCDIR),/**/)
# else
! BuildIncludes($(HDRSPRIVATE),$(XVPRI_INCDIR),/**/)
# endif
# if InstallPrivateHeaders
# if NotLibXView
--- 103,111 ----
#if SubdirHasPrivateHeaders
# if NotLibXView
! BuildIncludes($(HDRSPRIVATE),$(PRI_INCDIR),.)
# else
! BuildIncludes($(HDRSPRIVATE),$(XVPRI_INCDIR),.)
# endif
# if InstallPrivateHeaders
# if NotLibXView
diff -rc ../old/xview3.2p1-X11R6/config/XView.rules XView.rules
*** ../old/xview3.2p1-X11R6/config/XView.rules Tue Jun 29 01:13:20 1993
--- XView.rules Sun Nov 20 13:38:59 1994
***************
*** 366,374 ****
#ifndef InstallSharedLibraryNoBuild
#define InstallSharedLibraryNoBuild(libname,rev,dest) @@\
install:: @@\
! $(RM) /dest/lib/**/libname.so @@\
$(INSTALL) -c $(INSTSHAREDLIBFLAGS) lib/**/libname.so.rev dest @@\
! (cd dest; $(LN) lib/**/libname.so.rev lib/**/libname.so)
#endif /* InstallSharedLibraryNoBuild */
--- 366,374 ----
#ifndef InstallSharedLibraryNoBuild
#define InstallSharedLibraryNoBuild(libname,rev,dest) @@\
install:: @@\
! $(RM) /dest/lib/**/libname.so @@\
$(INSTALL) -c $(INSTSHAREDLIBFLAGS) lib/**/libname.so.rev dest @@\
! (cd dest; $(LN) lib/**/libname.so.rev lib/**/libname.so)
#endif /* InstallSharedLibraryNoBuild */
diff -rc ../old/xview3.2p1-X11R6/config/XView.tmpl XView.tmpl
*** ../old/xview3.2p1-X11R6/config/XView.tmpl Sun Jun 26 22:10:00 1994
--- XView.tmpl Sun Nov 20 13:38:59 1994
***************
*** 96,102 ****
* Work around small conflict with Project.tmpl file
*/
#if UseInstalled
! MKDIRHIER = BourneShell BinDir/mkdirhier
#endif
#if OsHasLocale
--- 96,102 ----
* Work around small conflict with Project.tmpl file
*/
#if UseInstalled
! MKDIRHIER = mkdirhier
#endif
#if OsHasLocale
***************
*** 224,230 ****
* afterwards.
*/
#ifndef XVIncludeDirName
! #define XVIncludeDirName /include
#endif
INCDIR = XVIncludeDirName
/*
--- 224,230 ----
* afterwards.
*/
#ifndef XVIncludeDirName
! #define XVIncludeDirName include
#endif
INCDIR = XVIncludeDirName
/*
***************
*** 356,365 ****
#if SystemV4
SYSV_CLIENT_LIB = -lintl -ldl
! XVCLIENTSYSDEFINES = -DSVR4 -DSYSV
#else
SYSV_CLIENT_LIB =
! XVCLIENTSYSDEFINES = -DSUNOS41
#endif
/*
--- 356,365 ----
#if SystemV4
SYSV_CLIENT_LIB = -lintl -ldl
! XVCLIENTSYSDEFINES = -DSVR4 -DSYSV
#else
SYSV_CLIENT_LIB =
! XVCLIENTSYSDEFINES = -DSUNOS41
#endif
/*
***************
*** 371,386 ****
*/
#if XvI18nLevel == 4
! XVCLIENTI18NDEFINES = -DOW_I18N_L4 -DOW_I18N_L3 -DOW_I18N -DFULL_R5
! XVCLIENTMISCLIB = -lw
! XVCLIENTINCLUDES = -I$(OPENWINHOME)/include
#else
! XVCLIENTI18NDEFINES = -DOW_I18N_L3
! XVCLIENTMISCLIB =
! XVCLIENTINCLUDES =
#endif
! XVCLIENTDEFINES = $(XVCLIENTSYSDEFINES) $(XVCLIENTI18NDEFINES)
/*
* Define libraries for XView clients
--- 371,386 ----
*/
#if XvI18nLevel == 4
! XVCLIENTI18NDEFINES = -DOW_I18N_L4 -DOW_I18N_L3 -DOW_I18N -DFULL_R5
! XVCLIENTMISCLIB = -lw
! XVCLIENTINCLUDES = -I$(OPENWINHOME)/include
#else
! XVCLIENTI18NDEFINES = -DOW_I18N_L3
! XVCLIENTMISCLIB =
! XVCLIENTINCLUDES =
#endif
! XVCLIENTDEFINES = $(XVCLIENTSYSDEFINES) $(XVCLIENTI18NDEFINES)
/*
* Define libraries for XView clients

View File

@ -1 +0,0 @@
OpenLook Toolkit config files

View File

@ -1,20 +0,0 @@
What Is XView
-------------
XView (X Window-System-based Visual/Integrated Environment for Workstations)
is a user-interface toolkit to support interactive, graphics-based
applications running under the X Window System. XView provides a set of
pre-built, user-interface objects such as canvases, scrollbars, menus, and
control panels. The appearance and functionality of these objects follow
the OPEN LOOK Graphical User Interface (GUI) specification. XView features
an object-oriented style Application Programmer's Interface (API) that is
straightforward and easy to learn.
This package contains all the configurations files needed for use of
the XView libraries and applications.
Source Notes
------------
This version of the XView source corresponds to that provided with
OpenWindows Version 3.2 from SunSoft Inc. Libraries generated with this
source should be interchangeable with those from the OpenWindows Version 3.2
release.

View File

@ -1,6 +0,0 @@
lib/X11/config/XView.cf
lib/X11/config/XView.lib
lib/X11/config/XView.obj
lib/X11/config/XView.rules
lib/X11/config/XView.tmpl
lib/X11/config/XView.prog

View File

@ -1,22 +0,0 @@
# $OpenBSD: Makefile,v 1.9 2000/03/23 23:09:03 turan Exp $
BROKEN= this port is so wrong.
DISTNAME= xview-lib
PKGNAME= xview-lib-3.2.1
MASTER_SITES= ${MASTER_SITE_LOCAL}
DISTFILES= xview3.2p1-X11R6.tar.gz
CATEGORIES= x11
NEED_VERSION= 1.223
MAINTAINER= angelos@openbsd.org
#DEPENDS= x11/xview-config
USE_IMAKE= Yes
WRKDIST= ${WRKDIR}/xview3.2p1-X11R6/config
post-install:
${LDCONFIG} -m ${PREFIX}/lib
.include <bsd.port.mk>

View File

@ -1,82 +0,0 @@
diff -rc ../old/xview3.2p1-X11R6/bitmaps/Imakefile ./bitmaps/Imakefile
*** ../old/xview3.2p1-X11R6/bitmaps/Imakefile Tue Jun 29 01:19:54 1993
--- ./bitmaps/Imakefile Sun Nov 20 13:38:56 1994
***************
*** 36,42 ****
! all: $(SRCS)
! BuildIncludes($(INCLUDES_SRCS),$(BITMAP_INCDIR),/**/)
install:: $(SRCS)
$(MKDIRHIER) $(HEADER_DEST)/$(BITMAPINC)
--- 36,42 ----
! all:: $(SRCS)
! BuildIncludes($(INCLUDES_SRCS),$(BITMAP_INCDIR),.)
install:: $(SRCS)
$(MKDIRHIER) $(HEADER_DEST)/$(BITMAPINC)
diff -rc ../old/xview3.2p1-X11R6/doc/Imakefile ./doc/Imakefile
*** ../old/xview3.2p1-X11R6/doc/Imakefile Tue Jun 29 01:13:15 1993
--- ./doc/Imakefile Sun Nov 20 13:38:59 1994
***************
*** 17,23 ****
ALLFILES = $(DOCFILES)
install::
! $(MKDIRHIER) $(DOC_DEST)
InstallNonExecList($(DOCFILES),$(DOC_DEST))
PopulateSCCSTree(h,$(ALLFILES) README)
--- 17,23 ----
ALLFILES = $(DOCFILES)
install::
! $(MKDIRHIER) $(DOC_DEST)
InstallNonExecList($(DOCFILES),$(DOC_DEST))
PopulateSCCSTree(h,$(ALLFILES) README)
diff -rc ../old/xview3.2p1-X11R6/images/Imakefile ./images/Imakefile
*** ../old/xview3.2p1-X11R6/images/Imakefile Tue Jun 29 01:18:41 1993
--- ./images/Imakefile Sun Nov 20 13:38:59 1994
***************
*** 101,107 ****
! all: $(SRCS)
! BuildIncludes($(INCLUDES_SRCS),$(IMAGE_INCDIR),/**/)
install:: $(SRCS)
$(MKDIRHIER) $(HEADER_DEST)/$(IMAGEINC)
--- 101,107 ----
! all:: $(SRCS)
! BuildIncludes($(INCLUDES_SRCS),$(IMAGE_INCDIR),.)
install:: $(SRCS)
$(MKDIRHIER) $(HEADER_DEST)/$(IMAGEINC)
diff -rc ../old/xview3.2p1-X11R6/lib/pixrect/Imakefile ./lib/pixrect/Imakefile
*** ../old/xview3.2p1-X11R6/lib/pixrect/Imakefile Tue Jun 29 01:18:39 1993
--- ./lib/pixrect/Imakefile Sun Nov 20 13:39:15 1994
***************
*** 41,48 ****
all::
#if InstallPixrectHeaders
! BuildIncludes($(HEADERS),$(PIXRECT_INCDIR),/**/)
! BuildIncludes($(HEADERS2),$(INCDIR),/**/)
install::
$(MKDIRHIER) $(PIXRECT_HEADER_DEST)
--- 41,48 ----
all::
#if InstallPixrectHeaders
! BuildIncludes($(HEADERS),$(PIXRECT_INCDIR),.)
! BuildIncludes($(HEADERS2),$(INCDIR),.)
install::
$(MKDIRHIER) $(PIXRECT_HEADER_DEST)

View File

@ -1,64 +0,0 @@
*** lib/libxview/notify/ndet_loop.c~ Tue Nov 22 04:40:21 1994
--- lib/libxview/notify/ndet_loop.c Tue Nov 22 05:35:17 1994
***************
*** 21,27 ****
--- 21,31 ----
#include <xview_private/nint.h>
#include <xview_private/ndis.h> /* For ndis_dispatch */
#ifndef SVR4
+ #ifndef __OpenBSD__
#include <syscall.h>
+ #else
+ #include <sys/syscall.h>
+ #endif
#else SVR4
#include <sys/syscall.h>
#include <sys/poll.h>
*** lib/libxview/notify/sys_fcntl.c~ Mon Jun 28 22:18:17 1993
--- lib/libxview/notify/sys_fcntl.c Tue Nov 22 07:48:49 1994
***************
*** 15,21 ****
--- 15,25 ----
*/
#ifndef SVR4
+ #ifndef __OpenBSD__
#include <syscall.h>
+ #else
+ #include <sys/syscall.h>
+ #endif
#else SVR4
#include <sys/syscall.h>
#endif SVR4
*** lib/libxview/notify/sys_read.c~ Mon Jun 28 22:18:01 1993
--- lib/libxview/notify/sys_read.c Tue Nov 22 08:16:11 1994
***************
*** 15,21 ****
--- 15,25 ----
*/
#ifndef SVR4
+ #ifndef __OpenBSD__
#include <syscall.h>
+ #else
+ #include <sys/syscall.h>
+ #endif
#else SVR4
#include <sys/syscall.h>
#endif SVR4
*** lib/libxview/notify/sys_select.c~ Mon Jun 28 22:18:11 1993
--- lib/libxview/notify/sys_select.c Tue Nov 22 08:20:27 1994
***************
*** 15,21 ****
--- 15,25 ----
*/
#ifndef SVR4
+ #ifndef __OpenBSD__
#include <syscall.h>
+ #else
+ #include <sys/syscall.h>
+ #endif
#else SVR4
#include <values.h>
#include <sys/time.h>

View File

@ -1,34 +0,0 @@
diff -rc ../old/xview3.2p1-X11R6/lib/libolgx/ol_init.c ./lib/libolgx/ol_init.c
*** ../old/xview3.2p1-X11R6/lib/libolgx/ol_init.c Tue Jun 29 01:18:28 1993
--- ./lib/libolgx/ol_init.c Sun Nov 20 13:38:59 1994
***************
*** 9,15 ****
--- 9,18 ----
#include <stdio.h>
#include <stdlib.h>
+ #include <sys/param.h>
+ #if !(defined(BSD) && (BSD >= 199103))
#include <malloc.h>
+ #endif
#include <X11/Xlib.h>
#include "olgx_impl.h"
#include "busy.h"
diff -rc ../old/xview3.2p1-X11R6/lib/libolgx/ol_sb.c ./lib/libolgx/ol_sb.c
*** ../old/xview3.2p1-X11R6/lib/libolgx/ol_sb.c Tue Jun 29 01:18:29 1993
--- ./lib/libolgx/ol_sb.c Sun Nov 20 13:38:59 1994
***************
*** 11,17 ****
--- 11,22 ----
*/
#include <stdio.h>
+ #include <sys/param.h>
+ #if (defined(BSD) && (BSD >= 199103))
+ #include <stdlib.h>
+ #else
#include <malloc.h>
+ #endif
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include "olgx_impl.h"

File diff suppressed because it is too large Load Diff

View File

@ -1,168 +0,0 @@
*** lib/libxview/win/win_input.c~ Tue Oct 8 22:51:45 1996
--- lib/libxview/win/win_input.c Wed Apr 17 02:26:55 1996
***************
*** 854,860 ****
#ifdef X11R6
/* lumpi@dobag.in-berlin.de */
int ksym_pcc;
! XGetKeyboardMapping(display,NoSymbol,0,&ksym_pcc);
for (index = 0; index < ksym_pcc; index++) {
#else
for (index = 0; index < display->keysyms_per_keycode; index++) {
--- 854,862 ----
#ifdef X11R6
/* lumpi@dobag.in-berlin.de */
int ksym_pcc;
! int tc_min_keycode, tc_max_keycode;
! XDisplayKeycodes(display, &tc_min_keycode, &tc_max_keycode);
! XGetKeyboardMapping(display,tc_min_keycode,tc_max_keycode-tc_min_keycode-1,&ksym_pcc);
for (index = 0; index < ksym_pcc; index++) {
#else
for (index = 0; index < display->keysyms_per_keycode; index++) {
***************
*** 862,868 ****
if ((ksym = XLookupKeysym(ek, index)) != NoSymbol)
if (IsKeypadKey(ksym)) {
/* See if key has been rebound. */
! if (!translate_key(display, ksym, ek->state,
buffer, BUFFERSIZE)) {
(void)win_translate_KP_keysym(ksym, buffer);
}
--- 864,870 ----
if ((ksym = XLookupKeysym(ek, index)) != NoSymbol)
if (IsKeypadKey(ksym)) {
/* See if key has been rebound. */
! if (translate_key(display, ksym, ek->state,
buffer, BUFFERSIZE)) {
(void)win_translate_KP_keysym(ksym, buffer);
}
***************
*** 2721,2728 ****
* Xlib's.
*/
! #ifdef X11R6
! /* lumpi@dobag.in-berlin.de */
static int
translate_key(dpy, symbol, modifiers, buffer, nbytes)
Display *dpy;
--- 2723,2732 ----
* Xlib's.
*/
! #ifdef X11R6
! /* lumpi@dobag.in-berlin.de
! tom@sees.bangor.ac.uk this replacement for X11R6 doesn't work. At least
! it should now return sensible values though. */
static int
translate_key(dpy, symbol, modifiers, buffer, nbytes)
Display *dpy;
***************
*** 2732,2742 ****
int nbytes;
{
/* This is _very_ rude ! */
! strcpy(buffer,XKeysymToString(symbol));
}
- #else
static int
translate_key(dpy, symbol, modifiers, buffer, nbytes)
Display *dpy;
--- 2736,2753 ----
int nbytes;
{
/* This is _very_ rude ! */
! char *string;
! string = XKeysymToString(symbol);
! if (string) {
! strncpy(buffer,XKeysymToString(symbol),nbytes);
! return(strlen(buffer));
! }
! else
! return 0;
}
+ #else
static int
translate_key(dpy, symbol, modifiers, buffer, nbytes)
Display *dpy;
***************
*** 2762,2765 ****
}
return 0;
}
! #endif
--- 2773,2776 ----
}
return 0;
}
! #endif
3.
*** lib/libxview/ttysw/tty_mapkey.c~ Tue Jun 29 06:17:20 1993
--- lib/libxview/ttysw/tty_mapkey.c Tue Jan 16 23:58:56 1996
***************
*** 500,506 ****
* have more time.
*/
! #ifdef i386
static void
ttysw_arrow_keys_to_string(xv_id, str)
unsigned xv_id;
--- 500,506 ----
* have more time.
*/
! #if defined(i386) && !defined (__OpenBSD__)
static void
ttysw_arrow_keys_to_string(xv_id, str)
unsigned xv_id;
*** lib/libxview/ttysw/cim_size.c.orig Tue Jun 29 06:17:14 1993
--- lib/libxview/ttysw/cim_size.c Sat Oct 25 00:53:49 1997
***************
*** 156,174 ****
{
if (lines_ptr) {
! cfree((CHAR *) (lines_ptr));
lines_ptr = NULL;
}
if (image) {
! cfree((CHAR **) image);
image = NULL;
}
if (mode_ptr) {
! cfree((char *) (mode_ptr));
mode_ptr = NULL;
}
if (screenmode) {
! cfree((char **) screenmode);
screenmode = NULL;
}
}
--- 156,174 ----
{
if (lines_ptr) {
! free((CHAR *) (lines_ptr));
lines_ptr = NULL;
}
if (image) {
! free((CHAR **) image);
image = NULL;
}
if (mode_ptr) {
! free((char *) (mode_ptr));
mode_ptr = NULL;
}
if (screenmode) {
! free((char **) screenmode);
screenmode = NULL;
}
}

View File

@ -1,14 +0,0 @@
--- ../alt/lib/libxview/notify/ndet_fd.c Tue Jun 29 07:18:08 1993
+++ lib/libxview/notify/ndet_fd.c Sat Jul 26 00:42:21 1997
@@ -27,8 +27,9 @@
#define GETDTABLESIZE() \
(dtablesize_cache?dtablesize_cache:(dtablesize_cache=(int)sysconf(_SC_OPEN_MAX)))
#else
-#define GETDTABLESIZE() \
- (dtablesize_cache?dtablesize_cache:(dtablesize_cache=getdtablesize()))
+#define GETDTABLESIZE() \
+ (dtablesize_cache ? dtablesize_cache : \
+ (dtablesize_cache = MIN(getdtablesize(), FD_SETSIZE)))
#endif SVR4
static int ndet_fd_table_size; /* Number of descriptor slots

View File

@ -1,14 +0,0 @@
--- ../alt/lib/libxview/notify/ndisdispch.c Tue Jun 29 07:18:06 1993
+++ lib/libxview/notify/ndisdispch.c Sat Jul 26 00:55:47 1997
@@ -30,8 +30,9 @@
#define GETDTABLESIZE() \
(dtablesize_cache?dtablesize_cache:(dtablesize_cache=(int)sysconf(_SC_OPEN_MAX)))
#else
-#define GETDTABLESIZE() \
- (dtablesize_cache?dtablesize_cache:(dtablesize_cache=getdtablesize()))
+#define GETDTABLESIZE() \
+ (dtablesize_cache ? dtablesize_cache : \
+ (dtablesize_cache = MIN(getdtablesize(), FD_SETSIZE)))
#endif SVR4
pkg_private_data u_int ndis_flags = 0;

View File

@ -1 +0,0 @@
OpenLook Toolkit libs, includes, and man pages

View File

@ -1,20 +0,0 @@
What Is XView
-------------
XView (X Window-System-based Visual/Integrated Environment for Workstations)
is a user-interface toolkit to support interactive, graphics-based
applications running under the X Window System. XView provides a set of
pre-built, user-interface objects such as canvases, scrollbars, menus, and
control panels. The appearance and functionality of these objects follow
the OPEN LOOK Graphical User Interface (GUI) specification. XView features
an object-oriented style Application Programmer's Interface (API) that is
straightforward and easy to learn.
This package contains the libraries, headers and support files
nessicary to build XView applications.
Source Notes
------------
This version of the XView source corresponds to that provided with
OpenWindows Version 3.2 from SunSoft Inc. Libraries generated with this
source should be interchangeable with those from the OpenWindows Version 3.2
release.

View File

@ -1,293 +0,0 @@
bin/xgettext
bin/msgfmt
lib/libolgx.a
lib/libolgx.so
lib/libolgx.so.3.2
lib/libxview.a
lib/libxview.so.3.2
lib/libxview.so
@exec /sbin/ldconfig -m %B
lib/.text_extras_menu
lib/.textswrc
lib/.ttyswrc
lib/text_extras_menu
lib/textswrc
lib/ttyswrc
lib/help/textsw.info
lib/help/ttysw.info
lib/help/xview.info
man/cat1/msgfmt.0
man/cat1/xgettext.0
man/cat1/xview.0
include/bitmaps/1x1
include/bitmaps/2x2
include/bitmaps/black
include/bitmaps/boxes
include/bitmaps/calculator
include/bitmaps/cntr_ptr
include/bitmaps/cntr_ptrmsk
include/bitmaps/cross_weave
include/bitmaps/dimple1
include/bitmaps/dimple3
include/bitmaps/dot
include/bitmaps/dropbar7
include/bitmaps/dropbar8
include/bitmaps/escherknot
include/bitmaps/flagdown
include/bitmaps/flagup
include/bitmaps/flipped_gray
include/bitmaps/gray
include/bitmaps/gray1
include/bitmaps/gray3
include/bitmaps/hlines2
include/bitmaps/hlines3
include/bitmaps/icon
include/bitmaps/keyboard16
include/bitmaps/left_ptr
include/bitmaps/left_ptrmsk
include/bitmaps/letters
include/bitmaps/light_gray
include/bitmaps/mailempty
include/bitmaps/mailemptymsk
include/bitmaps/mailfull
include/bitmaps/mailfullmsk
include/bitmaps/mensetmanus
include/bitmaps/menu10
include/bitmaps/menu12
include/bitmaps/menu16
include/bitmaps/menu8
include/bitmaps/noletters
include/bitmaps/opendot
include/bitmaps/opendotMask
include/bitmaps/plaid
include/bitmaps/right_ptr
include/bitmaps/right_ptrmsk
include/bitmaps/root_weave
include/bitmaps/scales
include/bitmaps/sipb
include/bitmaps/star
include/bitmaps/starMask
include/bitmaps/stipple
include/bitmaps/target
include/bitmaps/terminal
include/bitmaps/tie_fighter
include/bitmaps/txtdup
include/bitmaps/txtdupmask
include/bitmaps/txtdupmore
include/bitmaps/txtdupok
include/bitmaps/txtdupokmask
include/bitmaps/txtdupokmore
include/bitmaps/txtmv
include/bitmaps/txtmvmask
include/bitmaps/txtmvmore
include/bitmaps/txtmvok
include/bitmaps/txtmvokmask
include/bitmaps/txtmvokmore
include/bitmaps/vlines2
include/bitmaps/vlines3
include/bitmaps/weird_size
include/bitmaps/wide_weave
include/bitmaps/wierd_size
include/bitmaps/wingdogs
include/bitmaps/woman
include/bitmaps/xfd_icon
include/bitmaps/xlogo11
include/bitmaps/xlogo16
include/bitmaps/xlogo32
include/bitmaps/xlogo64
include/images/bg1.xbm
include/images/bg2.xbm
include/images/bg3.xbm
include/images/default.icon
include/images/dup_cursor.pr
include/images/fl_arrow.xbm
include/images/fl_doc.xbm
include/images/fl_folder.xbm
include/images/focus_right.cursor
include/images/focus_up.cursor
include/images/mglass.icon
include/images/mglass_mask.icon
include/images/qmark.cursor
include/images/square_17.pr
include/images/square_25.pr
include/images/square_75.pr
include/images/text_move_cursor.pr
include/olgx/olgx.h
include/olgx_private/busy.h
include/olgx_private/grey.h
include/olgx_private/olgx_impl.h
include/pixrect/bw2var.h
include/pixrect/cg12_var.h
include/pixrect/cg2reg.h
include/pixrect/cg2var.h
include/pixrect/cg3var.h
include/pixrect/cg4var.h
include/pixrect/cg8var.h
include/pixrect/cg9var.h
include/pixrect/gp1cmds.h
include/pixrect/gp1reg.h
include/pixrect/mem32_var.h
include/pixrect/mem_rop_impl_ops.h
include/pixrect/mem_rop_impl_util.h
include/pixrect/memreg.h
include/pixrect/memvar.h
include/pixrect/pixfont.h
include/pixrect/pixrect.h
include/pixrect/pixrect_hs.h
include/pixrect/pr_dblbuf.h
include/pixrect/pr_impl_make.h
include/pixrect/pr_impl_util.h
include/pixrect/pr_io.h
include/pixrect/pr_line.h
include/pixrect/pr_planegroups.h
include/pixrect/pr_util.h
include/pixrect/rasterfile.h
include/pixrect/traprop.h
include/pixrect/tv1var.h
include/xview/alert.h
include/xview/attr.h
include/xview/attrol.h
include/xview/base.h
include/xview/canvas.h
include/xview/cms.h
include/xview/cms_grays.h
include/xview/cms_mono.h
include/xview/cms_rgb.h
include/xview/cmsrainbow.h
include/xview/cursor.h
include/xview/db.h
include/xview/defaults.h
include/xview/dragdrop.h
include/xview/drawable.h
include/xview/expandname.h
include/xview/file_chsr.h
include/xview/file_list.h
include/xview/font.h
include/xview/frame.h
include/xview/fullscreen.h
include/xview/generic.h
include/xview/hist.h
include/xview/icon.h
include/xview/icon_load.h
include/xview/notice.h
include/xview/notify.h
include/xview/openmenu.h
include/xview/openwin.h
include/xview/panel.h
include/xview/path.h
include/xview/pixwin.h
include/xview/pkg.h
include/xview/pkg_public.h
include/xview/rect.h
include/xview/rectlist.h
include/xview/screen.h
include/xview/scrollbar.h
include/xview/sel_attrs.h
include/xview/sel_compat.h
include/xview/sel_pkg.h
include/xview/sel_svc.h
include/xview/selection.h
include/xview/seln.h
include/xview/server.h
include/xview/str_utils.h
include/xview/sun.h
include/xview/svrimage.h
include/xview/termsw.h
include/xview/text.h
include/xview/textsw.h
include/xview/tty.h
include/xview/ttysw.h
include/xview/win_enum.h
include/xview/win_env.h
include/xview/win_event.h
include/xview/win_input.h
include/xview/win_notify.h
include/xview/win_screen.h
include/xview/win_struct.h
include/xview/window.h
include/xview/window_hs.h
include/xview/wmgr.h
include/xview/xv_c_types.h
include/xview/xv_error.h
include/xview/xv_i18n.h
include/xview/xv_version.h
include/xview/xv_xrect.h
include/xview/xview.h
include/xview/xview_xvin.h
include/xview_private/attr_impl.h
include/xview_private/bitmask.h
include/xview_private/charimage.h
include/xview_private/charscreen.h
include/xview_private/cms_impl.h
include/xview_private/cnvs_impl.h
include/xview_private/curs_impl.h
include/xview_private/dndimpl.h
include/xview_private/draw_impl.h
include/xview_private/ei.h
include/xview_private/es.h
include/xview_private/ev.h
include/xview_private/ev_impl.h
include/xview_private/fchsr_impl.h
include/xview_private/filter.h
include/xview_private/finger_tbl.h
include/xview_private/flist_impl.h
include/xview_private/fm_impl.h
include/xview_private/font_impl.h
include/xview_private/frame_base.h
include/xview_private/frame_cmd.h
include/xview_private/frame_help.h
include/xview_private/fs_impl.h
include/xview_private/gen_impl.h
include/xview_private/gettext.h
include/xview_private/hashfn.h
include/xview_private/hist_impl.h
include/xview_private/i18n_impl.h
include/xview_private/icon_impl.h
include/xview_private/io_stream.h
include/xview_private/item_impl.h
include/xview_private/ndet.h
include/xview_private/ndis.h
include/xview_private/nint.h
include/xview_private/noticeimpl.h
include/xview_private/ntfy.h
include/xview_private/ntfy_ctbl.h
include/xview_private/om_impl.h
include/xview_private/omi_impl.h
include/xview_private/ow_impl.h
include/xview_private/p_lst_impl.h
include/xview_private/panel_impl.h
include/xview_private/path_impl.h
include/xview_private/portable.h
include/xview_private/primal.h
include/xview_private/ps_impl.h
include/xview_private/pw_impl.h
include/xview_private/sb_impl.h
include/xview_private/scrn_impl.h
include/xview_private/scrn_vis.h
include/xview_private/sel_impl.h
include/xview_private/seln_impl.h
include/xview_private/site_impl.h
include/xview_private/svr_atom.h
include/xview_private/svr_impl.h
include/xview_private/svr_kmdata.h
include/xview_private/svrim_impl.h
include/xview_private/term_impl.h
include/xview_private/tty_impl.h
include/xview_private/ttyansi.h
include/xview_private/txt_18impl.h
include/xview_private/txt_impl.h
include/xview_private/ultrix_cpt.h
include/xview_private/win_info.h
include/xview_private/win_keymap.h
include/xview_private/windowimpl.h
include/xview_private/wmgr_decor.h
include/xview_private/xv_color.h
include/xview_private/xv_debug.h
include/xview_private/xv_list.h
include/xview_private/xv_path_util.h
@dirrm lib/help
@dirrm include/images
@dirrm include/olgx
@dirrm include/pixrect
@dirrm include/xview
@dirrm include/xview_private

View File

@ -1,288 +0,0 @@
bin/xgettext
bin/msgfmt
lib/libolgx.a
lib/libxview.a
lib/.text_extras_menu
lib/.textswrc
lib/.ttyswrc
lib/text_extras_menu
lib/textswrc
lib/ttyswrc
lib/help/textsw.info
lib/help/ttysw.info
lib/help/xview.info
man/cat1/msgfmt.0
man/cat1/xgettext.0
man/cat1/xview.0
include/bitmaps/1x1
include/bitmaps/2x2
include/bitmaps/black
include/bitmaps/boxes
include/bitmaps/calculator
include/bitmaps/cntr_ptr
include/bitmaps/cntr_ptrmsk
include/bitmaps/cross_weave
include/bitmaps/dimple1
include/bitmaps/dimple3
include/bitmaps/dot
include/bitmaps/dropbar7
include/bitmaps/dropbar8
include/bitmaps/escherknot
include/bitmaps/flagdown
include/bitmaps/flagup
include/bitmaps/flipped_gray
include/bitmaps/gray
include/bitmaps/gray1
include/bitmaps/gray3
include/bitmaps/hlines2
include/bitmaps/hlines3
include/bitmaps/icon
include/bitmaps/keyboard16
include/bitmaps/left_ptr
include/bitmaps/left_ptrmsk
include/bitmaps/letters
include/bitmaps/light_gray
include/bitmaps/mailempty
include/bitmaps/mailemptymsk
include/bitmaps/mailfull
include/bitmaps/mailfullmsk
include/bitmaps/mensetmanus
include/bitmaps/menu10
include/bitmaps/menu12
include/bitmaps/menu16
include/bitmaps/menu8
include/bitmaps/noletters
include/bitmaps/opendot
include/bitmaps/opendotMask
include/bitmaps/plaid
include/bitmaps/right_ptr
include/bitmaps/right_ptrmsk
include/bitmaps/root_weave
include/bitmaps/scales
include/bitmaps/sipb
include/bitmaps/star
include/bitmaps/starMask
include/bitmaps/stipple
include/bitmaps/target
include/bitmaps/terminal
include/bitmaps/tie_fighter
include/bitmaps/txtdup
include/bitmaps/txtdupmask
include/bitmaps/txtdupmore
include/bitmaps/txtdupok
include/bitmaps/txtdupokmask
include/bitmaps/txtdupokmore
include/bitmaps/txtmv
include/bitmaps/txtmvmask
include/bitmaps/txtmvmore
include/bitmaps/txtmvok
include/bitmaps/txtmvokmask
include/bitmaps/txtmvokmore
include/bitmaps/vlines2
include/bitmaps/vlines3
include/bitmaps/weird_size
include/bitmaps/wide_weave
include/bitmaps/wierd_size
include/bitmaps/wingdogs
include/bitmaps/woman
include/bitmaps/xfd_icon
include/bitmaps/xlogo11
include/bitmaps/xlogo16
include/bitmaps/xlogo32
include/bitmaps/xlogo64
include/images/bg1.xbm
include/images/bg2.xbm
include/images/bg3.xbm
include/images/default.icon
include/images/dup_cursor.pr
include/images/fl_arrow.xbm
include/images/fl_doc.xbm
include/images/fl_folder.xbm
include/images/focus_right.cursor
include/images/focus_up.cursor
include/images/mglass.icon
include/images/mglass_mask.icon
include/images/qmark.cursor
include/images/square_17.pr
include/images/square_25.pr
include/images/square_75.pr
include/images/text_move_cursor.pr
include/olgx/olgx.h
include/olgx_private/busy.h
include/olgx_private/grey.h
include/olgx_private/olgx_impl.h
include/pixrect/bw2var.h
include/pixrect/cg12_var.h
include/pixrect/cg2reg.h
include/pixrect/cg2var.h
include/pixrect/cg3var.h
include/pixrect/cg4var.h
include/pixrect/cg8var.h
include/pixrect/cg9var.h
include/pixrect/gp1cmds.h
include/pixrect/gp1reg.h
include/pixrect/mem32_var.h
include/pixrect/mem_rop_impl_ops.h
include/pixrect/mem_rop_impl_util.h
include/pixrect/memreg.h
include/pixrect/memvar.h
include/pixrect/pixfont.h
include/pixrect/pixrect.h
include/pixrect/pixrect_hs.h
include/pixrect/pr_dblbuf.h
include/pixrect/pr_impl_make.h
include/pixrect/pr_impl_util.h
include/pixrect/pr_io.h
include/pixrect/pr_line.h
include/pixrect/pr_planegroups.h
include/pixrect/pr_util.h
include/pixrect/rasterfile.h
include/pixrect/traprop.h
include/pixrect/tv1var.h
include/xview/alert.h
include/xview/attr.h
include/xview/attrol.h
include/xview/base.h
include/xview/canvas.h
include/xview/cms.h
include/xview/cms_grays.h
include/xview/cms_mono.h
include/xview/cms_rgb.h
include/xview/cmsrainbow.h
include/xview/cursor.h
include/xview/db.h
include/xview/defaults.h
include/xview/dragdrop.h
include/xview/drawable.h
include/xview/expandname.h
include/xview/file_chsr.h
include/xview/file_list.h
include/xview/font.h
include/xview/frame.h
include/xview/fullscreen.h
include/xview/generic.h
include/xview/hist.h
include/xview/icon.h
include/xview/icon_load.h
include/xview/notice.h
include/xview/notify.h
include/xview/openmenu.h
include/xview/openwin.h
include/xview/panel.h
include/xview/path.h
include/xview/pixwin.h
include/xview/pkg.h
include/xview/pkg_public.h
include/xview/rect.h
include/xview/rectlist.h
include/xview/screen.h
include/xview/scrollbar.h
include/xview/sel_attrs.h
include/xview/sel_compat.h
include/xview/sel_pkg.h
include/xview/sel_svc.h
include/xview/selection.h
include/xview/seln.h
include/xview/server.h
include/xview/str_utils.h
include/xview/sun.h
include/xview/svrimage.h
include/xview/termsw.h
include/xview/text.h
include/xview/textsw.h
include/xview/tty.h
include/xview/ttysw.h
include/xview/win_enum.h
include/xview/win_env.h
include/xview/win_event.h
include/xview/win_input.h
include/xview/win_notify.h
include/xview/win_screen.h
include/xview/win_struct.h
include/xview/window.h
include/xview/window_hs.h
include/xview/wmgr.h
include/xview/xv_c_types.h
include/xview/xv_error.h
include/xview/xv_i18n.h
include/xview/xv_version.h
include/xview/xv_xrect.h
include/xview/xview.h
include/xview/xview_xvin.h
include/xview_private/attr_impl.h
include/xview_private/bitmask.h
include/xview_private/charimage.h
include/xview_private/charscreen.h
include/xview_private/cms_impl.h
include/xview_private/cnvs_impl.h
include/xview_private/curs_impl.h
include/xview_private/dndimpl.h
include/xview_private/draw_impl.h
include/xview_private/ei.h
include/xview_private/es.h
include/xview_private/ev.h
include/xview_private/ev_impl.h
include/xview_private/fchsr_impl.h
include/xview_private/filter.h
include/xview_private/finger_tbl.h
include/xview_private/flist_impl.h
include/xview_private/fm_impl.h
include/xview_private/font_impl.h
include/xview_private/frame_base.h
include/xview_private/frame_cmd.h
include/xview_private/frame_help.h
include/xview_private/fs_impl.h
include/xview_private/gen_impl.h
include/xview_private/gettext.h
include/xview_private/hashfn.h
include/xview_private/hist_impl.h
include/xview_private/i18n_impl.h
include/xview_private/icon_impl.h
include/xview_private/io_stream.h
include/xview_private/item_impl.h
include/xview_private/ndet.h
include/xview_private/ndis.h
include/xview_private/nint.h
include/xview_private/noticeimpl.h
include/xview_private/ntfy.h
include/xview_private/ntfy_ctbl.h
include/xview_private/om_impl.h
include/xview_private/omi_impl.h
include/xview_private/ow_impl.h
include/xview_private/p_lst_impl.h
include/xview_private/panel_impl.h
include/xview_private/path_impl.h
include/xview_private/portable.h
include/xview_private/primal.h
include/xview_private/ps_impl.h
include/xview_private/pw_impl.h
include/xview_private/sb_impl.h
include/xview_private/scrn_impl.h
include/xview_private/scrn_vis.h
include/xview_private/sel_impl.h
include/xview_private/seln_impl.h
include/xview_private/site_impl.h
include/xview_private/svr_atom.h
include/xview_private/svr_impl.h
include/xview_private/svr_kmdata.h
include/xview_private/svrim_impl.h
include/xview_private/term_impl.h
include/xview_private/tty_impl.h
include/xview_private/ttyansi.h
include/xview_private/txt_18impl.h
include/xview_private/txt_impl.h
include/xview_private/ultrix_cpt.h
include/xview_private/win_info.h
include/xview_private/win_keymap.h
include/xview_private/windowimpl.h
include/xview_private/wmgr_decor.h
include/xview_private/xv_color.h
include/xview_private/xv_debug.h
include/xview_private/xv_list.h
include/xview_private/xv_path_util.h
@dirrm lib/help
@dirrm include/images
@dirrm include/olgx
@dirrm include/pixrect
@dirrm include/xview
@dirrm include/xview_private