Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
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
Container registry
Model registry
Operate
Environments
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
Jakob Huber
postgres-lambda-diff
Commits
fb45d4ae
Commit
fb45d4ae
authored
23 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Add win32 c++ files.
parent
79d78bb2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/interfaces/libpq++/libpq++dll.rc
+34
-0
34 additions, 0 deletions
src/interfaces/libpq++/libpq++dll.rc
src/interfaces/libpq++/win32.mak
+126
-0
126 additions, 0 deletions
src/interfaces/libpq++/win32.mak
with
160 additions
and
0 deletions
src/interfaces/libpq++/libpq++dll.rc
0 → 100644
+
34
−
0
View file @
fb45d4ae
#include <winver.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 7,1,2,0
PRODUCTVERSION 7,1,2,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0x0L
FILEOS 0x40004L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "Comments", "\0"
VALUE "CompanyName", " \0"
VALUE "FileDescription", "PostgreSQL C++ Access Library\0"
VALUE "FileVersion", "7, 1, 2, 0\0"
VALUE "InternalName", "libpq++\0"
VALUE "LegalCopyright", "Copyright 2000\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "libpq++.dll\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "PostgreSQL\0"
VALUE "ProductVersion", "7, 1, 2, 0\0"
VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
This diff is collapsed.
Click to expand it.
src/interfaces/libpq++/win32.mak
0 → 100644
+
126
−
0
View file @
fb45d4ae
# Makefile for Microsoft Visual C++ 6.0 (or compat)
# Will build a Win32 static library (non-debug) libpq++.lib
# and a Win32 dynamic library (non-debug) libpq++.dll with import library libpq++dll.lib
!IF
"$(OS)"
==
"Windows_NT"
NULL
=
!ELSE
NULL
=
nul
!ENDIF
.SUFFIXES
:
.cc
CPP
=
cl.exe
RSC
=
rc.exe
OUTDIR
=
.
\R
elease
INTDIR
=
.
\R
elease
# Begin Custom Macros
OutDir
=
.
\R
elease
# End Custom Macros
ALL
:
"$(OUTDIR)
\l
ibpq++.dll" "$(OUTDIR)
\l
ibpq++.lib"
CLEAN
:
-
@erase
"
$(
INTDIR
)
\p
gconnection.obj"
-
@erase
"
$(
INTDIR
)
\p
gcursordb.obj"
-
@erase
"
$(
INTDIR
)
\p
gdatabase.obj"
-
@erase
"
$(
INTDIR
)
\p
globject.obj"
-
@erase
"
$(
INTDIR
)
\p
gtransdb.obj"
-
@erase
"
$(
OUTDIR
)
\l
ibpq++.lib"
-
@erase
"
$(
OUTDIR
)
\l
ibpq++.dll"
-
@erase
"
$(
OUTDIR
)
\l
ibpq++dll.exp"
-
@erase
"
$(
OUTDIR
)
\l
ibpq++dll.lib"
-
@erase
"
$(
OUTDIR
)
\l
ibpq++dll.res"
-
@erase
"*.pch"
-
@erase
"
$(
OUTDIR
)
\l
ibpq++.pch"
"$(OUTDIR)"
:
if
not
exist
"$(OUTDIR)/$(NULL)"
mkdir
"$(OUTDIR)"
CPP_PROJ
=
/nologo /TP /MD /W3 /GX /O2 /I
"..
\.
.
\i
nclude"
/I
"..
\l
ibpq"
/D
"NDEBUG"
/D
\
"WIN32"
/D
"_WINDOWS"
/Fp
"
$(
INTDIR
)
\l
ibpq++.pch"
/YX
\
/Fo
"
$(
INTDIR
)
\\
"
/Fd
"
$(
INTDIR
)
\\
"
/FD /c /D
"HAVE_VSNPRINTF"
/D
"HAVE_STRDUP"
CPP_OBJS
=
.
\R
elease/
CPP_SBRS
=
.
LIB32
=
link.exe
-lib
LIB32_FLAGS
=
/nologo /out:
"
$(
OUTDIR
)
\l
ibpq++.lib"
LIB32_OBJS
=
\
"
$(
OUTDIR
)
\p
gconnection.obj"
\
"
$(
OUTDIR
)
\p
gcursordb.obj"
\
"
$(
OUTDIR
)
\p
gdatabase.obj"
\
"
$(
OUTDIR
)
\p
globject.obj"
\
"
$(
OUTDIR
)
\p
gtransdb.obj"
RSC_PROJ
=
/l 0x409 /fo
"
$(
INTDIR
)
\l
ibpq++dll.res"
LINK32
=
link.exe
LINK32_FLAGS
=
kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib
\
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib wsock32.lib
\
odbccp32.lib libpq.lib msvcrt.lib /nologo /subsystem:windows /dll /incremental:no
\
/pdb:
"
$(
OUTDIR
)
\l
ibpq++.pdb"
/machine:I386 /out:
"
$(
OUTDIR
)
\l
ibpq++.dll"
\
/implib:
"
$(
OUTDIR
)
\l
ibpq++dll.lib"
/libpath:
"..
\l
ibpq
\r
elease"
LINK32_OBJS
=
\
"
$(
OUTDIR
)
\p
gconnection.obj"
\
"
$(
OUTDIR
)
\p
gcursordb.obj"
\
"
$(
OUTDIR
)
\p
gdatabase.obj"
\
"
$(
OUTDIR
)
\p
globject.obj"
\
"
$(
OUTDIR
)
\p
gtransdb.obj"
\
"
$(
OUTDIR
)
\l
ibpq++dll.res"
"$(INTDIR)\libpq++dll.res"
:
"$(INTDIR)"
libpq++dll.rc
$(RSC)
$(RSC_PROJ)
libpq++dll.rc
"$(OUTDIR)\libpq++.lib"
:
"$(OUTDIR)"
$(LIB32_OBJS)
$(LIB32)
@<<
$(LIB32_FLAGS)
$(LIB32_OBJS)
<<
"$(OUTDIR)\libpq++.dll"
:
"$(OUTDIR)"
$(LINK32_OBJS)
$(LINK32)
@<<
$(LINK32_FLAGS)
$(LINK32_OBJS)
<<
.c{$(CPP_OBJS)}.obj
::
$(CPP)
@<<
$(CPP_PROJ)
$<
<<
.cpp{$(CPP_OBJS)}.obj
::
$(CPP)
@<<
$(CPP_PROJ)
$<
<<
.cc{$(CPP_OBJS)}.obj
::
$(CPP)
@<<
$(CPP_PROJ)
$<
<<
.cxx{$(CPP_OBJS)}.obj
::
$(CPP)
@<<
$(CPP_PROJ)
$<
<<
.c{$(CPP_SBRS)}.sbr
::
$(CPP)
@<<
$(CPP_PROJ)
$<
<<
.cpp{$(CPP_SBRS)}.sbr
::
$(CPP)
@<<
$(CPP_PROJ)
$<
<<
.cc{$(CPP_SBRS)}.sbr
::
$(CPP)
@<<
$(CPP_PROJ)
$<
<<
.cxx{$(CPP_SBRS)}.sbr
::
$(CPP)
@<<
$(CPP_PROJ)
$<
<<
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