Files
pkgsrc-ng/devel/idutils/patches/patch-ad
2013-09-26 17:14:40 +02:00

23 lines
1.0 KiB
Plaintext

$NetBSD: patch-ad,v 1.1.1.1 2006/08/05 19:53:26 wiz Exp $
--- libidu/scanners.c.orig 2006-02-15 01:29:03.000000000 -0500
+++ libidu/scanners.c 2006-08-03 15:57:57.169635912 -0400
@@ -77,11 +77,16 @@
{
{ "C", parse_args_c, get_token_c, help_me_c },
{ "C++", parse_args_c, get_token_c, help_me_cpp },
+ { "cpp", parse_args_c, get_token_c, help_me_cpp },
+ { "cc", parse_args_c, get_token_c, help_me_cpp },
{ "Java", parse_args_c, get_token_c, help_me_java },
{ "asm", parse_args_asm, get_token_asm, help_me_asm },
+ { "S", parse_args_asm, get_token_asm, help_me_asm },
+ { "s", parse_args_asm, get_token_asm, help_me_asm },
{ "text", parse_args_text, get_token_text, help_me_text },
{ "perl", parse_args_perl, get_token_perl, help_me_perl },
- { "lisp", parse_args_lisp, get_token_lisp, help_me_lisp }
+ { "lisp", parse_args_lisp, get_token_lisp, help_me_lisp },
+ { "make", parse_args_text, get_token_text, help_me_text },
};
struct language const *languages_N = &languages_0[cardinalityof (languages_0)];