summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1b94db4)
raw | patch | inline | side by side (parent: 1b94db4)
author | ishmal <ishmal@users.sourceforge.net> | |
Tue, 20 Feb 2007 21:08:02 +0000 (21:08 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Tue, 20 Feb 2007 21:08:02 +0000 (21:08 +0000) |
config.h.mingw | [deleted file] | patch | blob | history |
src/make.exclude | [deleted file] | patch | blob | history |
src/makedef.pl | [deleted file] | patch | blob | history |
diff --git a/config.h.mingw b/config.h.mingw
--- a/config.h.mingw
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef _CONFIG_H_
-#define _CONFIG_H_
-
-#ifndef WIN32
-#define WIN32
-#endif
-
-/**
- * This is for require-config.h, whose
- * purpose I cannot fathom.
- */
-#define PACKAGE_TARNAME
-
-/*######################################
-#### RESOURCE DIRECTORIES
-######################################*/
-
-#define INKSCAPE_DATADIR "."
-#define PACKAGE_LOCALE_DIR "locale"
-
-
-/*######################################
-#### OTHER DEFINITIONS
-######################################*/
-
-#define GETTEXT_PACKAGE "inkscape"
-
-#define PACKAGE_STRING VERSION
-
-#define HAVE_GETOPT_H 1
-#define HAVE_STRING_H 1
-#define HAVE_LIBINTL_H 1
-#define HAVE_MALLOC_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_SYS_STAT_H 1
-
-#define ENABLE_LCMS 1
-
-#define ENABLE_NLS 1
-#define HAVE_BIND_TEXTDOMAIN_CODESET 1
-
-/* keep binreloc off */
-#define BR_PTHREADS 0
-#undef ENABLE_BINRELOC
-
-/* CairoPDF options */
-#define HAVE_CAIRO_PDF 1
-#define PANGO_ENABLE_ENGINE 1
-#define RENDER_WITH_PANGO_CAIRO 1
-
-#define HAVE_GTK_WINDOW_FULLSCREEN 1
-
-#endif /* _CONFIG_H_ */
diff --git a/src/make.exclude b/src/make.exclude
--- 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
--- 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);
-}