summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2007-02-20 21:08:02 +0000
committerishmal <ishmal@users.sourceforge.net>2007-02-20 21:08:02 +0000
commit3220540f2c14cd710fa0ec3a15702db23e599d05 (patch)
treea7e81cf865bc6c630ac427e65ad26accd6ad7648 /src
parentremove old *.mingw files (diff)
downloadinkscape-3220540f2c14cd710fa0ec3a15702db23e599d05.tar.gz
inkscape-3220540f2c14cd710fa0ec3a15702db23e599d05.zip
remove old *.mingw files
(bzr r2409)
Diffstat (limited to 'src')
-rw-r--r--src/make.exclude91
-rw-r--r--src/makedef.pl61
2 files changed, 0 insertions, 152 deletions
diff --git a/src/make.exclude b/src/make.exclude
deleted file mode 100644
index 8db9537b7..000000000
--- a/src/make.exclude
+++ /dev/null
@@ -1,91 +0,0 @@
-######################################################################
-# File: make.exclude
-#
-# This is a list of files to exclude from
-# building using the DepTool.
-# To use, edit this file, then run deptool
-#
-######################################################################
-
-
-ast
-bonobo
-
-dialogs/filedialog-win32.cpp
-display/testnr.cpp
-display/bezier-utils-test.cpp
-dom/work
-dom/jsdombind.cpp
-dom/odf/SvgOdg.cpp
-extension/api.cpp
-extension/dxf2svg
-extension/internal/gnome.cpp
-extension/script/bindtest.cpp
-extension/script/cpptest.cpp
-extension/plugin
-extract-uri-test.cpp
-helper/units-test.cpp
-inkview.cpp
-libnr/in-svg-plane-test.cpp
-libnr/nr-compose-reference.cpp
-libnr/nr-compose-test.cpp
-libnr/nr-matrix-test.cpp
-libnr/nr-point-fns-test.cpp
-libnr/nr-rotate-fns-test.cpp
-libnr/nr-rotate-test.cpp
-libnr/nr-scale-test.cpp
-libnr/nr-translate-test.cpp
-libnr/nr-types-test.cpp
-livarot/Path-test.cpp
-main.cpp
-mod360-test.cpp
-trace/potrace/potest.cpp
-round-test.cpp
-sp-gradient-test.cpp
-svg/ftos.cpp
-utest
-widgets/test-widgets.cpp
-winmain.cpp
-xml/quote-test.cpp
-xml/repr-action-test.cpp
-io/streamtest.cpp
-
-
-pedro/pedrogui.cpp
-pedro/pedrogui.h
-pedro/work
-
-###############################################
-# Bob:
-# For the moment, DO NOT remove these from svn
-# until those files compile everywhere
-###############################################
-ui/dialog/session-player.cpp
-ui/dialog/whiteboard-connect.cpp
-ui/dialog/whiteboard-sharewithchat.cpp
-ui/dialog/whiteboard-sharewithuser.cpp
-dialogs/whiteboard-connect-dialog.cpp
-dialogs/whiteboard-common-dialog.cpp
-dialogs/whiteboard-sharewithchat-dialog.cpp
-dialogs/whiteboard-sharewithuser-dialog.cpp
-
-###############################################
-# Uncomment the following to prevent building with Loudmouth
-###############################################
-jabber_whiteboard/node-tracker.cpp
-#jabber_whiteboard/inkboard-session.cpp
-#jabber_whiteboard/inkboard-session.h
-#jabber_whiteboard/message-verifier.h
-#jabber_whiteboard/node-tracker.h
-#jabber_whiteboard/node-utilities.h
-#jabber_whiteboard/inkboard-session.cpp
-jabber_whiteboard/node-utilities.cpp
-
-###############################################
-# Various test harnesses in removeoverlap
-###############################################
-removeoverlap/placement_SolveVPSC.cpp
-removeoverlap/placement_SolveVPSC.h
-removeoverlap/test.cpp
-removeoverlap/remove_rectangle_overlap-test.cpp
-removeoverlap/remove_rectangle_overlap-test.h
diff --git a/src/makedef.pl b/src/makedef.pl
deleted file mode 100644
index 42ae3b08a..000000000
--- a/src/makedef.pl
+++ /dev/null
@@ -1,61 +0,0 @@
-#! perl
-
-&doMakeDef();
-exit(0);
-
-sub doMakeDef()
-{
- print "####### Generating 'inkscape.def' #######\n";
-
- my $nmlines = (); #store lines read in hash, to remove dupes
- my @lines; #output lines
- my $line; #single line of input
- my $datestr; #current date
- local(*PIPE); #output of the 'nm' command
- local(*OUTFILE); #output file - inkscape.def
-
- open (PIPE, "nm libinkscape.a |");
- while(<PIPE>)
- {
- if ($_ =~ /\./)
- {
- next;
- }
- elsif ($_ =~ /T _/)
- {
- $line = $_;
- $line =~ s/.* T _//;
- $nmlines->{$line} = 1;
- }
- elsif ($_ =~ /B _/)
- {
- $line = $_;
- $line =~ s/.* B _//;
- $nmlines->{$line} = 1;
- }
- }
- close (PIPE);
-
- foreach (keys(%{$nmlines}))
- {
- push @lines, $_;
- }
-
- @lines = sort(@lines);
-
- $datestr = gmtime();
- open (OUTFILE, ">inkscape.def");
- print OUTFILE ";########################################################\n";
- print OUTFILE ";## File: inkscape.def\n";
- print OUTFILE ";## Purpose: Used by dllwrap to make inkscape.dll\n";
- print OUTFILE ";## Generated by makedef.pl at :$datestr\n";
- print OUTFILE ";########################################################\n\n";
- print OUTFILE "LIBRARY\tinkscape.dll\n";
- print OUTFILE "EXPORTS\n";
- foreach (<@lines>)
- {
- # print $_, "\n";
- print OUTFILE " ", $_, "\n";
- }
- close (OUTFILE);
-}