aboutsummaryrefslogtreecommitdiffstats
path: root/docs/analyse-irssi.pl
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2011-04-22 02:23:07 +0000
committerTom Feist <shabble@metavore.org>2011-04-22 02:23:07 +0000
commitd974da559601a1c95740a01d72ce2ee91008354e (patch)
tree69216dce0251d74065aa7ccf0aaff20cc82ac1dc /docs/analyse-irssi.pl
parentfeature-tests: looking at ways to read from a DATA fh, and redirect normal (diff)
downloadirssi-scripts-d974da559601a1c95740a01d72ce2ee91008354e.tar.gz
irssi-scripts-d974da559601a1c95740a01d72ce2ee91008354e.zip
removed docs/ from dev branch, since they're all in their own repo (well, wiki)
by now.
Diffstat (limited to 'docs/analyse-irssi.pl')
-rwxr-xr-xdocs/analyse-irssi.pl35
1 files changed, 0 insertions, 35 deletions
diff --git a/docs/analyse-irssi.pl b/docs/analyse-irssi.pl
deleted file mode 100755
index ceab06b..0000000
--- a/docs/analyse-irssi.pl
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/env perl
-
-use strict;
-use warnings;
-
-use C::Scan;
-use Data::Dumper;
-
-my $basedir = "/Users/tomfeist/sources/irssi/src";
-my $filename = $basedir . "/fe-text/gui-printtext.c";
-
-my $addflags = "-DUOFF_T_INT";
-
-my $c = C::Scan->new( 'filename' => $filename,
-# 'filename_filter' => $filter,b
- 'add_cppflags' => $addflags,
- );
-
-my @includes = (
- $basedir,
- $basedir . "/fe-text/",
- $basedir . "/fe-common/",
- $basedir . "/fe-common/core/",
-
-
- $basedir . "/core/",
- "/opt/local/include/glib-2.0",
- "/opt/local/lib/glib-2.0/include/",
-# "/opt/local/include/",
- );
-
-$c->set('includeDirs' => \@includes);
-
-my $fdec = $c->get('parsed_fdecls');
-print Dumper($fdec), $/;