diff options
author | swills <swills@FreeBSD.org> | 2018-07-10 12:46:05 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2018-07-10 12:46:05 +0800 |
commit | f649254673a4c0711699748e7ee6f6e04bc5c9d2 (patch) | |
tree | fa4d28f386a938cb97151ca4144bcc79350ce8eb /www/mongrel2/files | |
parent | e6ff8c39e40ff6a4ce16d0070c684c2c41308e44 (diff) | |
download | freebsd-ports-gnome-f649254673a4c0711699748e7ee6f6e04bc5c9d2.tar.gz freebsd-ports-gnome-f649254673a4c0711699748e7ee6f6e04bc5c9d2.tar.zst freebsd-ports-gnome-f649254673a4c0711699748e7ee6f6e04bc5c9d2.zip |
www/mongrel2: Update to 1.12.0
PR: 229657
Submitted by: Neel Chauhan <neel@neelc.org> (maintainer)
Diffstat (limited to 'www/mongrel2/files')
-rw-r--r-- | www/mongrel2/files/patch-Makefile | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/www/mongrel2/files/patch-Makefile b/www/mongrel2/files/patch-Makefile deleted file mode 100644 index 232317205118..000000000000 --- a/www/mongrel2/files/patch-Makefile +++ /dev/null @@ -1,46 +0,0 @@ ---- Makefile.orig 2015-12-31 09:25:07 UTC -+++ Makefile -@@ -1,5 +1,6 @@ --CFLAGS=-g -O2 -Wall -Wextra -Isrc -Isrc/mbedtls/include -pthread -rdynamic -DNDEBUG $(OPTFLAGS) -D_FILE_OFFSET_BITS=64 --LIBS=-lzmq -ldl -lsqlite3 $(OPTLIBS) -+CFLAGS?=-g -O2 -+CFLAGS+=-Wall -Wextra -Isrc -Isrc/mbedtls/include -pthread -rdynamic -DNDEBUG $(OPTFLAGS) -D_FILE_OFFSET_BITS=64 -+LIBS=-L${LOCALBASE}/lib -lzmq -lsqlite3 $(OPTLIBS) - PREFIX?=/usr/local - - get_objs = $(addsuffix .o,$(basename $(wildcard $(1)))) -@@ -22,14 +23,14 @@ MAKEOPTS=OPTFLAGS="${NOEXTCFLAGS} ${OPTF - # upon every make invocation, and must be done before the SOURCES variable, above - # is lazily evaluated, or none of the src/mbedtls source files will be found - --ifdef $($(shell \ -- if git submodule status | grep '^-'; then \ -- echo "mbedtls; init and update git submodule" 1>&2; \ -- git submodule init && git submodule update; \ -- fi )) --endif -+#ifdef $($(shell \ -+# if git submodule status | grep '^-'; then \ -+# echo "mbedtls; init and update git submodule" 1>&2; \ -+# git submodule init && git submodule update; \ -+# fi )) -+#endif - --all: builddirs bin/mongrel2 tests m2sh procer -+all: builddirs bin/mongrel2 filters config_modules m2sh procer - - dev: CFLAGS=-g -Wall -Isrc -Wall -Wextra $(OPTFLAGS) -D_FILE_OFFSET_BITS=64 - dev: all -@@ -220,9 +221,9 @@ netbsd: LIBS=-lzmq -lsqlite3 $(OPTLIBS) - netbsd: dev - - --freebsd: OPTFLAGS += -I/usr/local/include --freebsd: OPTLIBS += -L/usr/local/lib -pthread --freebsd: LIBS=-lzmq -lsqlite3 $(OPTLIBS) -+freebsd: OPTFLAGS += -I$(PREFIX)/include -+freebsd: OPTLIBS += -L$(PREFIX)/lib -pthread -+freebsd: LIBS=-L$(PREFIX)/lib -lzmq -lsqlite3 $(OPTLIBS) - freebsd: all - - openbsd: OPTFLAGS += -I/usr/local/include |