similar to: [PATCH][RESEND] use autoconf MKDIR_P to reduce usage of legacy mkinstalldirs script

Displaying 20 results from an estimated 100 matches similar to: "[PATCH][RESEND] use autoconf MKDIR_P to reduce usage of legacy mkinstalldirs script"

2019 Oct 01
9
Call for testing: OpenSSH 8.1
Hi, OpenSSH 8.1p1 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. This is a bugfix release. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is available in CVS HEAD: http://www.openbsd.org/anoncvs.html Portable OpenSSH is also available via git using the instructions at
2005 Jun 02
3
[Bug 2766] rsync endless loop
https://bugzilla.samba.org/show_bug.cgi?id=2766 ------- Additional Comments From paul@debian.org 2005-06-02 08:47 ------- It seems to be looping in userspace (no system calls, hence strace doesn't show anything). Could you try ltrace instead of strace, that should show what library functions (if any) are being called which may help. -- Configure bugmail:
2005 Jun 02
0
[Bug 2766] New: rsync endless loop
https://bugzilla.samba.org/show_bug.cgi?id=2766 Summary: rsync endless loop Product: rsync Version: 2.6.5 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: cs@emlix.com QAContact: rsync-qa@samba.org
2014 May 25
2
XIPH_C_COMPILER_IS_CLANG preventing many flags
XIPH_C_COMPILER_IS_CLANG in configury (commit a6a4b6f) is blocking many flags including the visibility attributes: I guess this needs relaxing, possibly a lot. What incompatibility led to this commit? -- O.S.
2006 Apr 21
1
Unicall MFRC2 Problems with BrT.
Hello All, I'm facing problems with Unicall on this scenario : CentOS 4.3 - Running on x86_64 Asterisk 1.2.7.1 Zaptel 1.2.5 When running zttool , shows all Spans OK. But I can't receive and make calls. I tried to change many parameters and still doesn't work. Any clues ? * unicall.conf [channels] language=br context=incoming-pstn usecallerid=yes hidecallerid=no immediate=no
2015 Feb 23
3
[PATCH 1/2] mllib: add helper mkdir_p
Small function to create in OCaml-based code a directory and its parents, much like `mkdir -p`. --- mllib/common_utils.ml | 11 +++++++++++ mllib/common_utils.mli | 3 +++ 2 files changed, 14 insertions(+) diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml index 898be17..76d8b79 100644 --- a/mllib/common_utils.ml +++ b/mllib/common_utils.ml @@ -673,3 +673,14 @@ let qemu_input_filename
2015 Feb 23
0
[PATCH 2/2] builder: use mkdir_p to create the cachedir (RHBZ#1195204)
--- builder/cache.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/cache.ml b/builder/cache.ml index 9e69bc1..86ac41b 100644 --- a/builder/cache.ml +++ b/builder/cache.ml @@ -35,7 +35,7 @@ type t = { let create ~verbose ~directory = if not (is_directory directory) then - mkdir directory 0o755; + mkdir_p directory 0o755; { verbose = verbose;
2012 Dec 09
3
[LLVMdev] pb05 benchmarks for llvm/dragonegg 3.2
Duncan, With the commit from http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20121203/158488.html, the Polyhedron 2005 benchmarks complete again on x86_64-apple-darwin12. The result are similar to what were seen with FSF gcc 4.6.2svn and llvm/dragonegg 3.0 (which was the last release that passed pb05) http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-October/044091.html. Jack
2012 Dec 10
0
[LLVMdev] pb05 benchmarks for llvm/dragonegg 3.2
Hi Jack, thanks for these numbers. > With the commit from http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20121203/158488.html, > the Polyhedron 2005 benchmarks complete again on x86_64-apple-darwin12. The result are similar to what > were seen with FSF gcc 4.6.2svn and llvm/dragonegg 3.0 (which was the last release that passed pb05) >
2001 May 08
4
[success] VB3 Program "Watchtower Library" now works
Hi! Some time ago I wrote about two problems, which I encountered when trying to run a VB3 program with Wine. The program is called "Watchtower Library". The search function crashed. With debugging and disassembling of a .vbx I later found out that the program itself was bailing out and not wine. But I had no idea how to remedy the problem. The tooltips (in the program called
2013 Feb 09
3
help on plotting series with different x-axis values on a graph with one x-axis
Hi, I have run into this problem a couple of times now and hope you can help! If I want to plot mulitiple series with differing x-axis values (however, all in the same range) in 1 plot with one common axis R obstruses the plots. E.g. if I plot water content against time and I start with the sampler at 5 cm depth, it plots that one right. But the next depth, 15 cm, is measured at slightly
2014 Nov 18
2
Windows 8.1 client not able to see and connect to samba server
Hi, I am using a samba server for file sharing in our companies IPv4 based LAN. The samba server is running as VM on a ubuntu 14.04 qemu/kvm host using ubuntu 14.04 as OS. I am using the lastet version available for samba: 4.1.6+dfsg-1ubuntu2.14.04.3 My Windows 7 and Windows 8.1 client are able to find the server and connect to the shares but the Windows 8.1 client of a colleague is not able to
2001 May 15
2
WTLIB99 with wine-010510 tar ball broken again
Hi: Remember that I somewhat enthusiastically wrote that a VB3 program called "Watchtower Library 1999" now works with wine-010508? Well, [un]fortunately it is broken with again with the wine-010510 tar ball. (Thank you, Kin Lau for pointing this out to me by e-mail.) Description: The main program window of WTLIB99 is just a small bar with buttons and a menu on top of the buttons.
2017 Jun 12
0
AIX lacks getopt_long
* As a test I added the 'struct option' to the file needing it, and this confirmed the need for getopt_long() which AIX libc.a does not include. * p.s. I ran this dry-run from the "root" directory, perhaps it would be better from the ./src directory --- src/x071-test/src/doveadm/doveadm-cmd.c 2017-06-12 06:10:53 +0000 +++ src/AIX-port/src/doveadm/doveadm-cmd.c
2020 May 20
0
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
would it perhaps make sense to have a "--disable-sse2/3" commandline switch in rsync, too - at least for some timeframe until this is considered "rock solid" ? i dislike having automatic cpu feature switching code in a tool which needs to be reliable for me, this new optimization may have issues - and without such switch it can't be easily workarounded without replacing
2001 Jun 28
1
cvs010626 flickering borders before main window drawn
This problem is new since _after_ wine010510.tar.gz and keeps showing up in cvs010626. Again the same VB3 application. The splash screen appears and the main window (which consists only of a bunch of buttons) is started to be prepared. In a flickering way many frames or borders appear (empty) and when finally the splash screen disappears the main window gets drawn correctly. Then the problem does
2015 Apr 08
10
Build-system cleanups
Hi everyone Following are a number of build-system cleanup patches. Some of them are prep-work for a possible upcoming automake/gnulib introduction. Best regards, Tiziano
2020 May 18
3
[PATCH] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
What do you base this on? Per https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html : "For the x86-32 compiler, you must use -march=cpu-type, -msse or -msse2 switches to enable SSE extensions and make this option effective. For the x86-64 compiler, these extensions are enabled by default." That reads to me like we're fine for SSE2. As stated in my comments, SSSE3 support must be
2001 Jul 08
1
different font and window behaviour w/ diff X servers
Hi: Like Gerard Patel mentioned on the developer's list I can confirm that Wine's behaviour _is_ now very dependant on which X server is used and to top it: also this behaviour is varying quite a bit depending on the Windows application which is run. I have font problems with XF86_SVGA on a Trident Video-107PCI (cheapy-cheapy) and not with XF86_S3 on a Diamond 2000 3D (old). The problem
2020 May 19
5
[PATCHv2] SSE2/SSSE3 optimized version of get_checksum1() for x86-64
I've read up some more on the subject, and it seems the proper way to do this with GCC is g++ and target attributes. I've refactored the patch that way, and it indeed uses SSSE3 automatically on supporting CPUs, regardless of the build host, so this should be ideal both for home builders and distros. Getting the code to build right in c++ mode (checksum_sse2.cpp only) was a bit of an