Lines 289-294
Link Here
|
289 |
# usage inside the ports framework, and the latter are reserved for user- |
289 |
# usage inside the ports framework, and the latter are reserved for user- |
290 |
# settable options. (Setting USE_* in /etc/make.conf is always wrong). |
290 |
# settable options. (Setting USE_* in /etc/make.conf is always wrong). |
291 |
# |
291 |
# |
|
|
292 |
# WITH_DEBUG - If set, debugging flags are added to CFLAGS and the |
293 |
# binaries don't get stripped by INSTALL_PROGRAM. |
294 |
# Besides, individual ports might add their specific |
295 |
# to produce binaries for debugging purposes. |
296 |
# You can override the debug flags that are passed to |
297 |
# the compiler by setting DEBUG_FLAGS. It is set to |
298 |
# "-g" at default. |
299 |
# |
292 |
# USE_BZIP2 - If set, this port tarballs use bzip2, not gzip, for |
300 |
# USE_BZIP2 - If set, this port tarballs use bzip2, not gzip, for |
293 |
# compression. |
301 |
# compression. |
294 |
# USE_ZIP - If set, this port distfile uses zip, not tar w/[bg]zip |
302 |
# USE_ZIP - If set, this port distfile uses zip, not tar w/[bg]zip |
Lines 1509-1514
Link Here
|
1509 |
CFLAGS:= ${CFLAGS:C/${_CPUCFLAGS}//} |
1517 |
CFLAGS:= ${CFLAGS:C/${_CPUCFLAGS}//} |
1510 |
.endif |
1518 |
.endif |
1511 |
.endif |
1519 |
.endif |
|
|
1520 |
.endif |
1521 |
|
1522 |
.if defined(WITH_DEBUG) && ${WITH_DEBUG} != "no" |
1523 |
.undef STRIP |
1524 |
DEBUG_FLAGS?= -g |
1525 |
CFLAGS+= ${DEBUG_FLAGS} |
1512 |
.endif |
1526 |
.endif |
1513 |
|
1527 |
|
1514 |
.if defined(NOPORTDOCS) |
1528 |
.if defined(NOPORTDOCS) |