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
7c43106d
Commit
7c43106d
authored
17 years ago
by
Magnus Hagander
Browse files
Options
Downloads
Patches
Plain Diff
Add win32error.c to libpq, needed to resolve _dosmaperr.
parent
35736874
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interfaces/libpq/Makefile
+4
-4
4 additions, 4 deletions
src/interfaces/libpq/Makefile
with
4 additions
and
4 deletions
src/interfaces/libpq/Makefile
+
4
−
4
View file @
7c43106d
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.15
6
2007/
07/24 09:00:27
mha Exp $
# $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.15
7
2007/
11/30 16:21:19
mha Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -34,7 +34,7 @@ LIBS := $(LIBS:-lpgport=)
...
@@ -34,7 +34,7 @@ LIBS := $(LIBS:-lpgport=)
OBJS
=
fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o
\
OBJS
=
fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o
\
fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o
\
fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o
\
md5.o ip.o wchar.o encnames.o noblock.o pgstrcasecmp.o thread.o
\
md5.o ip.o wchar.o encnames.o noblock.o pgstrcasecmp.o thread.o
\
$(
filter crypt.o getaddrinfo.o inet_aton.o open.o snprintf.o strerror.o strlcpy.o,
$(
LIBOBJS
))
$(
filter crypt.o getaddrinfo.o inet_aton.o open.o snprintf.o strerror.o strlcpy.o
win32error.o
,
$(
LIBOBJS
))
ifeq
($(PORTNAME), cygwin)
ifeq
($(PORTNAME), cygwin)
override
shlib
=
cyg
$(
NAME
)$(
DLSUFFIX
)
override
shlib
=
cyg
$(
NAME
)$(
DLSUFFIX
)
...
@@ -80,7 +80,7 @@ backend_src = $(top_srcdir)/src/backend
...
@@ -80,7 +80,7 @@ backend_src = $(top_srcdir)/src/backend
# For port modules, this only happens if configure decides the module
# For port modules, this only happens if configure decides the module
# is needed (see filter hack in OBJS, above).
# is needed (see filter hack in OBJS, above).
crypt.c getaddrinfo.c inet_aton.c noblock.c open.c pgstrcasecmp.c snprintf.c strerror.c strlcpy.c thread.c
:
% : $(top_srcdir)/src/port/%
crypt.c getaddrinfo.c inet_aton.c noblock.c open.c pgstrcasecmp.c snprintf.c strerror.c strlcpy.c thread.c
win32error.c
:
% : $(top_srcdir)/src/port/%
rm
-f
$@
&&
$(
LN_S
)
$<
.
rm
-f
$@
&&
$(
LN_S
)
$<
.
md5.c ip.c
:
% : $(backend_src)/libpq/%
md5.c ip.c
:
% : $(backend_src)/libpq/%
...
@@ -169,7 +169,7 @@ uninstall: uninstall-lib
...
@@ -169,7 +169,7 @@ uninstall: uninstall-lib
rm
-f
'
$(
DESTDIR
)$(
includedir
)
/libpq-fe.h'
'
$(
DESTDIR
)$(
includedir_internal
)
/libpq-int.h'
'
$(
DESTDIR
)$(
includedir_internal
)
/pqexpbuffer.h'
'
$(
DESTDIR
)$(
datadir
)
/pg_service.conf.sample'
rm
-f
'
$(
DESTDIR
)$(
includedir
)
/libpq-fe.h'
'
$(
DESTDIR
)$(
includedir_internal
)
/libpq-int.h'
'
$(
DESTDIR
)$(
includedir_internal
)
/pqexpbuffer.h'
'
$(
DESTDIR
)$(
datadir
)
/pg_service.conf.sample'
clean distclean
:
clean-lib
clean distclean
:
clean-lib
rm
-f
$(
OBJS
)
pg_config_paths.h crypt.c getaddrinfo.c inet_aton.c noblock.c open.c pgstrcasecmp.c snprintf.c strerror.c strlcpy.c thread.c md5.c ip.c encnames.c wchar.c pthread.h exports.list
rm
-f
$(
OBJS
)
pg_config_paths.h crypt.c getaddrinfo.c inet_aton.c noblock.c open.c pgstrcasecmp.c snprintf.c strerror.c strlcpy.c thread.c md5.c ip.c encnames.c wchar.c
win32error.c
pthread.h exports.list
# Might be left over from a Win32 client-only build
# Might be left over from a Win32 client-only build
rm
-f
pg_config_paths.h
rm
-f
pg_config_paths.h
...
...
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