mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
OpenEMM is a feature-rich web-based enterprise application for email marketing, newsletters and service mails (transaction mails and event or time triggered mails). OpenEMM offers a great user interface, sophisticated bounce management, link tracking, lots of graphical realtime statistics, a CMS module and a scripting feature to implement individual tasks. OpenEMM is the first open source application for e-mail marketing. Its code base has been developed since 1999 and is used - as part of the commercial software product E-Marketing Manager (EMM) - by companies like IBM, Daimler, Siemens and Deutsche Telekom. OpenEMM offers already more than 95% of the functionality of most commercial products and some features most commercial products do not offer right now (for example MySQL support and CMS functionality). WWW: http://www.openemm.org PR: 204000 Submitted by: horst leitenmueller <horst.leitenmueller@liwest.at>
20 lines
704 B
Text
20 lines
704 B
Text
--- backend/src/c/bav/GNUmakefile.orig 2015-02-20 13:02:20 UTC
|
|
+++ backend/src/c/bav/GNUmakefile
|
|
@@ -20,13 +20,13 @@
|
|
# Contributor(s): AGNITAS AG.
|
|
##################################################################################
|
|
|
|
-CC = gcc
|
|
-CFLAGS = -I../lib -I../../../contrib/include -pthread
|
|
-LDFLAGS = -L../lib -L../../../contrib/lib -pthread
|
|
+CC?= gcc
|
|
+CFLAGS = -I../lib -I/usr/local/lib -I/usr/local/include -pthread
|
|
+LDFLAGS = -L../lib -L/usr/local/lib -pthread
|
|
# required for Ubuntu 9.10 by user request
|
|
LDFLAGS := $(LDFLAGS) -L/usr/lib/libmilter
|
|
#
|
|
-LIBS = -lagn -lmilter -lsa
|
|
+LIBS = -lagn -lmilter -lex -lsa
|
|
SRCBAV = bav.c cfg.c
|
|
SRCWRP = bavwrap.c store.c
|
|
OBJBAV = $(SRCBAV:%.c=%.o)
|