This commit is contained in:
purplerain 2024-10-06 22:00:57 +00:00
parent 50c8bafd9f
commit ac06c97e30
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
820 changed files with 467502 additions and 386453 deletions

View file

@ -1,5 +1,5 @@
# $OpenBSD: 3RDPARTY,v 1.432 2024/08/04 18:22:48 matthieu Exp $
# $OpenBSD: 3RDPARTY,v 1.433 2024/10/06 08:44:04 matthieu Exp $
#
Package: Freetype
Version: 2.13.2
@ -9,19 +9,19 @@ Archive Site: http://download.savannah.gnu.org/releases/freetype/
Package: xterm
Version: 393
Current Vers: 393
Current Vers: 394
Maintainer: Thomas E. Dickey
Archive Site: http://invisible-island.net/xterm/xterm.html
Package: Mesa
Version 23.3.6
Current Vers: 24.1.5
Current Vers: 24.2.3
Maintainer: Brian Paul
Archive Site: https://archive.mesa3d.org/
Package: libdrm
Version: 2.4.120
Current Vers: 2.4.122
Current Vers: 2.4.123
Maintainer: Freedesktop.org
Archive Site: https://dri.freedesktop.org/libdrm/

View file

@ -1,4 +1,4 @@
# $OpenBSD: MODULES,v 1.528 2024/08/12 05:59:08 matthieu Exp $
# $OpenBSD: MODULES,v 1.529 2024/10/06 08:44:04 matthieu Exp $
#
# X.Org maintained modules
#
@ -161,7 +161,7 @@ lib/libXext 1.3.6
lib/libXfixes 6.0.1
lib/libXfont2 2.0.7 needs-update
lib/libXft 2.3.8
lib/libXi 1.8.1
lib/libXi 1.8.2 needs-update
lib/libXinerama 1.1.5
lib/libXmu 1.2.1
lib/libXpm 3.5.17

View file

@ -208,10 +208,6 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
exit ;;
*:SecBSD:*:*)
UNAME_MACHINE_ARCH=`arch | sed 's/SecBSD.//'`
echo ${UNAME_MACHINE_ARCH}-unknown-secbsd${UNAME_RELEASE}
exit ;;
*:ekkoBSD:*:*)
echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
exit ;;

View file

@ -1363,7 +1363,7 @@ case $os in
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
| -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
| -bitrig* | -openbsd* | -secbsd* | -solidbsd* \
| -bitrig* | -openbsd* | -solidbsd* \
| -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
| -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

1783
app/bitmap/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/bitmap/config.sub vendored

File diff suppressed because it is too large Load diff

View file

