mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-08 23:06:56 +00:00
26 lines
671 B
Plaintext
26 lines
671 B
Plaintext
|
--- Makefile.dist Thu Dec 19 21:58:15 1996
|
||
|
+++ Makefile Sun Apr 13 00:54:03 1997
|
||
|
@@ -1,5 +1,5 @@
|
||
|
# Choose your C compiler
|
||
|
-CC = gcc
|
||
|
+#CC = gcc
|
||
|
#CC = cc
|
||
|
|
||
|
# Possible options:
|
||
|
@@ -7,12 +7,12 @@
|
||
|
# TTCP : supports the T/TCP protocol (few systems support it)
|
||
|
# USE_SIGACTION: uses sigaction instead of signal. Necessary on pure BSD
|
||
|
# machines because we need to change the semantic of signals.
|
||
|
-OPTIONS = -DHTTP -DUSE_SIGACTION
|
||
|
+OPTIONS = -DHTTP -DUSE_SIGACTION -DTTCP
|
||
|
|
||
|
# Flags for gcc
|
||
|
-CFLAGS = -c -O3 $(OPTIONS) -Wall
|
||
|
+#CFLAGS = -c -O3 $(OPTIONS) -Wall
|
||
|
# Flags for cc
|
||
|
-#CFLAGS = -c -O $(OPTIONS)
|
||
|
+CFLAGS = -c -O $(OPTIONS)
|
||
|
|
||
|
# Flags for the linker
|
||
|
LD = $(CC)
|