summaryrefslogtreecommitdiff
path: root/devel/cproto
AgeCommit message (Collapse)AuthorFilesLines
2021-10-26archivers: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes Could not be committed due to merge conflict: devel/py-traitlets/distinfo The following distfiles were unfetchable (note: some may be only fetched conditionally): ./devel/pvs/distinfo pvs-3.2-solaris.tgz ./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
2021-10-07devel: Remove SHA1 hashes for distfilesnia1-2/+1
2019-06-22Use https for all invisible-island.net HOMEPAGEs.nia1-2/+2
2019-02-15cproto: update to 4.7o.wiz2-8/+8
Provided by Thomas Dickey in private email. 2018/05/25 (4.7o) - correct logic in CF_YACC_ERROR macro for clang. 2018/05/24 (4.7n) - add check_errors rule to show error messages from test-cases - correct logic in YACC_HAS_YYTOKS case for isascii(). - updated/improved test-packages. - updated configure macros - update config.guess
2015-11-03Add SHA512 digests for distfiles for devel categoryagc1-1/+2
Issues found with existing distfiles: distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip distfiles/fortran-utils-1.1.tar.gz distfiles/ivykis-0.39.tar.gz distfiles/enum-1.11.tar.gz distfiles/pvs-3.2-libraries.tgz distfiles/pvs-3.2-linux.tgz distfiles/pvs-3.2-solaris.tgz distfiles/pvs-3.2-system.tgz No changes made to these distinfo files. Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-08-26Update to 4.7m. Changes:shattered2-6/+6
- add --with-man2html option to configure script - update config.guess, config.sub
2015-01-16Update to 4.7l, set LICENSE.wiz2-7/+7
2014/01/01 (4.7l) - add "docs" rule to makefile. - correct configure check for yyname vs yytname, broken by 4.7i changes - update config.guess 2013/10/25 (4.7k) - modify configure script, etc., to support cross-compiles, e.g., to MinGW. - updated configure macros - support --datarootdir option - various portability fixes for CF_XOPEN_SOURCE - add checks for clang - improve macros for checking for standard C compiler - modified macros to support third parameter of AC_DEFINE used by autoheader - update config.guess, config.sub 2011/01/02 (4.7j) - amend a check for function name to allow cases such as this: int (foo)(); which is distinct from a function-pointer, e.g., int (*foo)(); - modified configure script to deprecate ${name-value} in favor of standard ${name:-value}. - update config.guess, config.sub
2012-10-31Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2010-08-15Update cproto to 4.7i.obache3-23/+8
Based on PR#43763 by Kamel Derouiche, additionaly, some clean up. 2010/07/14 (4.7i) - escape dashes used in manpage, to work with groff (patch by Kenneth Pronovici) - add RPM and Debian build scripts, for testing. - add configure checks for ctags and lint program. - fix strict compiler warnings, e.g., using const. - support DESTDIR variable in makefile. - drop mkdirs.sh, use "mkdir -p" - several improvements to configure macros - quoted ifelse() params - distinguish Darwin 9 from previous releases - ignore stderr in check for gcc version, to work with c89 wrapper. - use consistent date and formatting in the CHANGES file, for processing contributor's information using a script. - update config.guess, config.sub 2009/09/3 (4.7h) - updated configure macros CF_ADD_CFLAGS CF_GCC_ATTRIBUTES CF_GCC_WARNINGS CF_XOPEN_SOURCE - update config.guess, config.sub 2008/11/19 (4.7g) - modify cpp command to redirect stderr to /dev/null if -q option is given, for consistency with the non-cpp mode (report by Nicolas Limare). https://bugs.launchpad.net/ubuntu/+source/cproto/+bug/275248 - add configure --disable-leaks option. - use configure macro CF_XOPEN_SOURCE macro to make mkstemp() prototyped on Linux. - remove isascii() usage. - code cleanup, to remove K&R relics. - update config.guess, config.sub
2008-10-25Add cproto-4.7f. TODO: integrate into pkgsrc compiler infrastructure?bjs5-0/+50
Cproto is a program that generates function prototypes and variable 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.