mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
d6d69bcbdf
Changes: - eliminate some fixed limits on buffer sizes (prompted by FreeBSD port). - eliminate fixed limit on include nesting. - use configure check for mkstemp(), use that function in preference to mktemp() if a working version is found. - move strstr.c into strkey.c to avoid zero-length object - improve configure check for gcc version, from ncurses. - update config.guess, config.sub PR: 93780 Submitted by: Thomas Vogt <thomas (at) bsdunix.ch> (maintainer)
27 lines
564 B
Makefile
27 lines
564 B
Makefile
# ex:ts=8
|
|
# ports collection makefile for: cproto
|
|
# Date created: 2000 Feb. 13
|
|
# Whom: Abel Chow <abel_chow@yahoo.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cproto
|
|
PORTVERSION= 4.7e
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://invisible-island.net/cproto/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= thomas@bsdunix.ch
|
|
COMMENT= Generate C function prototypes and convert function definitions
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
MAN1= cproto.1
|
|
PLIST_FILES= bin/cproto
|
|
|
|
.include <bsd.port.mk>
|