Skip to content
Snippets Groups Projects
  • Tom Lane's avatar
    f9e9da66
    Fix a few single-file (MODULES, not MODULE_big) contrib makefiles that were · f9e9da66
    Tom Lane authored
    supposing that they should set SHLIB_LINK rather than LDFLAGS_SL.  Since these
    don't go through Makefile.shlib that was a no-op on most platforms.  Also
    regularize the few platform-specific Makefiles that did pay attention to
    SHLIB_LINK: it seems that the real value of that is to pull in BE_DLLLIBS,
    so do that instead.  Per buildfarm failures on cygwin.
    f9e9da66
    History
    Fix a few single-file (MODULES, not MODULE_big) contrib makefiles that were
    Tom Lane authored
    supposing that they should set SHLIB_LINK rather than LDFLAGS_SL.  Since these
    don't go through Makefile.shlib that was a no-op on most platforms.  Also
    regularize the few platform-specific Makefiles that did pay attention to
    SHLIB_LINK: it seems that the real value of that is to pull in BE_DLLLIBS,
    so do that instead.  Per buildfarm failures on cygwin.
Makefile 656 B
# $PostgreSQL: pgsql/contrib/spi/Makefile,v 1.29 2010/07/05 23:15:56 tgl Exp $

MODULES = autoinc insert_username moddatetime refint timetravel
DATA_built = $(addsuffix .sql, $(MODULES))
DOCS = $(addsuffix .example, $(MODULES))

# this is needed for the regression tests;
# comment out if you want a quieter refint package for other uses
PG_CPPFLAGS = -DREFINT_VERBOSE

LDFLAGS_SL += -L$(top_builddir)/src/port -lpgport

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/spi
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif