debian/0000775000000000000000000000000012311671465007176 5ustar debian/ggcov.docs0000664000000000000000000000000011773551315011145 0ustar debian/source/0000775000000000000000000000000011555131401010464 5ustar debian/source/format0000664000000000000000000000001411374737375011717 0ustar 3.0 (quilt) debian/copyright0000664000000000000000000000061411374737375011145 0ustar This package was debianized by Alastair McKinstry on Tue, 2 June 2004 23:00:00 +0100. It was downloaded from http://www.alphalink.com.au/~gnb/ggcov/ Upstream Author: Greg Banks Copyright (C) 2008 Greg Banks. It may be redistributed under the terms of the GNU GPL, Version 2 found on Debian systems in the file /usr/share/common-licenses/GPL . debian/README0000664000000000000000000000710111453570563010060 0ustar This is a simple GUI for browsing C test coverage data gathered by programs instrumented with "gcc -fprofile-arcs -ftest-coverage". Hence it's a graphical replacement for the "gcov" program that comes with gcc. I wrote this program because I was sick of crappy text mode coverage results, having been spoilt some years earlier by the PureCoverage GUI. To use ggcov, invoke it with one or more .c filenames. It will find and read the .bb, .bbg, and .da files in the same directory as the .c files, and display data for you. You can also invoke ggcov with a directory name; ggcov will apply itself to all the .c files in that directory. Finally, you can mix multiple directories and .c file names. GGcov has three windows: Summary presents a test coverage summary at one of four scopes: overall, file, function, or range of lines in a file. Note that the range of lines can span function boundaries. Function List presents a list of all functions in the covered files, with their coverage statistics. The list can be sorted by line coverage, call coverage and branch coverage. Source presents the source of a covered file, annotated with source line numbers and source line execution counts. Lines can be colour coded according to whether they have been covered. Limitations ----------- The gcc+ggcov system has several limitations and gotches of which you should be aware. * Gcc will add enough instrumentation to .bbg files for ggcov to tell that certain arcs between basic blocks are actually calls to other functions, but there isn't enough information to tell *which* other functions are being called, even when this is known at compile time. Ggcov attempts to extract this information after the fact by scanning the code in object files and correlating that with the .bbg files. This process can fail for several reasons, which will result in the data in the Call Graph and Call Butterfly windows being absent or incomplete, and the data in the Calls window not having the function names. Reasons for the include: x gcc 2.96 on RedHat 7.3 is buggy and doesn't write the necessary information to the .bbg file (note that gcov on RH 7.3 cannot correctly report call stats either). x the object files are missing x the object files are for an architecture which is not yet supported by ggcov for the purposes of this feature (at time of writing, only x86 on Linux is supported). x calls through function pointers or C++ virtual functions are not known at compile time and cannot be calculated using the data available to ggcov. * Ggcov does not handle non-local flow transfer (such as setjmp() or C++ exceptions) well. With the compilers I've been able to test, neither does gcov. * Code which puts multiple basic blocks on a line may not give the line coverage numbers you expect. In particular, when an entire loop is squashed into a single line, ggcov will report the number of times the loop ran plus one for each time the loop started, instead of the number of times the line as a whole ran. * The Call Graph window uses a very primitive graph layout algorithm and may well loop or crash when given used on some programs. * The .da file is written by the instrumented program at two times only: just before fork() and just after exit(). If your instrumented program does neither (e.g. a long running server or a program that terminates on a signal), it's counts will be lost. Greg Banks 2 July 2003. debian/changelog0000664000000000000000000001652512311671456011061 0ustar ggcov (0.8.4-3ubuntu1) trusty; urgency=medium * May not build-depend on db6.0 due to license incompatibility. -- Dimitri John Ledkov Mon, 17 Mar 2014 22:11:58 +0000 ggcov (0.8.4-3) unstable; urgency=medium * Standards-Version: 3.9.5 * Add watch file. * Now use DH_COMPAT=9. * Support c++ extension. Closes: #684401 * Now depend on libdb-dev | libdb6.0-dev -- Alastair McKinstry Sun, 08 Dec 2013 09:35:36 +0000 ggcov (0.8.4-2) unstable; urgency=low * Disable tests for amd64, as per Ubuntu. Closes: #669099. * Depend on gcc-4.6, add note in README.Debian that this release does not work on gcc-4.7. -- Alastair McKinstry Sat, 30 Jun 2012 11:14:12 +0100 ggcov (0.8.4-1) unstable; urgency=low * New upstream release. Closes: #654256, #662713. * Move to Standards-Version: 3.9.3 * Enable archs amd64, kfreebsd-amd64. Closes: #662714. * Tests: re-enable test 14, now test 029 fails (minor). bypassed. * Move to DH_COMPAT=8 * Don't ship .la files in ggcov. -- Alastair McKinstry Mon, 12 Mar 2012 10:17:52 +0000 ggcov (0.8.3-1) unstable; urgency=low * New upstream release. Closes: #617479. * Disable test 028; seems broken in source. * Move to Standards-Version: 3.9.2 -- Alastair McKinstry Mon, 25 Apr 2011 00:31:39 +0100 ggcov (0.8.2-2) unstable; urgency=low * Fix FTBFS with binutils-gold. Patch thanks to Bhavani Shankar.R . Closes: #608735. * Move to Standards-Version: 3.9.1. -- Alastair McKinstry Mon, 03 Jan 2011 20:15:43 +0000 ggcov (0.8.2-1) unstable; urgency=low * New upstream release. Obsolete patches: gcc44_fixes.patch, compile_fixes.patch, ignore_tests.patch * Remove bashisms from debian/rules. Closes: #581477. * Standards-Version: 3.8.4; no changes required. -- Alastair McKinstry Wed, 19 May 2010 10:11:49 +0100 ggcov (0.8.1-1) unstable; urgency=low * New upstream release. Closes: #559737, #522432. * Move to debhelper v7, quilt format 3.0, Standards-Version 3.8.3 * Added patches for gcc-4.4 support, build fixes. * Enabled 'make check': - test015 hangs under make, but runs in runtest. why ? - test018 disabled as uses missing gcc functionality. -- Alastair McKinstry Fri, 08 Jan 2010 21:51:01 +0000 ggcov (0.8-8) unstable; urgency=low * Loosen depenency libdb-dev (>= 4.6.19-1) to (>= 4.6.19), to help backports. * Remove duplicate Section: and Priority: elements from debian/control. * Install php stuff into /usr/share/ggcov (wasn't being installed properly). * Patch added to add -Wl,--as-needed to link line, remove unnecessary linkages. -- Alastair McKinstry Tue, 28 Apr 2009 21:39:32 +0100 ggcov (0.8-7) unstable; urgency=low * Move to Standards-Version: 3.8.1.0; no changes required. * Rebuild for latest bdb. Closes: #5127280. * Added Homepage: to debian/control. -- Alastair McKinstry Tue, 31 Mar 2009 00:17:12 +0100 ggcov (0.8-6) unstable; urgency=low * Add hurd-i386 to the architectures list. Closes: #482838. * Move to Policy : 3.7.3. No changes required. * move to debian/compat = 5. No changes required. * Fix copyright warning to placate lintian. * Move ggcov.desktop to /usr/share/applications from /usr/share/gnome/apps, as recommended by lintian. -- Alastair McKinstry Tue, 27 May 2008 15:43:33 +0100 ggcov (0.8-5) unstable; urgency=low * Rebuild with clean environment. Closes: #446340. -- Alastair McKinstry Mon, 22 Oct 2007 14:37:25 +0100 ggcov (0.8-4) unstable; urgency=medium * Rebuild against latest binutils-dev. Closes: #429430. -- Alastair McKinstry Mon, 18 Jun 2007 22:25:50 +0100 ggcov (0.8-3) unstable; urgency=low * Build against latest Berkeley DB, 4.5. Closes: #421936. * Patch from Peter Schueller to work with Debian gcc-3.4. Closes: #407889. -- Alastair McKinstry Wed, 2 May 2007 22:58:11 +0100 ggcov (0.8-2) unstable; urgency=medium * Fix FTBFS: estring.C needs va_copy(), not assignment for va_list structures. Closes: #399385. -- Alastair McKinstry Mon, 20 Nov 2006 20:47:43 +0000 ggcov (0.8-1) unstable; urgency=low * New upstream release. Closes: #377224. - Fixes build issue that meant libglade was linking incorrectly; Closes: #376289. * Acknowledge NMU with thanks. Closes: #375164. * Move to Standards-Version: 3.7.2. No changes required. -- Alastair McKinstry Mon, 10 Jul 2006 20:20:04 +0100 ggcov (0.6-4.1) unstable; urgency=high * Non-maintainer upload. * 30_implicit_friend_declaration.patch: Add explicit prototypes for the cov_add_* functions, as a friend declaration no longer implicitly declares a prototype for the function; fixes FTBFS with GCC 4.1. (Closes: #373837) -- Steinar H. Gunderson Fri, 23 Jun 2006 21:49:44 +0200 ggcov (0.6-4) unstable; urgency=low * Use dh_gconf to place gconf schema in the right place. (debhelper >= 4.2.13 to provide this). -- Alastair McKinstry Thu, 17 Nov 2005 20:57:58 +0000 ggcov (0.6-3) unstable; urgency=low * Build against latest binutils. Closes: #331283. -- Alastair McKinstry Mon, 3 Oct 2005 20:30:35 +0100 ggcov (0.6-2) unstable; urgency=low * Include Build-Depends: libdb4.2-dev. Closes: #302612. * Move non-standard directory /usr/var/ggcov to /var/cache/ggcov -- Alastair McKinstry Sun, 31 Jul 2005 09:16:18 +0100 ggcov (0.6-1) unstable; urgency=low * New upstream version. * Move to Standards-Version: 3.6.2. No changes required. * Build against g++ 4.0 -- Alastair McKinstry Mon, 25 Jul 2005 22:02:31 +0100 ggcov (0.3-3) unstable; urgency=low * Build on kfreebsd-i386. Closes: #314459. -- Alastair McKinstry Sat, 18 Jun 2005 13:35:31 +0100 ggcov (0.3-2) unstable; urgency=low * Build against sid in the correct environment. Closes: #275737. -- Alastair McKinstry Thu, 4 Nov 2004 20:50:14 +0000 ggcov (0.3-1) unstable; urgency=low * New upstream release. Closes: #276519. -- Alastair McKinstry Tue, 2 Nov 2004 06:47:36 +0000 ggcov (0.2.2-6) unstable; urgency=low * Build against sid, not experimental. Closes: #275737. -- Alastair McKinstry Sun, 10 Oct 2004 17:16:31 +0100 ggcov (0.2.2-5) unstable; urgency=low * Build fix for gcc-3.4 from Andreas Jochens. Closes: #273614. -- Alastair McKinstry Wed, 6 Oct 2004 20:35:46 +0100 ggcov (0.2.2-4) unstable; urgency=low * Set Architecture: i386 until properly tested. * Swap binary-arch: and binary-indep: in rules: Closes: #269537. -- Alastair McKinstry Thu, 2 Sep 2004 20:26:59 +0100 ggcov (0.2.2-2) unstable; urgency=low * Fix for segfault when given a bad bbg file. * Build against sid, not experimental. Closes: #255278. -- Alastair McKinstry Sun, 20 Jun 2004 20:18:29 +0100 ggcov (0.2.2-1) unstable; urgency=low * Initial Release. Closes: #203055, #206723. -- Alastair McKinstry Wed, 2 June 2004 21:57:53 +0100 debian/control0000664000000000000000000000143312311671463010600 0ustar Source: ggcov Section: devel Priority: optional Build-Depends: debhelper (>= 9), libglade2-dev, libgnomeui-dev, libpopt-dev, binutils-dev, libdb-dev (>= 4.6.19) | libdb6.0-dev Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Alastair McKinstry Standards-Version: 3.9.5 Homepage: http://ggcov.sourceforge.net/ Package: ggcov Architecture: i386 kfreebsd-i386 hurd-i386 amd64 kfreebsd-amd64 Depends: ${shlibs:Depends}, ${misc:Depends}, gcc-4.6 Description: Graphical tool for displaying gcov test coverage data This is a simple GUI for browsing C test coverage data gathered by programs instrumented with "gcc -fprofile-arcs -ftest-coverage". Hence it's a graphical replacement for the "gcov" program that comes with gcc. debian/rules0000775000000000000000000000123512251037353010252 0ustar #!/usr/bin/make -f # -*- makefile -*- # # debian/rules file for package 'gcov' # export DH_VERBOSE=1 # The magic rule ... %: dh $@ override_dh_auto_configure: dh_auto_configure -- --localstatedir=/var/cache override_dh_auto_clean: # Some cruft make distclean || echo "Clean" rm -rf test/test014/bar test/test014/baz test/test018/a.out test/test018/foo config.log rm -rf test/test029 find test -name '*.gcno' -exec rm {} \; find test -name '*.gcda' -exec rm {} \; find test -name '*.o' -exec rm {} \; find test -name '*.exe' -exec rm {} \; dh_clean override_dh_auto_install: dh_auto_install find debian -name '*.la' -delete override_dh_auto_test: debian/watch0000664000000000000000000000034312251036653010224 0ustar version=3 opts=dversionmangle=s/\+dfsg\d*$//,uversionmangle=s/_/./g;s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha|b|a)[\-\.]?\d*)$/$1~$2/ \ http://qa.debian.org/watch/sf.php/ggcov/ggcov-(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz)) debian/patches/0000775000000000000000000000000012251354550010621 5ustar debian/patches/compilers.patch0000664000000000000000000000145212251037726013644 0ustar Author: Alastair McKinstry Description: Support for newer compilers Last-Updated: 2013-12-08 Forwarded: no Index: ggcov-0.8.4/src/cov_file.C =================================================================== --- ggcov-0.8.4.orig/src/cov_file.C 2011-07-03 12:28:32.000000000 +0100 +++ ggcov-0.8.4/src/cov_file.C 2013-12-08 09:35:21.000000000 +0000 @@ -1003,7 +1003,10 @@ case _NEW_VERSION(4,4,'*'): case _NEW_VERSION(4,5,'*'): case _NEW_VERSION(4,6,'p'): /* pre-release in Debian Wheezy */ - case _NEW_VERSION(4,6,'*'): + case _NEW_VERSION(4,6,'*'): /* Debian */ + case _NEW_VERSION(4,7,'*'): + case _NEW_VERSION(4,8,'*'): + case _NEW_VERSION(4,9,'*'): case _NEW_VERSION(4,6,'U'): /* Ubuntu Oneiric */ features_ |= FF_DA0TAG; /* fall through */ debian/patches/binutils-gold.patch0000664000000000000000000000256411510427153014422 0ustar Author: Bhavani Shankar.R bhavi@ubuntu.com Description: Fix FTBFS with binutils-gold, particularly at Ubuntu. Forwarded: no Last-UpdatedL 2011-01-03 Bug-Debian: http://bugs.debian.org/608735 Index: ggcov-0.8.2/src/Makefile.am =================================================================== --- ggcov-0.8.2.orig/src/Makefile.am 2011-01-03 20:12:23.000000000 +0000 +++ ggcov-0.8.2/src/Makefile.am 2011-01-03 20:12:54.000000000 +0000 @@ -97,7 +97,7 @@ -DLIBDIR="\"$(libdir)\"" -DSYSCONFDIR="\"$(sysconfdir)\"" \ -DDEBUG=$(DEBUG) -DUI_DEBUG=$(UI_DEBUG) \ $(CPU_DEFINES) $(OS_DEFINES) -ggcov_LDADD= libcov.a libcommon.a $(GGCOV_GUI_LIBS) +ggcov_LDADD= libcov.a libcommon.a $(GGCOV_GUI_LIBS) -lX11 CLI_LIBS= libcov.a libcommon.a $(GGCOV_CLI_LIBS) tggcov_SOURCES= tggcov.c \ Index: ggcov-0.8.2/src/Makefile.in =================================================================== --- ggcov-0.8.2.orig/src/Makefile.in 2011-01-03 20:12:56.000000000 +0000 +++ ggcov-0.8.2/src/Makefile.in 2011-01-03 20:13:07.000000000 +0000 @@ -396,7 +396,7 @@ -DDEBUG=$(DEBUG) -DUI_DEBUG=$(UI_DEBUG) \ $(CPU_DEFINES) $(OS_DEFINES) -ggcov_LDADD = -Wl,--as-needed libcov.a libcommon.a $(GGCOV_GUI_LIBS) +ggcov_LDADD = -Wl,--as-needed libcov.a libcommon.a $(GGCOV_GUI_LIBS) -lX11 CLI_LIBS = libcov.a libcommon.a $(GGCOV_CLI_LIBS) tggcov_SOURCES = tggcov.c \ check_scenegen.H check_scenegen.C \ debian/patches/desktop_apps.patch0000664000000000000000000000113311374737375014353 0ustar Index: ggcov-0.8.1/ui/Makefile.in =================================================================== --- ggcov-0.8.1.orig/ui/Makefile.in 2010-01-08 12:07:22.000000000 +0000 +++ ggcov-0.8.1/ui/Makefile.in 2010-01-08 12:07:35.000000000 +0000 @@ -206,7 +206,7 @@ ggcov64.png ggcov64.gif ggcov32.png ggcov32.xpm \ ggcov.desktop ggcov.schemas -@GUI_TRUE@desktopdir = $(datadir)/gnome/apps/Development +@GUI_TRUE@desktopdir = $(datadir)/applications/Development @GUI_TRUE@pixmapsdir = $(datadir)/pixmaps @GUI_TRUE@pixmaps_DATA = ggcov64.png @GUI_TRUE@pkgdata_DATA = @GGCOV_GLADE_FILE@ ggcov64.png debian/patches/dllibs.patch0000664000000000000000000000074511555135377013133 0ustar Index: ggcov-0.8.3/src/Makefile.in =================================================================== --- ggcov-0.8.3.orig/src/Makefile.in 2011-04-25 01:06:14.000000000 +0100 +++ ggcov-0.8.3/src/Makefile.in 2011-04-25 01:06:21.000000000 +0100 @@ -236,7 +236,7 @@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ +LIBS = @LIBS@ -ldl -lz LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ debian/patches/c++.patch0000664000000000000000000000116212251037616012213 0ustar Author: Alastair McKinstry Description: Support c++ extension. Origin-Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=684401 Forwarded: no Last-Updated: 2013-12-08 Index: ggcov-0.8.4/src/cov.C =================================================================== --- ggcov-0.8.4.orig/src/cov.C 2011-07-23 03:51:43.000000000 +0100 +++ ggcov-0.8.4/src/cov.C 2013-12-08 09:43:38.000000000 +0000 @@ -59,7 +59,7 @@ const char *ext; static const char * const recognised_exts[] = { - ".c", ".cc", ".cxx", ".cpp", ".C", + ".c", ".cc", ".cxx", ".cpp", ".C", ".c++", ".y", ".l", 0 }; debian/patches/web_tests_dir.patch0000664000000000000000000000621611374737375014523 0ustar Index: ggcov-0.8.1/doc/ggcov-webdb.1 =================================================================== --- ggcov-0.8.1.orig/doc/ggcov-webdb.1 2010-01-08 15:29:04.000000000 +0000 +++ ggcov-0.8.1/doc/ggcov-webdb.1 2010-01-08 15:30:47.000000000 +0000 @@ -64,7 +64,7 @@ that the \fBggcov\fP web pages need, in one bundle which is convenient to copy from the development machine to the web server. Usually this tarball would be extracted into a subdirectory -of \fI/var/ggcov/tests/\fP on the web server. +of \fI/var/cache/ggcov/tests/\fP on the web server. .PP Arguments are used to specify how to find coverage data files. The arguments can combinations of: @@ -197,11 +197,11 @@ in the executable \fBa.out\fP (on some platforms only), and install as test \fBfoo\fP in the default tests location. .IP -.B mkdir /var/ggcov/tests/foo +.B mkdir /var/cache/ggcov/tests/foo .br .B ggcov\-webdb -f - a.out | .br -.B " " (cd /var/ggcov/tests/foo ; tar \-xzf \- ) +.B " " (cd /var/cache/ggcov/tests/foo ; tar \-xzf \- ) .br .PP Generate intermediate database for all the C source in the current directory. Index: ggcov-0.8.1/doc/HOWTO.web =================================================================== --- ggcov-0.8.1.orig/doc/HOWTO.web 2010-01-08 15:29:04.000000000 +0000 +++ ggcov-0.8.1/doc/HOWTO.web 2010-01-08 15:30:47.000000000 +0000 @@ -51,10 +51,10 @@ 3. restart the web server, e.g. www# service httpd restart -4. install one or more tests in subdirectories of /var/ggcov/web/tests/, e.g. +4. install one or more tests in subdirectories of /var/cache/ggcov/web/tests/, e.g. dev$ ggcov-webdb *.c dev$ scp ggcov.webdb.tgz root@www:/tmp - web# cd /var/ggcov/web/tests + web# cd /var/cache/ggcov/web/tests web# mkdir foo ; cd foo web# tar -xzf /tmp/ggcov.webdb.tgz Index: ggcov-0.8.1/php/basic/basic.php =================================================================== --- ggcov-0.8.1.orig/php/basic/basic.php 2010-01-08 15:29:04.000000000 +0000 +++ ggcov-0.8.1/php/basic/basic.php 2010-01-08 15:30:47.000000000 +0000 @@ -30,7 +30,7 @@ { $test_dir = getenv('GGCOV_TEST_DIR'); if (!$test_dir) - $test_dir = '/var/ggcov/tests'; + $test_dir = '/var/cache/ggcov/tests'; } return $test_dir; } Index: ggcov-0.8.1/ui/Makefile.in =================================================================== --- ggcov-0.8.1.orig/ui/Makefile.in 2010-01-08 15:29:16.000000000 +0000 +++ ggcov-0.8.1/ui/Makefile.in 2010-01-08 15:30:47.000000000 +0000 @@ -190,7 +190,7 @@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ -localstatedir = @localstatedir@ +localstatedir = /var/cache mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ Index: ggcov-0.8.1/php/Makefile.in =================================================================== --- ggcov-0.8.1.orig/php/Makefile.in 2010-01-08 15:41:55.000000000 +0000 +++ ggcov-0.8.1/php/Makefile.in 2010-01-08 15:42:05.000000000 +0000 @@ -209,7 +209,7 @@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ -localstatedir = @localstatedir@ +localstatedir = /var/cache mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ debian/patches/as_needed.patch0000664000000000000000000000111311374737375013564 0ustar Index: ggcov-0.8.1/src/Makefile.in =================================================================== --- ggcov-0.8.1.orig/src/Makefile.in 2010-01-08 12:08:44.000000000 +0000 +++ ggcov-0.8.1/src/Makefile.in 2010-01-08 12:09:01.000000000 +0000 @@ -372,7 +372,7 @@ -DDEBUG=$(DEBUG) -DUI_DEBUG=$(UI_DEBUG) \ $(CPU_DEFINES) $(OS_DEFINES) -ggcov_LDADD = libcov.a libcommon.a $(GGCOV_GUI_LIBS) +ggcov_LDADD = -Wl,--as-needed libcov.a libcommon.a $(GGCOV_GUI_LIBS) CLI_LIBS = libcov.a libcommon.a $(GGCOV_CLI_LIBS) tggcov_SOURCES = tggcov.c \ check_scenegen.H check_scenegen.C \ debian/patches/series0000664000000000000000000000015512251354550012037 0ustar desktop_apps.patch as_needed.patch pointer_arithmetic.patch binutils-gold.patch # compilers.patch c++.patch debian/patches/pointer_arithmetic.patch0000664000000000000000000000100211374737375015543 0ustar Index: ggcov-0.8.1/configure.in =================================================================== --- ggcov-0.8.1.orig/configure.in 2010-01-08 12:10:16.000000000 +0000 +++ ggcov-0.8.1/configure.in 2010-01-08 12:10:22.000000000 +0000 @@ -182,7 +182,7 @@ dnl -Wshadow dnl TODO: -Weffc++ AC_GCC_ADD_CFLAGS([-Wall -Wchar-subscripts - -Wpointer-arith -Wsign-compare + -Wsign-compare -pedantic -Wno-long-long]) AC_GCC_ADD_CFLAGS([-fno-rtti -fno-exceptions -fno-implement-inlines]) debian/compat0000664000000000000000000000000212251037112010360 0ustar 9