Bug#864018: libtool passes 'u' to 'ar' which is incompatible with 'D'

2017-06-03 Thread Philip Martin
Package: libtool Version: 2.4.6-2 Severity: normal Dear Maintainer, After upgrading to stretch from jessie I see new warnings when building Subversion from source. These take the form ar: `u' modifier ignored since `D' is the default (see `U') when linking static libraries. A reduced test c

Bug#703465: closed by Laszlo Boszormenyi (GCS) (Bug#703465: fixed in sqlite3 3.7.16-1)

2013-03-27 Thread Philip Martin
"Laszlo Boszormenyi (GCS)" writes: >> The current stable is >> 3.7.3-1 and doesn't have this bug. The current testing is 3.7.13-1 and >> it does have the bug. The next stable would be better with a patched >> 3.7.13 or 3.7.16. > I can ask Release Managers. Freeze is in effect for a while and s

Bug#703465: closed by Laszlo Boszormenyi (GCS) (Bug#703465: fixed in sqlite3 3.7.16-1)

2013-03-26 Thread Philip Martin
> sqlite3_3.7.16-1_amd64.deb > 25b67faae81f48afe0d08645a86f1462 1107998 debug extra > libsqlite3-0-dbg_3.7.16-1_amd64.deb > b08943eabee0befbfbb1f37880e9a905 467418 libs standard > libsqlite3-0_3.7.16-1_amd64.deb > 9335c9f90422c7c1a0152b9cfa02af8b 595222 libdevel optional > libsql

Bug#703465: libsqlite3-0: SQLite sets umask to zero when writing

2013-03-19 Thread Philip Martin
Package: libsqlite3-0 Version: 3.7.13-1 Severity: normal Tags: upstream patch Dear Maintainer, SQLite added a feature (in 3.7.11 I think) to ensure that journal/wal files have the same permissions as the database file: http://www.sqlite.org/src/info/84b324606a The implementation sets umask to 0

Bug#644409: rapidsvn SEGV with Subversion 1.7

2011-10-05 Thread Philip Martin
8194) +++ ../../rapidsvn-trunk/AUTHORS(revision 8195) @@ -76,4 +76,4 @@ csola48 - translation Alexey Reztsov- translation Viet NQ - source code - + Philip Martin - source code Index: ../../rapidsvn-trunk/src/svncpp/context.cpp

Bug#544541: mdetect SEGV with -vvv option

2009-09-01 Thread Philip Martin
Package: mdetect Version: 0.5.2.1 Severity: normal Tags: patch I have a serial mouse connected to /dev/ttyS0. Running mdetect -vvv causes a SEGV. The following patch fixes the problem --- mice.c.orig 2005-10-28 14:02:36.0 +0100 +++ mice.c 2009-09-01 11:34:27.0 +0100 @@ -26,

Bug#530949: gcc-4.4: warns about idiomatic use of Berkeley sockets

2009-05-29 Thread Philip Martin
"brian m. carlson" writes: > I'm aware of that. My opinion remains the same: GCC should generate > POSIX-conformant code without warnings with -O2 -Wall. That can be > achieved by disabling -fstrict-aliasing at -O2, by patching glibc to > allow aliasing of the relevant types, by special-casing

Bug#530949: gcc-4.4: warns about idiomatic use of Berkeley sockets

2009-05-29 Thread Philip Martin
"brian m. carlson" writes: > I expect that when used on a POSIX system (at least in strict POSIX mode > or when invoked as "c99"), gcc-4.4 neither warns nor generates code > contrary to POSIX with -O2 -Wall. You can add -fno-strict-aliasing which will disable the optimisation and thus prevent th

Bug#530949: gcc-4.4: warns about idiomatic use of Berkeley sockets

2009-05-29 Thread Philip Martin
"brian m. carlson" writes: > This is a standard and idiomatic usage of Berkeley sockets. AFAIK, > there is no other way to work with the sockets interface, and even if > there were, this method is extremely common, not to mention sanctioned > by POSIX. It may be idiomatic but it's not strictly

Bug#511724: 2.2 libtool missing conflict with 1.5 libtool-doc

2009-01-14 Thread Philip Martin
Kurt Roeckx writes: > I assume you did something like "aptitude install libtool/experimental", > and expected libtool-doc to also be upgraded? aptitude install -t experimental libtool which I think is the same thing. > libtool-doc is only a Suggests. Maybe a Recommends would have > different

Bug#511724: 2.2 libtool missing conflict with 1.5 libtool-doc

2009-01-14 Thread Philip Martin
Kurt Roeckx writes: > I'm guessing you're saying that libtool-doc should still conflict > with libtool1.4-doc? I don't agree. libtool1.4-doc is only > part of oldstable. You should not be using it anymore in stable. No. I had libtool and libtool-doc 1.5 installed when I upgraded libtool to 2

Bug#511724: 2.2 libtool missing conflict with 1.5 libtool-doc

2009-01-13 Thread Philip Martin
Package: libtool Version: 2.2.6a-1 Severity: normal The 1.5 series libtool packages conflict with the 1.4 series doc packages. The 2.2 libtool (in experimental) should conflict with both the 1.4 and 1.5 series doc packages but only the 1.4 conflict is present. This means that an upgrade from

Bug#392880: gcc-4.1: off-by-one error for string initialiser warnings

2006-10-14 Thread Philip Martin
not too long, section 6.7.8/15 of the ISO C standard states: "Successive characters of the character literal (including the terminating null character if there is room or if the array is of unknown size) initialize the elements of the array" So string3 is correctly initiali

Bug#387610: [PATCH] apr_atomic_cas broken in 0.9.x

2006-09-24 Thread Philip Martin
Philip Martin <[EMAIL PROTECTED]> writes: > Port some of the atomic code from 1.2.x to 0.9.x, in particular make > mutex operations that fail cause an abort and make the generic C > implementation of apr_atomic_cas work on 64 bit platforms. A less radical change to the code is sim

Bug#387610: [PATCH] apr_atomic_cas broken in 0.9.x

2006-09-22 Thread Philip Martin
+if (prev == cmp) { + *mem = with; } -return *(void **)mem; +CHECK(apr_thread_mutex_unlock(lock)); #else prev = *(void **)mem; if (prev == cmp) { *mem = with; } -return prev; #endif /* APR_HAS_THREADS */ +return prev; } #endif /*!defined(apr_atomic_c

Bug#387610: apr_atomic_cas broken in 0.9.x

2006-09-22 Thread Philip Martin
k)); prev = *mem; if (prev == cmp) { *mem = with; } CHECK(apr_thread_mutex_unlock(lock)); #else prev = *mem; if (prev == cmp) { *mem = with; } #endif /* APR_HAS_THREADS */ return prev; } -- Philip Martin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#387610: subversion: FTBFS on ia64

2006-09-22 Thread Philip Martin
to find it because there are only 15 slots and all but one should be zero, e.g. (gdb) p bdb_cache[0].array[1] $9 = (apr_hash_entry_t *) 0x0 (gdb) p bdb_cache[0].array[3] $10 = (apr_hash_entry_t *) 0x8072d30 -- Philip Martin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#387610: subversion: FTBFS on ia64

2006-09-21 Thread Philip Martin
ng without optimisation on ia64? -- Philip Martin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#368751: subversion: segfaults on status -u

2006-05-26 Thread Philip Martin
If so then it's upstream issue 2551 and the fix will be in 1.3.2. -- Philip Martin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#270693: "svnadmin dump | svnadmin load" cycle not working due to 2GB limit

2006-02-15 Thread Philip Martin
Peter Samuelson <[EMAIL PROTECTED]> writes: > [Philip Martin] >> Is there a Subversion packaging problem ahead? If libsvn0 starts to >> use libapr1 this will change the ABI of libsvn0 and any package built >> against the existing libsvn0 ABI may not work correc

Bug#270693: "svnadmin dump | svnadmin load" cycle not working due to 2GB limit

2006-02-14 Thread Philip Martin
the problem for non-Debian binaries. I suspect the libsvn0 name will have to change, much like a C++ ABI transition. -- Philip Martin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#335455: Progress

2005-11-11 Thread Philip Martin
Peter Samuelson <[EMAIL PROTECTED]> writes: > [Philip Martin] >> Install the db4.2-util package and replace >> >>svnadmin recover path/to/repo >> >> with >> >>db4.2_recover -h path/to/repo/db > > That's what I've bee

Bug#335455: Progress

2005-11-11 Thread Philip Martin
Peter Samuelson <[EMAIL PROTECTED]> writes: > [Philip Martin] >> The Subversion FAQ has an item that was written when Brane's Windows >> build was upgraded from 4.2 to 4.3. >> >> http://subversion.tigris.org/faq.html#bdb43-upgrade > > Yes, well, that

Bug#335455: Progress

2005-11-10 Thread Philip Martin
was written when Brane's Windows build was upgraded from 4.2 to 4.3. http://subversion.tigris.org/faq.html#bdb43-upgrade -- Philip Martin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#320698: Debian-specific binary deps patch

