view python/Makefile.am @ 356:fec7f4fca713

From Jeffrey Morlan: pst_parse_block returns null upon finding a property of unrecognized type. Many PSTs contain messages with these - it should just ignore the property, not the whole message. Again, this causes missing emails.
author Carl Byington <carl@five-ten-sg.com>
date Wed, 06 Jul 2016 10:15:28 -0700
parents 5b3e7661adad
children
line wrap: on
line source

if PYTHON_INTERFACE

if PLATFORM_WIN32
    NO_UNDEFINED = -no-undefined
else
    NO_UNDEFINED =
endif

pythonlibdir            = $(libdir)/@PYTHON_VERSION@/site-packages
pythonlib_LTLIBRARIES   = _libpst.la
_libpst_la_LDFLAGS      = -module $(NO_UNDEFINED) -avoid-version
_libpst_la_SOURCES      = python-libpst.cpp
_libpst_la_LIBADD       = -l@BOOST_PYTHON_LIB@ ../src/libpst.la

# set the include path found by configure
INCLUDES= -I$(srcdir)/.. -I$(srcdir)/../src $(all_includes) -I$(PYTHON_INCLUDE_DIR)

endif