Differences From Artifact [8247ae4962]:
- File Makefile — part of check-in [862bf6f56b] at 2014-08-31 18:07:10 on branch trunk — Updated to use a fallback mime.types file if specified one is unavailable (user: rkeene, size: 990) [annotate] [blame] [check-ins using]
To Artifact [debc382dde]:
- File Makefile — part of check-in [6e6baf524b] at 2016-02-22 21:02:29 on branch trunk — Completed support for killing idle connections (user: rkeene, size: 1001) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 |
CC = gcc CFLAGS = -Wall -Werror -W -pthread -O3 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE LDFLAGS = -pthread LIBS = -lpthread MIMETYPES = /etc/httpd/mime.types PREFIX = /usr/local prefix = $(PREFIX) bindir = $(prefix)/bin |
| |
1 2 3 4 5 6 7 8 9 |
CC = gcc
CFLAGS = -std=gnu11 -Wall -Werror -W -pthread -O3 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
LDFLAGS = -pthread
LIBS = -lpthread
MIMETYPES = /etc/httpd/mime.types
PREFIX = /usr/local
prefix = $(PREFIX)
bindir = $(prefix)/bin
|