Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
9a129a64
Kaydet (Commit)
9a129a64
authored
Mar 18, 2003
tarafından
Jens-Heiner Rechtien
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
MWS_SRX644: migrate branch mws_srx644 -> HEAD
üst
4397c615
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
38 additions
and
48 deletions
+38
-48
makefile.mk
soltools/checkdll/makefile.mk
+4
-2
_cpp.c
soltools/cpp/_cpp.c
+2
-2
_include.c
soltools/cpp/_include.c
+1
-4
_lex.c
soltools/cpp/_lex.c
+4
-12
_macro.c
soltools/cpp/_macro.c
+0
-3
_tokens.c
soltools/cpp/_tokens.c
+1
-1
_unix.c
soltools/cpp/_unix.c
+1
-1
cpp.h
soltools/cpp/cpp.h
+1
-7
makefile.mk
soltools/cpp/makefile.mk
+3
-2
makefile.mk
soltools/javadep/makefile.mk
+3
-2
ldump.cxx
soltools/ldump/ldump.cxx
+5
-5
makefile.mk
soltools/ldump/makefile.mk
+5
-3
makefile.mk
soltools/mkdepend/makefile.mk
+3
-2
makefile.mk
soltools/testSHL/makefile.mk
+5
-2
No files found.
soltools/checkdll/makefile.mk
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
# $Revision: 1.
5
$
# $Revision: 1.
6
$
#
# last change: $Author: hr $ $Date: 200
2-10-22 10:51:5
3 $
# last change: $Author: hr $ $Date: 200
3-03-18 12:47:3
3 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
...
...
@@ -74,7 +74,9 @@ NO_DEFAULT_STL=TRUE
# --- Files --------------------------------------------------------
.IF
"$(GUI)"
==
"UNX"
LIBSALCPPRT
=
$
(
0
)
APP1TARGET
=
checkdll
APP1OBJS
=
$(OBJ)$/
checkdll.obj
DEPOBJFILES
=
$(APP1OBJS)
...
...
soltools/cpp/_cpp.c
Dosyayı görüntüle @
9a129a64
...
...
@@ -17,7 +17,7 @@ int ifdepth;
int
ifsatisfied
[
NIF
];
int
skipping
;
char
rcsid
[]
=
"$Version 1.2 $ $Revision: 1.
2 $ $Date: 2001-07-10 08:57:52
$"
;
char
rcsid
[]
=
"$Version 1.2 $ $Revision: 1.
3 $ $Date: 2003-03-18 12:47:33
$"
;
int
#ifdef _WIN32
...
...
@@ -51,7 +51,7 @@ __cdecl
void
process
(
Tokenrow
*
trp
)
{
int
anymacros
=
0
;
/* S390: XDBX strzt ab! */
int
anymacros
=
0
;
for
(;;)
{
...
...
soltools/cpp/_include.c
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,7 +2,7 @@
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
&& !(defined S390)
#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
# include <io.h>
#else
# include <unistd.h>
...
...
@@ -14,9 +14,6 @@
#ifdef _MSC_VER
# define _POSIX_
#endif
#ifdef S390
# define PATH_MAX _POSIX_PATH_MAX
#endif
#ifdef __IBMC__
# include <fcntl.h>
# define PATH_MAX _MAX_PATH
...
...
soltools/cpp/_lex.c
Dosyayı görüntüle @
9a129a64
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
&& !(defined S390)
#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
#include <io.h>
#else
#include <unistd.h>
...
...
@@ -37,11 +37,7 @@
#define C_ALPH 2
#define C_NUM 3
#define C_EOF 4
#ifdef S390
#define C_XX 6
#else
#define C_XX 5
#endif
enum
state
{
...
...
@@ -268,12 +264,8 @@ void
continue
;
case
C_ALPH
:
for
(
j
=
0
;
j
<=
256
;
j
++
)
#ifdef S390
if
(
isalpha
(
j
)
||
(
j
==
'_'
)
)
#else
if
(
'a'
<=
j
&&
j
<=
'z'
||
'A'
<=
j
&&
j
<=
'Z'
||
j
==
'_'
)
#endif
bigfsm
[
j
][
fp
->
state
]
=
nstate
;
continue
;
case
C_NUM
:
...
...
@@ -351,7 +343,7 @@ int
}
}
maxp
=
&
trp
->
bp
[
trp
->
max
];
runelen
=
1
;
/* S390: XDBX strzt ab! */
runelen
=
1
;
for
(;;)
{
continue2:
...
...
@@ -370,7 +362,7 @@ continue2:
{
oldstate
=
state
;
c
=
*
ip
;
/* S390: XDBX strzt (gelegentlich) ab! */
c
=
*
ip
;
if
((
state
=
bigfsm
[
c
][
state
])
>=
0
)
{
...
...
@@ -416,7 +408,7 @@ continue2:
if
(
c
==
'\n'
)
{
while
(
s
->
inp
+
1
>=
s
->
inl
&&
fillbuf
(
s
)
!=
EOF
);
/* S390: XDBX strzt (manchmal) ab! */
while
(
s
->
inp
+
1
>=
s
->
inl
&&
fillbuf
(
s
)
!=
EOF
);
if
(
s
->
inp
[
1
]
==
'\r'
)
{
...
...
soltools/cpp/_macro.c
Dosyayı görüntüle @
9a129a64
...
...
@@ -8,9 +8,6 @@
#ifdef _MSC_VER
# define _POSIX_
#endif
#ifdef S390
# define PATH_MAX _POSIX_PATH_MAX
#endif
#ifdef __IBMC__
# define PATH_MAX _MAX_PATH
#endif
...
...
soltools/cpp/_tokens.c
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,7 +2,7 @@
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
&& !(defined S390)
#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
#include <io.h>
#else
#include <unistd.h>
...
...
soltools/cpp/_unix.c
Dosyayı görüntüle @
9a129a64
...
...
@@ -4,7 +4,7 @@
#include <string.h>
#include <ctype.h>
#include <fcntl.h>
#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
&& !(defined S390)
#if (defined(_WIN32) || defined(_MSDOS) || defined(__IBMC__))
#include <io.h>
#else
#include <unistd.h>
...
...
soltools/cpp/cpp.h
Dosyayı görüntüle @
9a129a64
/* $Id: cpp.h,v 1.
2 2002-01-08 12:07:30 hjs
Exp $ */
/* $Id: cpp.h,v 1.
3 2003-03-18 12:47:34 hr
Exp $ */
#define INS 32768
/* input buffer */
#define OBS 8092
/* outbut buffer */
...
...
@@ -47,14 +47,8 @@ enum kwtype
#define ISARCHITECTURE 0x10
/* architecture */
#define ISACTIVE 0x80
/* is macro currently expanded */
#ifdef S390
/* 0xfe und 0xfd fallen auf der S/390 auf Control-Chars */
#define EOB 0x07
#define EOFC 0x08
#else
#define EOB 0xFE
/* sentinel for end of input buffer */
#define EOFC 0xFD
/* sentinel for end of input file */
#endif
#define XPWS 1
/* token flag: white space to assure token sep. */
#define XTWS 2
...
...
soltools/cpp/makefile.mk
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
# $Revision: 1.
7
$
# $Revision: 1.
8
$
#
# last change: $Author:
rt $ $Date: 2002-12-11 14:00:23
$
# last change: $Author:
hr $ $Date: 2003-03-18 12:47:35
$
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
...
...
@@ -74,6 +74,7 @@ NO_DEFAULT_STL=TRUE
.INCLUDE
:
settings.mk
UWINAPILIB
=
$
(
0
)
LIBSALCPPRT
=
$
(
0
)
# --- Files --------------------------------------------------------
...
...
soltools/javadep/makefile.mk
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
# $Revision: 1.
5
$
# $Revision: 1.
6
$
#
# last change: $Author:
rt $ $Date: 2002-12-11 14:00:22
$
# last change: $Author:
hr $ $Date: 2003-03-18 12:47:36
$
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
...
...
@@ -74,6 +74,7 @@ NO_DEFAULT_STL=TRUE
.INCLUDE
:
settings.mk
UWINAPILIB
=
$
(
0
)
LIBSALCPPRT
=
$
(
0
)
# --- Files --------------------------------------------------------
...
...
soltools/ldump/ldump.cxx
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: ldump.cxx,v $
*
* $Revision: 1.
4
$
* $Revision: 1.
5
$
*
* last change: $Author: h
js $ $Date: 2002-06-20 12:40:4
6 $
* last change: $Author: h
r $ $Date: 2003-03-18 12:47:3
6 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -470,7 +470,7 @@ bool LibDump::PrintDataBase()
FILE
*
pFp
;
pFp
=
fopen
(
cBName
,
"w+"
);
if
(
!
pFp
)
DumpError
(
600
);
fprintf
(
stderr
,
"Error opening DataBase File
\n
"
);
LibExport
*
pData
;
for
(
unsigned
long
i
=
0
;
i
<
nBaseLines
+
10
;
i
++
)
...
...
@@ -618,7 +618,7 @@ bool LibDump::DumpError( unsigned long n )
case
610
:
p
=
"Overflow in base database table
\n
"
;
break
;
default
:
p
=
"Unspecified error"
;
}
fprintf
(
std
err
,
"Error
\n\n
%s
\n
"
,
p
);
fprintf
(
std
out
,
"
%s
\n
"
,
p
);
exit
(
1
);
return
false
;
}
...
...
@@ -628,7 +628,7 @@ bool LibDump::DumpError( unsigned long n )
*********************************************************************/
int
usage
()
usage
()
{
LibDump
::
DumpError
(
99
);
exit
(
0
);
...
...
soltools/ldump/makefile.mk
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
# $Revision: 1.
3
$
# $Revision: 1.
4
$
#
# last change: $Author: hr $ $Date: 200
2-02-22 10:20:06
$
# last change: $Author: hr $ $Date: 200
3-03-18 12:47:37
$
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
...
...
@@ -65,13 +65,15 @@ PRJ=..
PRJNAME
=
ldump
TARGET
=
ldump
TARGETTYPE
=
CUI
NO_DEFAULT_STL
=
TRUE
# --- Settings -----------------------------------------------------
.INCLUDE
:
$(PRJ)$/util$/makefile.pmk
.INCLUDE
:
settings.mk
UWINAPILIB
=
$
(
0
)
LIBSALCPPRT
=
$
(
0
)
# --- Files --------------------------------------------------------
# ldump only supports windows environment
...
...
soltools/mkdepend/makefile.mk
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
# $Revision: 1.
7
$
# $Revision: 1.
8
$
#
# last change: $Author:
rt $ $Date: 2002-12-11 14:00:21
$
# last change: $Author:
hr $ $Date: 2003-03-18 12:47:37
$
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
...
...
@@ -73,6 +73,7 @@ nodep=true
.INCLUDE
:
settings.mk
dot
=
.
LIBSALCPPRT
=
$
(
0
)
UWINAPILIB
=
$
(
0
)
CDEFS
+=
-DNO_X11
-DXP_PC
-DHW_THREADS
-DINCLUDEDIR
=
\"
.
\"
...
...
soltools/testSHL/makefile.mk
Dosyayı görüntüle @
9a129a64
...
...
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
# $Revision: 1.
3
$
# $Revision: 1.
4
$
#
# last change: $Author: h
js $ $Date: 2002-01-08 12:07:30
$
# last change: $Author: h
r $ $Date: 2003-03-18 12:47:38
$
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
...
...
@@ -70,6 +70,9 @@ TARGETTYPE=CUI
.INCLUDE
:
$(PRJ)$/util$/makefile.pmk
.INCLUDE
:
settings.mk
UWINAPILIB
=
$
(
0
)
LIBSALCPPRT
=
$
(
0
)
# ------------------------------------------------------------------
APP1TARGET
=
$(TARGET)
...
...
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