mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
76ef98be9f
fix time_t declarations. Submitted by: Pedro F. Giffuni <pfgiffun@bachue.usc.unal.edu.co>
23 lines
746 B
Plaintext
23 lines
746 B
Plaintext
*** src/Makefile.orig Wed Dec 15 14:55:32 1999
|
|
--- src/Makefile Wed Dec 15 14:56:48 1999
|
|
***************
|
|
*** 37,44 ****
|
|
#MANFILE = p2c.man.inst
|
|
|
|
# Compiler options
|
|
! CC = cc # you may wish to use gcc here instead
|
|
! OPT = # -O # uncomment this for optimization
|
|
DEB = # -g # uncomment this for debugging
|
|
DEFS = # place other -D types of things here
|
|
CFLAGS = $(OPT) $(DEB) $(DEFS)
|
|
--- 37,44 ----
|
|
#MANFILE = p2c.man.inst
|
|
|
|
# Compiler options
|
|
! CC ?= cc # you may wish to use gcc here instead
|
|
! OPT = $(CFLAGS) # uncomment this for optimization
|
|
DEB = # -g # uncomment this for debugging
|
|
DEFS = # place other -D types of things here
|
|
CFLAGS = $(OPT) $(DEB) $(DEFS)
|
|
|