Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0a997524
Commit
0a997524
authored
Apr 16, 1999
by
Robert Pouliot
Committed by
Alexandre Julliard
Apr 16, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A few patches to help Wine to compile on OS/2.
parent
b94e4330
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
16 deletions
+24
-16
path.c
graphics/path.c
+4
-0
graphics.c
graphics/psdrv/graphics.c
+7
-3
sig_context.h
include/sig_context.h
+0
-2
make_os2.cmd
tools/make_os2.cmd
+13
-0
make_os2.sh
tools/make_os2.sh
+0
-11
No files found.
graphics/path.c
View file @
0a997524
...
...
@@ -8,6 +8,10 @@
#include <malloc.h>
#include <math.h>
#include <string.h>
#include "config.h"
#if defined(HAVE_FLOAT_H)
#include <float.h>
#endif
#include "winbase.h"
#include "wingdi.h"
...
...
graphics/psdrv/graphics.c
View file @
0a997524
...
...
@@ -6,12 +6,16 @@
*/
#include <string.h>
#include <math.h>
#include "config.h"
#if defined(HAVE_FLOAT_H)
#include <float.h>
#endif
#if !defined(PI)
#define PI M_PI
#endif
#include "psdrv.h"
#include "debug.h"
#include "winspool.h"
#ifndef PI
#define PI M_PI
#endif
/**********************************************************************
* PSDRV_MoveToEx
...
...
include/sig_context.h
View file @
0a997524
...
...
@@ -98,8 +98,6 @@ typedef struct ucontext SIGCONTEXT;
#endif
/* svr4 || SCO_DS */
#ifdef __EMX__
typedef
unsigned
long
ULONG
;
typedef
unsigned
short
USHORT
;
typedef
struct
_fpreg
/* Note 1 */
{
ULONG
losig
;
...
...
tools/make_os2.cmd
0 → 100644
View file @
0a997524
@echo off
rem #!/bin/sh
rem GCCLOAD not needed, but recommended...
rem set GCCLOAD=5
set MAKE=make
set CC=gcc
set CFLAGS=-O2 -Zmtd -D__ST_MT_ERRNO__
set YACC=bison -y
set LEX=flex -olex.yy.c
set RANLIB=ar -s
set PROGEXT=.exe
rem export CC CFLAGS YACC LEX RANLIB PROGEXT
sh configure --x-includes=%X11ROOT%/XFree86/include -x-libraries=%X11ROOT%/XFree86/lib
tools/make_os2.sh
deleted
100644 → 0
View file @
b94e4330
#!/bin/sh
# GCCLOAD not needed, but recommended...
#GCCLOAD=5
CC
=
gcc
CFLAGS
=
"-O2 -Zmtd -D__ST_MT_ERRNO__"
YACC
=
"bison -y"
LEX
=
"flex -olex.yy.c"
RANLIB
=
"ar -s"
PROGEXT
=
".exe"
export
CC CFLAGS YACC LEX RANLIB PROGEXT
./configure
--x-includes
=
$X11ROOT
/XFree86/include
-x-libraries
=
$X11ROOT
/XFree86/lib
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment