]> granicus.if.org Git - postgresql/commitdiff
Fix another portability issue from commit 758ce9b77.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 26 Sep 2018 23:03:33 +0000 (19:03 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 26 Sep 2018 23:03:40 +0000 (19:03 -0400)
strerror.c now requires strlcpy() in some cases, and a couple of the
ecpg libraries did not have that at hand.  Pull it in from src/port/
following the usual recipe.  Per buildfarm.

src/interfaces/ecpg/compatlib/.gitignore
src/interfaces/ecpg/compatlib/Makefile
src/interfaces/ecpg/pgtypeslib/.gitignore
src/interfaces/ecpg/pgtypeslib/Makefile

index 8b9aa950afec1fee2239f3d6cc5e4edf434d5ff0..d81829ce5abd1af208b296e0040b6f22070a1f91 100644 (file)
@@ -3,4 +3,5 @@
 /exports.list
 /snprintf.c
 /strerror.c
+/strlcpy.c
 /strnlen.c
index e07a7fa8134a9f500bc0057aaaf2e41d8da02a84..f6a7f2178e31269182ae5c733fa0e9d82d5174c2 100644 (file)
@@ -32,7 +32,7 @@ SHLIB_EXPORTS = exports.txt
 LIBS := $(filter-out -lpgport, $(LIBS))
 
 OBJS= informix.o snprintf.o strerror.o \
-       $(filter strnlen.o, $(LIBOBJS)) $(WIN32RES)
+       $(filter strlcpy.o strnlen.o, $(LIBOBJS)) $(WIN32RES)
 
 PKG_CONFIG_REQUIRES_PRIVATE = libecpg libpgtypes
 
@@ -49,7 +49,7 @@ submake-pgtypeslib:
 # Shared library stuff
 include $(top_srcdir)/src/Makefile.shlib
 
-snprintf.c strerror.c strnlen.c: % : $(top_srcdir)/src/port/%
+snprintf.c strerror.c strlcpy.c strnlen.c: % : $(top_srcdir)/src/port/%
        rm -f $@ && $(LN_S) $< .
 
 install: all installdirs install-lib
@@ -59,6 +59,6 @@ installdirs: installdirs-lib
 uninstall: uninstall-lib
 
 clean distclean: clean-lib
-       rm -f $(OBJS) snprintf.c strerror.c strnlen.c
+       rm -f $(OBJS) snprintf.c strerror.c strlcpy.c strnlen.c
 
 maintainer-clean: distclean maintainer-clean-lib
index b3fae08d2f49230b64eec83a47f0be8e4c4a2761..333b2817f899d0590a463fc2b8d0f09057b5094e 100644 (file)
@@ -5,5 +5,6 @@
 /rint.c
 /snprintf.c
 /strerror.c
+/strlcpy.c
 /string.c
 /strnlen.c
index c4688e260aea53f2d916a8f7c5e5d7829a797903..874c1a9fad43e4cf1267aa777ff8c7fc9b25180f 100644 (file)
@@ -31,7 +31,7 @@ SHLIB_EXPORTS = exports.txt
 
 OBJS= numeric.o datetime.o common.o dt_common.o timestamp.o interval.o \
        pgstrcasecmp.o snprintf.o strerror.o \
-       $(filter rint.o strnlen.o, $(LIBOBJS)) \
+       $(filter rint.o strlcpy.o strnlen.o, $(LIBOBJS)) \
        string.o \
        $(WIN32RES)
 
@@ -45,7 +45,7 @@ include $(top_srcdir)/src/Makefile.shlib
 # necessarily use the same object files as the backend uses. Instead,
 # symlink the source files in here and build our own object file.
 
-pgstrcasecmp.c rint.c snprintf.c strerror.c strnlen.c: % : $(top_srcdir)/src/port/%
+pgstrcasecmp.c rint.c snprintf.c strerror.c strlcpy.c strnlen.c: % : $(top_srcdir)/src/port/%
        rm -f $@ && $(LN_S) $< .
 
 string.c: % : $(top_srcdir)/src/common/%
@@ -58,6 +58,6 @@ installdirs: installdirs-lib
 uninstall: uninstall-lib
 
 clean distclean: clean-lib
-       rm -f $(OBJS) pgstrcasecmp.c rint.c snprintf.c strerror.c strnlen.c string.c
+       rm -f $(OBJS) pgstrcasecmp.c rint.c snprintf.c strerror.c strlcpy.c strnlen.c string.c
 
 maintainer-clean: distclean maintainer-clean-lib