Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libxslt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
libraries
libxslt
Commits
068aa48cb72d
Commit
068aa48cb72d
authored
21 years ago
by
Igor Zlatkovic
Browse files
Options
Downloads
Patches
Plain Diff
added cruntime option, contributed by Oliver Stoeneberg
parent
b3654de3bd24
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
win32/Makefile.msvc
+1
-1
1 addition, 1 deletion
win32/Makefile.msvc
win32/configure.js
+7
-0
7 additions, 0 deletions
win32/configure.js
with
8 additions
and
1 deletion
win32/Makefile.msvc
+
1
−
1
View file @
068aa48c
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
# The compiler and its options.
# The compiler and its options.
CC
=
cl.exe
CC
=
cl.exe
CFLAGS
=
/nologo /D
"WIN32"
/D
"_WINDOWS"
/D
"_MBCS"
/W3
/MD
/D
"_REENTRANT"
CFLAGS
=
/nologo /D
"WIN32"
/D
"_WINDOWS"
/D
"_MBCS"
/W3
$(
CRUNTIME
)
/D
"_REENTRANT"
CFLAGS
=
$(
CFLAGS
)
/I
$(
BASEDIR
)
/I
$(
XSLT_SRCDIR
)
/I
$(
INCPREFIX
)
CFLAGS
=
$(
CFLAGS
)
/I
$(
BASEDIR
)
/I
$(
XSLT_SRCDIR
)
/I
$(
INCPREFIX
)
# The linker and its options.
# The linker and its options.
...
...
This diff is collapsed.
Click to expand it.
win32/configure.js
+
7
−
0
View file @
068aa48c
...
@@ -48,6 +48,7 @@
...
@@ -48,6 +48,7 @@
/* Win32 build options. */
/* Win32 build options. */
var
dirSep
=
"
\\
"
;
var
dirSep
=
"
\\
"
;
var
compiler
=
"
msvc
"
;
var
compiler
=
"
msvc
"
;
var
cruntime
=
"
/MD
"
;
var
buildDebug
=
0
;
var
buildDebug
=
0
;
var
buildStatic
=
0
;
var
buildStatic
=
0
;
var
buildPrefix
=
"
.
"
;
var
buildPrefix
=
"
.
"
;
...
@@ -102,6 +103,7 @@
...
@@ -102,6 +103,7 @@
txt
+=
"
zlib: Use zlib library (
"
+
(
withZlib
?
"
yes
"
:
"
no
"
)
+
"
)
\n
"
;
txt
+=
"
zlib: Use zlib library (
"
+
(
withZlib
?
"
yes
"
:
"
no
"
)
+
"
)
\n
"
;
txt
+=
"
\n
Win32 build options, default value given in parentheses:
\n\n
"
;
txt
+=
"
\n
Win32 build options, default value given in parentheses:
\n\n
"
;
txt
+=
"
compiler: Compiler to be used [msvc|mingw] (
"
+
compiler
+
"
)
\n
"
;
txt
+=
"
compiler: Compiler to be used [msvc|mingw] (
"
+
compiler
+
"
)
\n
"
;
txt
+=
"
cruntime: C-runtime compiler option (only msvc) (
"
+
cruntime
+
"
)
\n
"
;
txt
+=
"
debug: Build unoptimised debug executables (
"
+
(
buildDebug
?
"
yes
"
:
"
no
"
)
+
"
)
\n
"
;
txt
+=
"
debug: Build unoptimised debug executables (
"
+
(
buildDebug
?
"
yes
"
:
"
no
"
)
+
"
)
\n
"
;
txt
+=
"
static: Link xsltproc statically to libxslt (
"
+
(
buildStatic
?
"
yes
"
:
"
no
"
)
+
"
)
\n
"
;
txt
+=
"
static: Link xsltproc statically to libxslt (
"
+
(
buildStatic
?
"
yes
"
:
"
no
"
)
+
"
)
\n
"
;
txt
+=
"
prefix: Base directory for the installation (
"
+
buildPrefix
+
"
)
\n
"
;
txt
+=
"
prefix: Base directory for the installation (
"
+
buildPrefix
+
"
)
\n
"
;
...
@@ -176,6 +178,7 @@
...
@@ -176,6 +178,7 @@
if
(
compiler
==
"
msvc
"
)
{
if
(
compiler
==
"
msvc
"
)
{
vf
.
WriteLine
(
"
INCLUDE=$(INCLUDE);
"
+
buildInclude
);
vf
.
WriteLine
(
"
INCLUDE=$(INCLUDE);
"
+
buildInclude
);
vf
.
WriteLine
(
"
LIB=$(LIB);
"
+
buildLib
);
vf
.
WriteLine
(
"
LIB=$(LIB);
"
+
buildLib
);
vf
.
WriteLine
(
"
CRUNTIME=
"
+
cruntime
);
}
else
if
(
compiler
==
"
mingw
"
)
{
}
else
if
(
compiler
==
"
mingw
"
)
{
vf
.
WriteLine
(
"
INCLUDE+=;
"
+
buildInclude
);
vf
.
WriteLine
(
"
INCLUDE+=;
"
+
buildInclude
);
vf
.
WriteLine
(
"
LIB+=;
"
+
buildLib
);
vf
.
WriteLine
(
"
LIB+=;
"
+
buildLib
);
...
@@ -323,6 +326,8 @@
...
@@ -323,6 +326,8 @@
withZlib
=
strToBool
(
arg
.
substring
(
opt
.
length
+
1
,
arg
.
length
));
withZlib
=
strToBool
(
arg
.
substring
(
opt
.
length
+
1
,
arg
.
length
));
else
if
(
opt
==
"
compiler
"
)
else
if
(
opt
==
"
compiler
"
)
compiler
=
arg
.
substring
(
opt
.
length
+
1
,
arg
.
length
);
compiler
=
arg
.
substring
(
opt
.
length
+
1
,
arg
.
length
);
else
if
(
opt
==
"
cruntime
"
)
cruntime
=
arg
.
substring
(
opt
.
length
+
1
,
arg
.
length
);
else
if
(
opt
==
"
static
"
)
else
if
(
opt
==
"
static
"
)
buildStatic
=
strToBool
(
arg
.
substring
(
opt
.
length
+
1
,
arg
.
length
));
buildStatic
=
strToBool
(
arg
.
substring
(
opt
.
length
+
1
,
arg
.
length
));
else
if
(
opt
==
"
prefix
"
)
else
if
(
opt
==
"
prefix
"
)
...
@@ -427,6 +432,8 @@
...
@@ -427,6 +432,8 @@
txtOut
+=
"
Win32 build configuration
\n
"
;
txtOut
+=
"
Win32 build configuration
\n
"
;
txtOut
+=
"
-------------------------
\n
"
;
txtOut
+=
"
-------------------------
\n
"
;
txtOut
+=
"
Compiler:
"
+
compiler
+
"
\n
"
;
txtOut
+=
"
Compiler:
"
+
compiler
+
"
\n
"
;
if
(
compiler
==
"
msvc
"
)
txtOut
+=
"
C-Runtime option:
"
+
cruntime
+
"
\n
"
;
txtOut
+=
"
Debug symbols:
"
+
boolToStr
(
buildDebug
)
+
"
\n
"
;
txtOut
+=
"
Debug symbols:
"
+
boolToStr
(
buildDebug
)
+
"
\n
"
;
txtOut
+=
"
Static xsltproc:
"
+
boolToStr
(
buildStatic
)
+
"
\n
"
;
txtOut
+=
"
Static xsltproc:
"
+
boolToStr
(
buildStatic
)
+
"
\n
"
;
txtOut
+=
"
Install prefix:
"
+
buildPrefix
+
"
\n
"
;
txtOut
+=
"
Install prefix:
"
+
buildPrefix
+
"
\n
"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment