diff options
| author | Noah Misch <noah@leadboat.com> | 2015-03-07 00:48:04 -0500 |
|---|---|---|
| committer | Noah Misch <noah@leadboat.com> | 2015-03-07 00:48:04 -0500 |
| commit | 9d265ae77af6f8d99bbd68b6ee644e7572b16754 (patch) | |
| tree | 59d8519ad73994e0e8550f82bded1aaa6b76375a /src/port/Makefile | |
| parent | 93751570731ba08dca4e791234984c3b1a15e885 (diff) | |
| download | postgresql-9d265ae77af6f8d99bbd68b6ee644e7572b16754.tar.gz | |
Build fls.o only when AC_REPLACE_FUNCS so dictates via $(LIBOBJS).
By building it unconditionally, libpgport inadvertently replaced any
libc version of the function. This is essentially a code cleanup; any
effect on performance is almost surely too small to notice.
Diffstat (limited to 'src/port/Makefile')
| -rw-r--r-- | src/port/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/Makefile b/src/port/Makefile index a862d5186c..05112eb6e6 100644 --- a/src/port/Makefile +++ b/src/port/Makefile @@ -30,7 +30,7 @@ include $(top_builddir)/src/Makefile.global override CPPFLAGS := -I$(top_builddir)/src/port -DFRONTEND $(CPPFLAGS) LIBS += $(PTHREAD_LIBS) -OBJS = $(LIBOBJS) chklocale.o dirmod.o erand48.o fls.o inet_net_ntop.o \ +OBJS = $(LIBOBJS) chklocale.o dirmod.o erand48.o inet_net_ntop.o \ noblock.o path.o pgcheckdir.o pgmkdirp.o pgsleep.o \ pgstrcasecmp.o pqsignal.o \ qsort.o qsort_arg.o quotes.o sprompt.o tar.o thread.o |