@ -71,7 +71,7 @@ static Event * BuildEvent ( ProtocolStream * stream );
static void FreeEvent ( Event * event );
static char * DispatchEvent ( Event * event );
/* Function Name: ClientTimedOut
* Description: Called if the client takes too long to take our selection.
@ -96,7 +96,7 @@ ClientTimedOut(XtPointer data, XtIntervalId *id)
SetMessage(global_screen_data.info_label, msg);
}
/* Function Name: GetClientWindow
* Description: Gets the Client's window by asking the user.
@ -169,7 +169,7 @@ GetClientWindow(Widget w, int *x, int *y)
return(XmuClientWindow(dpy, target_win));
}
/* Function Name: SetCommand
* Description: Causes this widget to own the resource editor's
@ -244,7 +244,7 @@ SetCommand(Widget w, ResCommand command, String msg)
ClientTimedOut, (XtPointer) w);
}
/* Function Name: TellUserAboutMessage
* Description: Informs the user that we have sent a message to the client
@ -285,7 +285,7 @@ TellUserAboutMessage(Widget label, ResCommand command)
SetMessage(label, msg);
}
/* Function Name: ConvertCommand
* Description: Converts the command string into a selection that can
@ -310,7 +310,7 @@ ConvertCommand(Widget w, Atom *selection, Atom *target, Atom *type_ret,
return(TRUE);
}
/* Function Name: SelectionDone
* Description: done with the selection.
@ -325,7 +325,7 @@ SelectionDone(Widget w, Atom *sel, Atom *targ)
/* Keep the toolkit from automatically freeing the selection value */
}
/* Function Name: LoseSelection
* Description: Called when we have lost the selection, asks client
@ -347,7 +347,7 @@ LoseSelection(Widget w, Atom *sel)
NULL, XtLastTimestampProcessed(XtDisplay(w)));
}
/* Function Name: GetClientValue
* Description: Gets the value out of the client, and does good things
@ -459,7 +459,7 @@ GetClientValue(Widget w, XtPointer data, Atom *selection, Atom *type,
XtFree(error_str);
}
/* Function Name: BuildHeader
* Description: Puts the header into the message.
@ -529,7 +529,7 @@ BuildHeader(CurrentClient *client_data)
stream->size = old_size;
}
/* Function Name: BuildEvent
* Description: Builds the event structure from the
@ -758,7 +758,7 @@ BuildEvent(ProtocolStream *stream)
return(NULL);
}
/* Function Name: FreeEvent
* Description: Frees all memory associated with the event.
@ -860,7 +860,7 @@ FreeEvent(Event *event)
}
}
/* Function Name: DispatchEvent
* Description: Handles the event, calling the proper function.
@ -903,7 +903,7 @@ DispatchEvent(Event *event)
return(error);
}
/* Function Name: InternAtoms
* Description: interns all static atoms.

1783
app/editres/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/editres/config.sub vendored

File diff suppressed because it is too large Load diff

View file

@ -53,7 +53,7 @@ in this Software without prior written authorization from The Open Group.
#include "editresP.h"
/*
* functions.
@ -74,7 +74,7 @@ static void PopupOnNode ( WNode * node, Widget shell );
static void FreeClientData ( Widget w, XtPointer ptr, XtPointer junk );
static void FreeResBox ( Widget w, XtPointer ptr, XtPointer junk );
/* Function Name: RebuildMenusAndLabel
* Description: Determines if the user has selected an application
@ -156,7 +156,7 @@ RebuildMenusAndLabel(const char *toolkit)
}
}
/* Function Name: BuildWidgetTree
* Description: Creates all widgets for Editres.
@ -189,7 +189,7 @@ BuildWidgetTree(Widget parent)
global_tree_parent = porthole;
}
/* Function Name: CreateTopArea
@ -229,7 +229,7 @@ CreateTopArea(Widget parent)
return(panner);
}
/* Function Name: SetEntriesInsensitive
* Description: Make menu entries unusable.
@ -244,7 +244,7 @@ SetEntriesSensitive(Widget *entries, int num, Boolean sensitive)
int i; for (i=0; i<num; i++) XtSetSensitive(entries[i], sensitive);
}
/* Function Name: CreateCommandMenu
* Description: Creates the command menu.
@ -311,7 +311,7 @@ CreateCommandMenu(Widget parent, const char *toolkit)
SetEntriesSensitive(&CM_entries[CM_OFFSET], CM_NUM, False);
}
/* Function Name: CreateTreeCommandMenu
* Description: Creates the command menu.
@ -406,7 +406,7 @@ CreateTreeCommandMenu(Widget parent, const char *toolkit)
TM_NUM, False);
}
static Pixmap old_pixmap;
@ -430,7 +430,7 @@ PrepareToLayoutTree(Widget tree)
XtUnmapWidget(tree);
}
/* Function Name: LayoutTree
* Description: Laysout the tree widget.
@ -450,7 +450,7 @@ LayoutTree(Widget tree)
XtSetValues(XtParent(tree), args, ONE);
}
/************************************************************
*
@ -533,7 +533,7 @@ CreateResourceBoxWidgets(WNode *node, char **names, char **cons_names)
PopupOnNode(node, res_box->shell);
}
/* Function Name: CreateResourceNameForm
* Description: Creates the Form widget with children that represent
@ -672,7 +672,7 @@ CreateResourceNameForm(Widget parent, WNode *node)
XtFree((char *)classes);
}
/* Function Name: SetToggleGroupLeaders
* Description: Sets the leaders of each toggle group.
@ -697,7 +697,7 @@ SetToggleGroupLeaders(WNode *node)
SetResourceString(NULL, (XtPointer) node, NULL);
}
/* Function Name: MakeBoxLookNice
* Description: Resizes the box that contains the resource names
@ -807,7 +807,7 @@ MakeBoxLookNice(Widget dot, Widget star, Widget any, Widget single,
XtSetValues(single, args, num_args);
}
/* Function Name: CreateLists
* Description: Creates the list widgets for the normal and constraint
@ -911,7 +911,7 @@ CreateValueWidget(Widget parent, WNode *node)
#endif
}
/* Function Name: PopupOnNode
* Description: Pops a shell widget up centered on the node specified.
@ -969,7 +969,7 @@ PopupOnNode(WNode *node, Widget shell)
XtPopup(shell, XtGrabNone);
}
/* Function Name: FreeClientData
* Description: Frees the client data passed to this function.
@ -986,7 +986,7 @@ FreeClientData(Widget w, XtPointer ptr, XtPointer junk)
XtFree(ptr);
}
/* Function Name: FreeResBox.
* Description: Frees resource box allocated memory.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -11,7 +11,7 @@
* (including the null string) '?' matches any single char. For use
* by filenameforall. Note that '*' matches across directory boundaries
*
* This code donated by Paul Hudson <paulh@harlequin.co.uk>
* This code donated by Paul Hudson <paulh@harlequin.co.uk>
* It is public domain, no strings attached. No guarantees either.
*
*****************************************************************************/

