similar to: -D_FORTIFY_SOURCE (was Re: [Xapian-commits] 7903: trunk/xapian-core/)

Displaying 20 results from an estimated 2000 matches similar to: "-D_FORTIFY_SOURCE (was Re: [Xapian-commits] 7903: trunk/xapian-core/)"

2007 Apr 28
1
bootstrap: macro `AM_CXXFLAGS' not found in library
Folks, I get this when I try to run 'bootstrap' to rebuild Xapian from scratch. This is the current revision from the svn repository today (8400). Any suggestions on what other package may be needed (both gcc and g++ are installed). ken@mercury:~/sandbox/xapian/trunk$ ./bootstrap Bootstrapping `xapian-core' aclocal: configure.ac: 130: macro `AM_CXXFLAGS' not found in library
2019 Dec 04
2
[cfe-dev] clang and -D_FORTIFY_SOURCE=1
> Are you sure you've diagnosed the issue correctly? __builtin___memcpy_chk works correctly, as far as I know. 100% sure. Let's have a look at the output of #include <string.h> static char dest[10]; char* square(int n) { memcpy(dest, "hello", n); return dest; } compiled with -D_FORTIFY_SOURCE=1 -O1 : https://godbolt.org/z/UvABWp Clang issues a call to
2019 Dec 03
5
clang and -D_FORTIFY_SOURCE=1
Hi folks (CCing llvm-dev, but that's probably more of a cfe-dev topic), As a follow-up to that old thread about -D_FORTIFY_SOURCE=n http://lists.llvm.org/pipermail/cfe-dev/2015-November/045845.html And, more recently, to this fedora thread where clang/llvm -D_FORTIFY_SOURCE support is claimed to be only partial: https://pagure.io/fesco/issue/2020 I dig into the glibc headers in
2008 Apr 25
18
Wine memory problem
I have program which memory use 500MB for OS Windows, but this program + wine in OS Linux use 3.6 GB. 1 wine+ program process use 3.6 GB virtual memory. How to reduce quantity of used memory for 1 process?
2015 Feb 03
5
Another Fedora decision
On Tue, Feb 3, 2015 at 12:24 PM, Valeri Galtsev <galtsev at kicp.uchicago.edu> wrote: > > Sounds so I almost have to feel shame for securing my boxes no matter what > job vendor did ;-) Yes, computers and the way people access them are pretty much a commodity now. If you are spending time building something exotic for a common purpose, isn't that a waste? > Just a simple
2017 Feb 04
3
Minor CFLAGS-related cleanups
Hi Erik, similar to what I did for libsndfile, this is to simplify the handling of adding -D_FORTIFY_SOURCE=2. Regards David
2015 Feb 03
2
Another Fedora decision
On Tue, Feb 3, 2015 at 11:48 AM, Valeri Galtsev <galtsev at kicp.uchicago.edu> wrote: > >> I think the intent is: "Don't use a password likely to be included in >> the list that an attacker would try". Of course if services would >> rate-limit the failures > > Which sysadmins do for ages when they configure their machines. And I > don't think
2005 Jan 30
0
Patch : fix configure.in and Makefile.am problems.
--- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote: > Hi all, > > I am trying to compiler current CV head on a PowerPC G3 Debain > system. > > Debian test has automake 1.9 which is a little more stringent about > errors than 1.8. The following patch has the following fixes. > > 0) Remove AC_CANNONIAL_HOST because it has already been invoked >
2016 Dec 27
0
(Thin)LTO llvm build
On Tue, Dec 27, 2016 at 8:30 AM, Carsten Mattner <carstenmattner at gmail.com> wrote: > On Tue, Dec 27, 2016 at 4:13 PM, Teresa Johnson <tejohnson at google.com> > wrote: > > > > On Tue, Dec 27, 2016 at 5:23 AM, Carsten Mattner < > carstenmattner at gmail.com> wrote: > >> > >> After figuring out the fault in the configuration step and
2015 Feb 03
0
Another Fedora decision
On Tue, February 3, 2015 12:08 pm, Les Mikesell wrote: > On Tue, Feb 3, 2015 at 11:48 AM, Valeri Galtsev > <galtsev at kicp.uchicago.edu> wrote: >> >>> I think the intent is: "Don't use a password likely to be included in >>> the list that an attacker would try". Of course if services would >>> rate-limit the failures >> >>
2015 Feb 03
0
Another Fedora decision
On Tue, February 3, 2015 12:39 pm, Les Mikesell wrote: > On Tue, Feb 3, 2015 at 12:24 PM, Valeri Galtsev > <galtsev at kicp.uchicago.edu> wrote: >> >> Sounds so I almost have to feel shame for securing my boxes no matter >> what >> job vendor did ;-) > > Yes, computers and the way people access them are pretty much a > commodity now. If you are
2009 Jan 26
0
NUT 2.2.2 start driver problem on Opensuse 11.1
Hi Alexey, 2009/1/22 Alexey Korobeinikov <alexey at mgm.kiev.ua> > Hi. > I have a trouble starting NUT (driver victronups) version 2.2.2-67.1 (for > OpenSuSe 11.1) with follow error: > > /usr/lib/ups/driver/victronups -a match500 > Network UPS Tools - GE/IMV/Victron UPS driver 0.1.9 (2.2.2) > the driver is faulty. the difference with the version you compiled is the
2005 Jan 29
2
Patch : fix configure.in and Makefile.am problems.
Note : I'm subscribed to the list. Please don't CC replies to me. Hi all, I am trying to compiler current CV head on a PowerPC G3 Debain system. Debian test has automake 1.9 which is a little more stringent about errors than 1.8. The following patch has the following fixes. 0) Remove AC_CANNONIAL_HOST because it has already been invoked earlier 1) Make sure
2016 Dec 27
2
(Thin)LTO llvm build
On Tue, Dec 27, 2016 at 4:13 PM, Teresa Johnson <tejohnson at google.com> wrote: > > On Tue, Dec 27, 2016 at 5:23 AM, Carsten Mattner <carstenmattner at gmail.com> wrote: >> >> After figuring out the fault in the configuration step and rebuilding, >> and then rebuilding again by forcing it with `ninja -k 16`, I managed to >> build everything but 12 ninja
2017 Feb 04
0
[PATCH] Clean up CFLAGS detecting code and add AX macro for _FORTIFY_SOURCE
--- configure.ac | 23 ++------------------ m4/ax_add_fortify_source.m4 | 53 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 21 deletions(-) create mode 100644 m4/ax_add_fortify_source.m4 diff --git a/configure.ac b/configure.ac index 8576cae5..c5b63370 100644 --- a/configure.ac +++ b/configure.ac @@ -393,9 +393,7 @@ fi dnl If debugging is
2011 Apr 21
1
Installing Search::xapian
Sorry if this is a repost .. I have edited my query a little bit and my previous post was too long and so was waiting approval(I cancelled it) Ok. Another question.. I have installed the Search ::Xapian on my local machine. Now I'm trying to install it on a machine where i dont have root access. So while running configure of the Xapian library I gave the -prefix option and everything installed
2016 Jul 31
2
[Release-testers] [3.9 Release] Release Candidate 1 has been tagged
Hi, On the OpenMandriva side, x86_64 passes all checks. We're having some problems with other architectures though (see below): x86_64 succeeded, packages are here: https://abf.openmandriva.org/build_lists/76792 i586 fails to build, but this seems to be an issue with 3.8.1 (which we're using to build 3.9): /usr/bin/clang++ -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS
2014 Jan 01
0
Soft chroot jail for sftp-server
Hi everyone I would like to enable unprivileged users to share only certain directories using SFTP without acquiring root, without setting capabilities using public-key-based forced commands. In another use case unprivileged users could write scripts that evaluate "$SSH_ORIGINAL_COMMAND" and then either execute sftp-server in a jail "$SSH_ORIGINAL_COMMAND" after
2005 Jun 24
8
The Shorewall list server is back on line
There was a lengthy power failure here in Shoreline this morning and my firewall did not come back up when power was restored. The firewall is now up and service to the server has been restored. -Tom -- Tom Eastep \ Nothing is foolproof to a sufficiently talented fool Shoreline, \ http://shorewall.net Washington USA \ teastep@shorewall.net PGP Public Key \
2017 Oct 18
2
dovecot-2.3 (-git) Warning and Fatal Compile Error
I haven't been tracking dovecot-2.3 until now, but I've just given it a quick run, and there are a few things that may need some attention. Linux x86-64, Gentoo, GCC-7.2.0 Dovecot 2.3 @ commit 32c2612514a404ebc226f32bb88f28d76ceb1db1 Compiled with: ./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info