summaryrefslogtreecommitdiff
path: root/devel/cproto (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update cproto to 4.7e.Thierry Thomas2006-03-282-13/+4
| | | | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=158349
* - Update to 4.7dEmanuel Haupt2005-12-083-26/+15
| | | | | | | | | | | | | - Unbreak - Remove files/patch-system.h - Use mkstemp() instead of mktemp() - Pass maintainership to submitter PR: 90102 Submitted by: Thomas Vogt <thomas@bsdunix.ch> Notes: svn path=/head/; revision=150665
* BROKEN: Size mismatchKris Kennaway2005-11-151-0/+2
| | | | Notes: svn path=/head/; revision=148315
* At Kris's request, back out the MACHINE_ARCH spelling correction untilDavid E. O'Brien2005-04-121-1/+1
| | | | | | | after 5.4-RELEASE. Notes: svn path=/head/; revision=133116
* Assist getting more ports working on AMD64 by obeying theDavid E. O'Brien2005-04-111-1/+1
| | | | | | | Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'. Notes: svn path=/head/; revision=132992
* - Update to 4.7cMichael Johnson2005-03-152-3/+4
| | | | | | | | PR: ports/78877 Submitted by: Ports Fury Notes: svn path=/head/; revision=131314
* - Update to version 4.7bKirill Ponomarev2004-03-104-9/+10
| | | | | | | | PR: ports/64042 Submitted by: Ports Fury Notes: svn path=/head/; revision=103527
* SIZEify.Trevor Johnson2004-01-291-0/+1
| | | | Notes: svn path=/head/; revision=99360
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75951
* URL fixes.Christian Weisgerber2003-02-051-1/+1
| | | | | | | | PR: 47848, 47853, 47855 Submitted by: tadalunch@s5.xrea.com Notes: svn path=/head/; revision=74893
* o Rollback PORTCOMMENT modifications while this feature's implementationMario Sergio Fujikawa Ferreira2002-11-102-2/+1
| | | | | | | | | | | is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence) Notes: svn path=/head/; revision=69808
* Use PORTCOMMENT in the Makefile, and whack the pkg-comment.Adam Weinberger2002-11-062-1/+2
| | | | | | | Approved by: pat Notes: svn path=/head/; revision=69612
* o Fix distfile unfetchable problemClive Lin2001-01-032-2/+2
| | | | | | | | | o Satisfy portlint PR: 23919 Notes: svn path=/head/; revision=36672
* return to ports at freebsd dot orgDavid E. O'Brien2000-12-291-1/+1
| | | | Notes: svn path=/head/; revision=36430
* Add $FreeBSD$'s which help me in problem reports.David E. O'Brien2000-11-221-0/+1
| | | | Notes: svn path=/head/; revision=35323
* Bump up the sizes of some things to match reality on Unix systems.David E. O'Brien2000-07-232-1/+23
| | | | | | | Submitted by: Bram Moolenaar <Bram@moolenaar.net> Notes: svn path=/head/; revision=30977
* PORTNAME/PORTVERSION updateMichael Haro2000-04-111-2/+2
| | | | Notes: svn path=/head/; revision=27452
* Cproto is a program that generates function prototypes and variableBill Fumerola2000-02-295-0/+40
declarations from C source code. It can also convert function definitions between the old style and the ANSI C style. This conversion overwrites the original files, so make a backup copy of your files in case something goes wrong. The program isn't confused by complex function definitions as much as other prototype generators because it uses a yacc generated parser. By ignoring all the input between braces, I avoided implementing the entire C language grammar. WWW: http://www.vex.net/~cthuang/cproto/ PR: ports/16704 Submitted by: Abel Chow <abel@Island.DHS.ORG> Notes: svn path=/head/; revision=26449