2005-10-07 Thread Philip Martin
t include an rpath to the install directory, the directory path gets stored in the .la file, so when libtool links another library or application the path is available. > PS: This might actually be the wrong bug in which we're > discussing this. Or perhaps the bugs should be merged? --

Bug#320698: Debian-specific binary deps patch

2005-10-06 Thread Philip Martin
oes straight through to the linker, and it appears that the command line option overrides RPATH in the library. Is it a linker bug for the command line option to have priority? I don't know. Perhaps libtool should not be passing that --rpath during the link? Perhaps libtool should be passi

Bug#320698: Debian-specific binary deps patch

2005-10-05 Thread Philip Martin
org/cgi-bin/bugreport.cgi?bug=291641 Subversion 1.2 has a Build-Conflicts with Subversion 1.1 to avoid this problem. -- Philip Martin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#320572: libsvn0: Crash when exporting a client tree with after svn delete

2005-08-08 Thread Philip Martin
Devin Carraway <[EMAIL PROTECTED]> writes: > One other note -- I tried manually removing the deleted file's tag from the > .svn/entries XML file in the client copy, and the crash went away. Here was This problem is fixed upstream on the 1.2.x branch, see r15579. -- Phili

Bug#316227: libsvn0: SEGV when exporting local checkout with libsvn0 1.2.0

2005-08-01 Thread Philip Martin
directory had not been updated. Any such items get removed when the parent directory is updated. The fix is r15516 in the Subversion repository. -- Philip Martin

Bug#312919: xemacs21: gnus displays encoded rfc2047 headers

2005-06-10 Thread Philip Martin
Package: xemacs21 Version: 21.4.17-1 Severity: normal XEmacs/gnus is displaying encoded rfc2047 headers, which makes them unreadable. A typical Subject line is Subject: =?UTF-8?B?W0lzc3VlIDkwOF0gIFN0b3JlIHRleHQtYmFzZSBjb21wcmVzc2Vk?= which should be decoded to Subject: [Issue 908] Store t

Bug#312362: g++-4.0: friend is ineffective in namespace

2005-06-08 Thread Philip Martin
from ::operator+ to ns::operator+ would be an ABI change. -- Philip Martin -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Bug#312362: g++-4.0: friend is ineffective in namespace

2005-06-07 Thread Philip Martin
ke namespace ns { class A; }; ns::A operator+(const ns::A& x, const ns::A& y); class ns::A { public: A(int j) { i = j; }; private: int i; friend A (::operator+)(const A& x, const A& y); }; using namespace ns; A operator+(const A& x, const A& y

Bug#291641: libtool: resolves dependencies to the install tree rather than the build tree

2005-02-01 Thread Philip Martin
Scott James Remnant <[EMAIL PROTECTED]> writes: > On Sat, 2005-01-22 at 01:01 +0000, Philip Martin wrote: > >> I find the libtool inter-library documentation confusing, but I think this >> is a Debian bug simply because Debian's libtool fails and GNU's libtool

Bug#291641: libtool: resolves dependencies to the install tree rather than the build tree

2005-01-23 Thread Philip Martin
c should > honour the RPATH of that shared library. I'm not a compiler expert, but does gcc ever see that information? I think gcc, via collect2, invokes the ld linker to do the link and so gcc never sees any of the NEEDED or RPATH data. The ld linker is part of the binutils package,

Bug#291641: libtool: resolves dependencies to the install tree rather than the build tree

2005-01-22 Thread Philip Martin
Scott James Remnant <[EMAIL PROTECTED]> writes: > On Sat, 2005-01-22 at 01:01 +0000, Philip Martin wrote: > >> A recent change to the Subversion source (revision 12801) introduced >> new functions into the three dependent libraries, and made >> libsvn_ra-1.so

Bug#291641: libtool: resolves dependencies to the install tree rather than the build tree

2005-01-21 Thread Philip Martin
Package: libtool Version: 1.5.6-3 Severity: normal *** Please type your report below this line *** Sorry this is so long, a quick summary: Debian's libtool appears to resolve inter-library dependencies to the install tree rather than the build tree, this is different from the upstream GNU behaviou

Bug#289992: esvn: error message: "svn: Can't recode string"

2005-01-18 Thread Philip Martin
recode string That's probably caused by a filename that cannot be converted to UTF-8. The Subversion repository uses UTF-8 internally and the client converts between your current locale and UTF-8. It looks like one of the files in the working copy has a name that is not valid byte seq