View file

@ -350,7 +350,7 @@ Key F8 A M CirculateDown
*FvwmPagerFore white
*FvwmPagerHilight #2d2d2d
*FvwmPagerGeometry 80x60-1-1
*FvwmPagerLabel 0 "OpenBSD"
*FvwmPagerLabel 0 "SecBSD"
*FvwmPagerLabel 1 Maker
*FvwmPagerLabel 2 Mail
*FvwmPagerLabel 3 Matlab

1783
app/iceauth/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/iceauth/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/ico/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/ico/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/listres/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/listres/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/luit/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/luit/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

1783
app/oclock/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/oclock/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/rgb/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/rgb/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/sessreg/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/sessreg/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

2954
app/setxkbmap/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/smproxy/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/smproxy/config.sub vendored

File diff suppressed because it is too large Load diff

View file

@ -85,7 +85,7 @@ asprintf(char ** ret, const char *format, ...)
#endif
static int
write_byte (FILE *file, unsigned char b)
{
@ -130,7 +130,7 @@ write_counted_string(FILE *file, char *string)
}
static int
read_byte(FILE *file, unsigned char *bp)
{
@ -177,7 +177,7 @@ read_counted_string(FILE *file, char **stringp)
}
/*
* An entry in the .smproxy file looks like this:
*
@ -336,7 +336,7 @@ ReadProxyFile(char *filename)
}
static char *
unique_filename(const char *path, const char *prefix, int *pFd)
{
@ -374,7 +374,7 @@ unique_filename(const char *path, const char *prefix, int *pFd)
}
char *
WriteProxyFile(void)
{
@ -435,7 +435,7 @@ WriteProxyFile(void)
}
char *
LookupClientID(WinInfo *theWindow)
{

View file

@ -97,7 +97,7 @@ static void ProxyShutdownCancelledCB ( SmcConn smcConn, SmPointer clientData );
static Status ConnectProxyToSM ( char *previous_id );
static void CheckForExistingWindows ( Window root );
static Bool
HasSaveYourself(Window window)
{
@ -126,7 +126,7 @@ HasSaveYourself(Window window)
}
static Bool
HasXSMPsupport(Window window)
{
@ -146,7 +146,7 @@ HasXSMPsupport(Window window)
}
static WinInfo *
GetClientLeader(WinInfo *winptr)
{
@ -195,7 +195,7 @@ GetClientLeader(WinInfo *winptr)
}
static char *
CheckFullyQuantifiedName(char *name, int *newstring)
{
@ -243,7 +243,7 @@ CheckFullyQuantifiedName(char *name, int *newstring)
}
static void
FinishSaveYourself(WinInfo *winInfo, Bool has_WM_SAVEYOURSELF)
{
@ -334,7 +334,7 @@ FinishSaveYourself(WinInfo *winInfo, Bool has_WM_SAVEYOURSELF)
}
static void
SaveYourselfCB(SmcConn smcConn, SmPointer clientData, int saveType,
Bool shutdown, int interactStyle, Bool fast)
@ -384,7 +384,7 @@ SaveYourselfCB(SmcConn smcConn, SmPointer clientData, int saveType,
}
static void
DieCB(SmcConn smcConn, SmPointer clientData)
{
@ -418,7 +418,7 @@ DieCB(SmcConn smcConn, SmPointer clientData)
}
static void
SaveCompleteCB(SmcConn smcConn, SmPointer clientData)
{
@ -428,7 +428,7 @@ SaveCompleteCB(SmcConn smcConn, SmPointer clientData)
}
static void
ShutdownCancelledCB(SmcConn smcConn, SmPointer clientData)
{
@ -440,7 +440,7 @@ ShutdownCancelledCB(SmcConn smcConn, SmPointer clientData)
}
static void
ProcessIceMsgProc(XtPointer client_data, int *source, XtInputId *id)
{
@ -450,7 +450,7 @@ ProcessIceMsgProc(XtPointer client_data, int *source, XtInputId *id)
}
static void
NullIceErrorHandler(IceConn iceConn, Bool swap, int offendingMinorOpcode,
unsigned long offendingSequence, int errorClass,
@ -459,7 +459,7 @@ NullIceErrorHandler(IceConn iceConn, Bool swap, int offendingMinorOpcode,
return;
}
static void
ConnectClientToSM(WinInfo *winInfo)
{
@ -530,7 +530,7 @@ ConnectClientToSM(WinInfo *winInfo)
}
static int
MyErrorHandler(Display *display, XErrorEvent *event)
{
@ -539,7 +539,7 @@ MyErrorHandler(Display *display, XErrorEvent *event)
}
static Bool
LookupWindow(Window window, WinInfo **ptr_ret, WinInfo **prev_ptr_ret)
{
@ -572,7 +572,7 @@ LookupWindow(Window window, WinInfo **ptr_ret, WinInfo **prev_ptr_ret)
}
static WinInfo *
AddNewWindow(Window window)
{
@ -608,7 +608,7 @@ AddNewWindow(Window window)
}
static void
RemoveWindow(WinInfo *winptr)
{
@ -644,7 +644,7 @@ RemoveWindow(WinInfo *winptr)
}
static void
Got_WM_STATE(WinInfo *winptr)
{
@ -738,7 +738,7 @@ Got_WM_STATE(WinInfo *winptr)
}
static void
HandleCreate(XCreateWindowEvent *event)
{
@ -820,7 +820,7 @@ HandleCreate(XCreateWindowEvent *event)
}
static void
HandleDestroy(XDestroyWindowEvent *event)
{
@ -847,7 +847,7 @@ HandleDestroy(XDestroyWindowEvent *event)
}
static void
HandleUpdate(XPropertyEvent *event)
{
@ -882,7 +882,7 @@ HandleUpdate(XPropertyEvent *event)
}
static void
ProxySaveYourselfPhase2CB(SmcConn smcConn, SmPointer clientData)
{
@ -1006,7 +1006,7 @@ ProxySaveYourselfPhase2CB(SmcConn smcConn, SmPointer clientData)
}
static void
ProxySaveYourselfCB(SmcConn smcConn, SmPointer clientData, int saveType,
Bool shutdown, int interactStyle, Bool fast)
@ -1028,7 +1028,7 @@ ProxySaveYourselfCB(SmcConn smcConn, SmPointer clientData, int saveType,
}
static void
ProxyDieCB(SmcConn smcConn, SmPointer clientData)
{
@ -1042,7 +1042,7 @@ ProxyDieCB(SmcConn smcConn, SmPointer clientData)
}
static void
ProxySaveCompleteCB(SmcConn smcConn, SmPointer clientData)
{
@ -1050,7 +1050,7 @@ ProxySaveCompleteCB(SmcConn smcConn, SmPointer clientData)
}
static void
ProxyShutdownCancelledCB(SmcConn smcConn, SmPointer clientData)
{
@ -1062,7 +1062,7 @@ ProxyShutdownCancelledCB(SmcConn smcConn, SmPointer clientData)
}
static Status
ConnectProxyToSM(char *previous_id)
{
@ -1113,7 +1113,7 @@ ConnectProxyToSM(char *previous_id)
}
static void
CheckForExistingWindows(Window root)
{
@ -1152,7 +1152,7 @@ CheckForExistingWindows(Window root)
}
int
main (int argc, char *argv[])
{

1783
app/twm/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/twm/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/viewres/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/viewres/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xauth/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xauth/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

1783
app/xbiff/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xbiff/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xcalc/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xcalc/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

1783
app/xclock/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xclock/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xcmsdb/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xcmsdb/config.sub vendored

File diff suppressed because it is too large Load diff

View file

@ -136,7 +136,7 @@ static DefineEntry VisualClassTbl[] = {
{ "", -1 }
};
/************************************************************************
* *
* PRIVATE ROUTINES *
@ -178,7 +178,7 @@ StrToDefine(DefineEntry pde[], /* IN: table of X string-define pairs */
}
return (-1);
}
/*
* NAME
* DefineToStr
@ -242,7 +242,7 @@ SCKeyOf(const char *string)
{
return (StrToDefine(KeyTbl, string));
}
/*
* NAME
* SCScrnClassOf - convert screen class string into class ID
@ -270,7 +270,7 @@ SCScrnClassOf(const char *string)
{
return (StrToDefine(ScrnClassTbl, string));
}
/*
* NAME
* SCScrnClassStringOf - convert screen class id into class string
@ -306,7 +306,7 @@ closeS(FILE *stream, XDCCC_Correction *pCorrection)
pCorrection = pNext;
}
}
/*
* Get a line of text from the stream.
*/
@ -316,7 +316,7 @@ nextline(char *buf, int maxch, FILE *stream)
linenum++;
return (fgets(buf, maxch, stream));
}
static int
ProcessColorimetric(FILE *stream, XDCCC_Matrix *pMatrix, int VisualFlag)
{
@ -511,7 +511,7 @@ ProcessColorimetric(FILE *stream, XDCCC_Matrix *pMatrix, int VisualFlag)
}
return (0);
}
static int
ProcessIProfile(FILE *stream, XDCCC_Correction *pCorrection)
{
@ -720,7 +720,7 @@ ProcessIProfile(FILE *stream, XDCCC_Correction *pCorrection)
}
return (0);
}
static void
PutTableType0Card8(IntensityTbl *pTbl, unsigned char **pCard8)
{
@ -738,7 +738,7 @@ PutTableType0Card8(IntensityTbl *pTbl, unsigned char **pCard8)
*pCard8 += 1;
}
}
static void
PutTableType1Card8(IntensityTbl *pTbl, unsigned char **pCard8)
{
@ -754,7 +754,7 @@ PutTableType1Card8(IntensityTbl *pTbl, unsigned char **pCard8)
*pCard8 += 1;
}
}
static void
PutTableType0Card16(IntensityTbl *pTbl, unsigned short **pCard16)
{
@ -772,7 +772,7 @@ PutTableType0Card16(IntensityTbl *pTbl, unsigned short **pCard16)
*pCard16 += 1;
}
}
static void
PutTableType1Card16(IntensityTbl *pTbl, unsigned short **pCard16)
{
@ -788,7 +788,7 @@ PutTableType1Card16(IntensityTbl *pTbl, unsigned short **pCard16)
*pCard16 += 1;
}
}
static void
PutTableType0Card32(IntensityTbl *pTbl, unsigned long **pCard32)
{
@ -806,7 +806,7 @@ PutTableType0Card32(IntensityTbl *pTbl, unsigned long **pCard32)
*pCard32 += 1;
}
}
static void
PutTableType1Card32(IntensityTbl *pTbl, unsigned long **pCard32)
{
@ -822,7 +822,7 @@ PutTableType1Card32(IntensityTbl *pTbl, unsigned long **pCard32)
*pCard32 += 1;
}
}
static void
LoadMatrix(Display * pDpy, Window root, XDCCC_Matrix * pMatrix)
{
@ -848,7 +848,7 @@ LoadMatrix(Display * pDpy, Window root, XDCCC_Matrix * pMatrix)
XChangeProperty(pDpy, root, MatricesAtom, XA_INTEGER, 32,
PropModeReplace, (unsigned char *) Card32Array, 18);
}
static int
LoadCorrections(Display *pDpy, Window root, XDCCC_Correction *pCorrection,
int targetFormat)
@ -1128,7 +1128,7 @@ LoadCorrections(Display *pDpy, Window root, XDCCC_Correction *pCorrection,
}
#ifdef GRAY
static int
LoadDataGray(Display *pDpy, window root, int tableType,
LINEAR_RGB_SCCData *pScreenData, int targetFormat)
@ -1250,7 +1250,7 @@ LoadDataGray(Display *pDpy, window root, int tableType,
return (1);
}
#endif /* GRAY */
static void
PrintVisualOptions(XDCCC_Correction * pCorrection)
{
@ -1295,7 +1295,7 @@ PrintVisualOptions(XDCCC_Correction * pCorrection)
pCorrection->visual_info.bits_per_rgb);
}
}
static int
ParseVisualOptions(Display *pDpy, XDCCC_Correction *pCorrection, char *pbuf)
{
@ -1440,7 +1440,7 @@ ParseVisualOptions(Display *pDpy, XDCCC_Correction *pCorrection, char *pbuf)
memcpy(&pCorrection->visual_info, vinfo, sizeof(XVisualInfo));
return (1);
}
/************************************************************************
* *
* PUBLIC ROUTINES *

View file

@ -212,13 +212,13 @@ main(int argc, char *argv[])
exit(0);
/*NOTREACHED*/
}
static Atom
ParseAtom(Display *dpy, const char *name, int only_flag)
{
return (XInternAtom(dpy, name, only_flag));
}
/*
* NAME
* PrintTableType0
@ -273,7 +273,7 @@ PrintTableType0(int format, char **pChar, unsigned long *pCount)
return;
}
}
/*
* NAME
* PrintTableType1
@ -328,7 +328,7 @@ PrintTableType1(int format, char **pChar, unsigned long *pCount)
return;
}
}
/*
* NAME
* QuerySCCData - Query for the SCC data on the root window
@ -558,7 +558,7 @@ QuerySCCDataRGB(Display * dpy, Window root)
}
#ifdef GRAY
/*
* NAME
* QuerySCCDataGray - Query for the SCC data on the root window
@ -723,7 +723,7 @@ QuerySCCDataGray(Display * dpy, Window root)
printf("Fatal error in %s property\n", XDCCC_CORRECT_ATOM_NAME);
}
#endif /* GRAY */
/*
* NAME
* RemoveSCCData - Remove for the SCC data on the root window
@ -851,7 +851,7 @@ _XcmsGetElement(int format, char **pValue, unsigned long *pCount)
}
return (value);
}
/*
* NAME
* _XcmsGetProperty -- Determine the existence of a property

File diff suppressed because it is too large Load diff

2954
app/xcompmgr/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

2954
app/xconsole/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

2954
app/xdpyinfo/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

2954
app/xdriinfo/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xedit/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xedit/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xenodm/config.guess vendored Executable file → Normal file

File diff suppressed because it is too large Load diff

2954
app/xenodm/config.sub vendored Executable file → Normal file

File diff suppressed because it is too large Load diff

View file

@ -4,4 +4,4 @@
prefix="@prefix@"
exec_prefix="@exec_prefix@"
@bindir@/xsetroot -fg \#6f6f6f -bg \#5852fb -bitmap @includedir@/X11/bitmaps/root_weave
@bindir@/xsetroot -fg \#6f6f6f -bg \#3c0d8b -bitmap @includedir@/X11/bitmaps/root_weave

1783
app/xev/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xev/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xeyes/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xeyes/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xf86dga/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xf86dga/config.sub vendored

File diff suppressed because it is too large Load diff

2
app/xfd/aclocal.m4 vendored
View file

@ -2766,7 +2766,7 @@ AC_ARG_WITH(lint, [AS_HELP_STRING([--with-lint],
# Obtain platform specific info like program name and options
# The lint program on FreeBSD and NetBSD is different from the one on Solaris
case $host_os in
*linux* | *openbsd* | *secbsd* | kfreebsd*-gnu | darwin* | cygwin*)
*linux* | *openbsd* | kfreebsd*-gnu | darwin* | cygwin*)
lint_name=splint
lint_options="-badflag"
;;

View file

@ -208,10 +208,6 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
exit ;;
*:SecBSD:*:*)
UNAME_MACHINE_ARCH=`arch | sed 's/SecBSD.//'`
echo ${UNAME_MACHINE_ARCH}-unknown-secbsd${UNAME_RELEASE}
exit ;;
*:ekkoBSD:*:*)
echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
exit ;;

2
app/xfd/config.sub vendored
View file

@ -1363,7 +1363,7 @@ case $os in
| -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
| -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
| -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
| -bitrig* | -openbsd* | -secbsd* | -solidbsd* \
| -bitrig* | -openbsd* | -solidbsd* \
| -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
| -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \

File diff suppressed because it is too large Load diff

2954
app/xfontsel/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xgamma/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xgamma/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xgc/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xgc/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xhost/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xhost/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xinit/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xinit/config.sub vendored

File diff suppressed because it is too large Load diff

View file

@ -2766,7 +2766,7 @@ AC_ARG_WITH(lint, [AS_HELP_STRING([--with-lint],
# Obtain platform specific info like program name and options
# The lint program on FreeBSD and NetBSD is different from the one on Solaris
case $host_os in
*linux* | *secbsd* | kfreebsd*-gnu | darwin* | cygwin*)
*linux* | *openbsd* | *secbsd* | kfreebsd*-gnu | darwin* | cygwin*)
lint_name=splint
lint_options="-badflag"
;;

1783
app/xinput/config.guess vendored Executable file → Normal file

File diff suppressed because it is too large Load diff

2954
app/xinput/config.sub vendored Executable file → Normal file

File diff suppressed because it is too large Load diff

1783
app/xkbcomp/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xkbcomp/config.sub vendored

File diff suppressed because it is too large Load diff

1783
app/xkbevd/config.guess vendored

File diff suppressed because it is too large Load diff

2954
app/xkbevd/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

2954
app/xkbprint/config.sub vendored

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

Some files were not shown because too many files have changed in this diff Show more