mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-16 11:26:59 +08:00
This removes all the various workarounds for avoiding compiler warnings with Flex 2.5.35. Several recent patches have added additional warnings that would either need to be fixed along the lines of the existing workarounds, or we decide to no longer care about this, which we do here. Flex 2.5.35 is extremely outdated, and you can't even download it anymore from any of the Flex project sites, so it's nearly impossible to support. After this, using Flex 2.5.35 will still work, but the generated code will produce numerous compiler warnings. Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://www.postgresql.org/message-id/1a204ccd-7ae6-478c-a431-407b5c48ccc6@eisentraut.org
68 lines
1.4 KiB
Makefile
68 lines
1.4 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/fe_utils
|
|
#
|
|
# This makefile generates a static library, libpgfeutils.a,
|
|
# for use by client applications
|
|
#
|
|
# Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# IDENTIFICATION
|
|
# src/fe_utils/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/fe_utils
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
override CPPFLAGS := -DFRONTEND -I$(libpq_srcdir) $(CPPFLAGS)
|
|
|
|
OBJS = \
|
|
archive.o \
|
|
astreamer_file.o \
|
|
astreamer_gzip.o \
|
|
astreamer_lz4.o \
|
|
astreamer_tar.o \
|
|
astreamer_zstd.o \
|
|
cancel.o \
|
|
conditional.o \
|
|
connect_utils.o \
|
|
mbprint.o \
|
|
option_utils.o \
|
|
parallel_slot.o \
|
|
print.o \
|
|
psqlscan.o \
|
|
query_utils.o \
|
|
recovery_gen.o \
|
|
simple_list.o \
|
|
string_utils.o
|
|
|
|
ifeq ($(PORTNAME), win32)
|
|
override CPPFLAGS += -DFD_SETSIZE=1024
|
|
endif
|
|
|
|
all: libpgfeutils.a
|
|
|
|
libpgfeutils.a: $(OBJS)
|
|
rm -f $@
|
|
$(AR) $(AROPT) $@ $^
|
|
|
|
psqlscan.c: FLEXFLAGS = -Cfe -p -p
|
|
psqlscan.c: FLEX_NO_BACKUP=yes
|
|
|
|
# libpgfeutils could be useful to contrib, so install it
|
|
install: all installdirs
|
|
$(INSTALL_STLIB) libpgfeutils.a '$(DESTDIR)$(libdir)/libpgfeutils.a'
|
|
|
|
installdirs:
|
|
$(MKDIR_P) '$(DESTDIR)$(libdir)'
|
|
|
|
uninstall:
|
|
rm -f '$(DESTDIR)$(libdir)/libpgfeutils.a'
|
|
|
|
clean distclean:
|
|
rm -f libpgfeutils.a $(OBJS) lex.backup
|
|
rm -f psqlscan.c
|