Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
de1172fa
Commit
de1172fa
authored
Oct 02, 2007
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Default to thread safety on, and support more CPU options. Also
make sure that a CPU option is actually chosen. Hiroshi Saito
parent
5a0d31d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
src/interfaces/libpq/win32.mak
src/interfaces/libpq/win32.mak
+9
-2
No files found.
src/interfaces/libpq/win32.mak
View file @
de1172fa
...
@@ -6,17 +6,24 @@
...
@@ -6,17 +6,24 @@
# USE_KFW=1 will compile with kfw(kerberos for Windows)
# USE_KFW=1 will compile with kfw(kerberos for Windows)
# DEBUG=1 compiles with debugging symbols
# DEBUG=1 compiles with debugging symbols
# ENABLE_THREAD_SAFETY=1 compiles with threading enabled
# ENABLE_THREAD_SAFETY=1 compiles with threading enabled
ENABLE_THREAD_SAFETY
=
1
# CPU="i386" or CPU environment of nmake.exe (AMD64 or IA64)
# CPU="i386" or CPU environment of nmake.exe (AMD64 or IA64)
!IF
"$(CPU)"
==
""
!IF
(
"$(CPU)"
==
""
)||(
"$(CPU)"
==
"i386"
)
CPU
=
i386
CPU
=
i386
!MESSAGE
Building
the
Win32
static
library...
!MESSAGE
Building
the
Win32
static
library...
!MESSAGE
!MESSAGE
!ELSE
!ELSE
IF
(
"$(CPU)"
==
"IA64"
)||(
"$(CPU)"
==
"AMD64"
)
ADD_DEFINES
=
/D
"WIN64"
/Wp64 /GS
ADD_DEFINES
=
/D
"WIN64"
/Wp64 /GS
ADD_SECLIB
=
bufferoverflowU.lib
ADD_SECLIB
=
bufferoverflowU.lib
!MESSAGE
Building
the
Win64
static
library...
!MESSAGE
Building
the
Win64
static
library...
!MESSAGE
!MESSAGE
!ELSE
!MESSAGE
Please
check
a
CPU
=
$(CPU)
?
!MESSAGE
CPU
=
i386 or AMD64 or IA64
!ERROR
Make
aborted.
!ENDIF
!ENDIF
!IFDEF
DEBUG
!IFDEF
DEBUG
...
...
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