diff options
| author | Stefano Facchini <stefano.facchini@gmail.com> | 2017-09-25 12:58:09 +0000 |
|---|---|---|
| committer | Stefano Facchini <stefano.facchini@gmail.com> | 2017-10-19 17:22:34 +0000 |
| commit | b5a5c57a386ed2ceb18609234d0107047177965d (patch) | |
| tree | 0a2a209894c585fc52b1d4996663719ee09599a4 | |
| parent | Implement rendering for SVG 2 text with 'inline-size'. Work partially from Al... (diff) | |
| download | inkscape-b5a5c57a386ed2ceb18609234d0107047177965d.tar.gz inkscape-b5a5c57a386ed2ceb18609234d0107047177965d.zip | |
Remove unused script
| -rwxr-xr-x | src/check-header-compile.in | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/check-header-compile.in b/src/check-header-compile.in deleted file mode 100755 index 2295dcf91..000000000 --- a/src/check-header-compile.in +++ /dev/null @@ -1,47 +0,0 @@ -#! /bin/sh -# Check that each .h file has all the includes it needs. - -# Probably requires gnu find (for -printf '%P\n'). - -# This script hereby placed into the public domain. - -set -e -mydir=`dirname "$0"` -cd "$mydir" -srcdir="@srcdir@" -CXX="@CXX@" -INCLUDES="@GNOME_VFS_CFLAGS@ @POPPLER_GLIB_CFLAGS@ @INKSCAPE_CFLAGS@" -OBJEXT="@OBJEXT@" -config_h_dir=.. - -check_compile () { - (echo "#include <config.h>"; echo "#include <$1>"; echo "int header_tst_dummy;") > header-tst.cpp - $CXX -c -I. -I"$srcdir" -I$config_h_dir $INCLUDES header-tst.cpp -} - -if [ $# = 0 ]; then - for i in `find "$srcdir" \ - -name bonobo -prune \ - -o -name dom -prune \ - -o -name ecma -prune \ - -o -name render -prune \ - -o -name xpath -prune \ - -o -name '*.h' \ - \! -name gnome.h \! -name nr-type-gnome.h \! -name Livarot.h \! -name radial.h \ - \! -name '*-test.h' \ - \! -name test-helpers.h \ - \! -name PylogFormatter.h \ - \! -name TRPIFormatter.h \ - \! -name win32.h \ - \! -name '*-w32.h' \ - \! -name '*-win32.h' \ - -printf '%P\n'` - do - check_compile "$i" - done -else - for i in "$@"; do - check_compile "$i" - done -fi -rm header-tst.cpp header-tst.$OBJEXT |
