similar to: quick question

Displaying 20 results from an estimated 10000 matches similar to: "quick question"

2008 Oct 12
2
[LLVMdev] Genlibdeps.pl, CMake and MSYS
Kenneth Boyd <zaimoni at zaimoni.com> writes: >>> * I am seeing desynchronization between the configure-generated >>> Makefiles and the CMakeFile.txt files. [e.g., llc; makefile doesn't >>> have asmprinter, CMakeFile.txt does]. That much I should be able to >>> construct a patch for "blind", if no-one gets to it first. >>>
2001 Aug 15
3
DJGPP patches and makefiles
Hi. Here are my patches and makefiles for compiling ogg, vorbis and vorbis-tools on DOS with DJGPP. They can build them from cvs snapshots and need minimal maintainance (even extract source lists from `makefile.am's). Everything seems to work, except one FP exception on encode at middle bitrates (lowest two and highest bitrates don't cause it) - I don't think it's my
2017 Jan 13
1
[PATCH] support nasm coff obj format for djgpp
Attached patch adds support nasm coff obj format for djgpp -- O.S. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-support-nasm-coff-obj-format-for-djgpp.patch Type: application/octet-stream Size: 1227 bytes Desc: not available URL: <http://lists.xiph.org/pipermail/flac-dev/attachments/20170113/8c51e0dc/attachment.obj>
2017 Jan 13
1
[PATCH] workaround for DJGPP missing wcswidth()
Attached patch works around for DJGPP missing wcswidth() in flac/utils.c:strlen_console() -- O.S. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-flac-utils.c-strlen_console-workaround-for-DJGPP-mis.patch Type: application/octet-stream Size: 683 bytes Desc: not available URL:
2005 Feb 04
2
Compilation of R (linux) package on windows
Hello, I develop some R package on Linux machine with C subroutines. The programs in C are well compiled on Linux machine and so I have some ".so" files. Now, I want to do the same work on windows, so I install R (the last version) on windows, with Active Perl and djgpp, which is, as I know, the gcc version for windows (to compile C program), but unfortunately when I run "R CMD
2017 Jan 13
2
unsigned int and FLAC__uint32 are used interchangeably
unsigned int and FLAC__uint32 are used interchangeably, leading to warnings with platforms (e.g. djgpp) where int32_t is long: bitreader.c: In function `FLAC__bitreader_read_rice_signed': bitreader.c:721: warning: passing arg 2 of `FLAC__bitreader_read_unary_unsigned' from incompatible pointer type bitreader.c: In function `FLAC__bitreader_read_rice_signed_block': bitreader.c:850:
2017 Jan 14
2
unsigned int and FLAC__uint32 are used interchangeably
On 1/14/17, Erik de Castro Lopo <mle+la at mega-nerd.com> wrote: > Ozkan Sezer wrote: > >> unsigned int and FLAC__uint32 are used interchangeably, leading to >> warnings with platforms (e.g. djgpp) where int32_t is long: > > Is `sizeof int == 4` though? Yes, obviously it is > I couldn't image FLAC working correctly > if it wasn't. > > Erik
1998 Mar 22
3
R-0.61.1 compiled with egcs-mingw32
I have made available the work of the last weekend that I mentioned in my previous messages on ftp://sirio.stat.unipd.it/pub/R. Many thanks to Peter D. and Ross I. for their suggestions. If you think that the work is of some interest, I can upload it to CRAN. guido m. This is the README enclosed in the distribution. -------------------------------------------------------------------------
2008 Oct 12
0
[LLVMdev] Genlibdeps.pl, CMake and MSYS
Óscar Fuentes wrote: > Kenneth Boyd <zaimoni at zaimoni.com> writes: > >> * I am seeing desynchronization between the configure-generated >> Makefiles and the CMakeFile.txt files. [e.g., llc; makefile doesn't >> have asmprinter, CMakeFile.txt does]. That much I should be able to >> construct a patch for "blind", if no-one gets to it first.
2002 Nov 28
1
List of rsync service hosts?
Hello, somewhere on one of the rsync webpages I have seen a list of hosts which have running public rsync services, at least I think it has been on the rsync webpages, but I can't find it there anymore. Or is it anywhere else? Where can this list of rsync hosts be placed? I appreciate your feedback. Have a nice day Michael -- Michael Schmidt mschmidt@fh-koblenz.de MIRROR OF:
2002 Nov 25
3
FTP at rsync.samba.org down?
Hello, just being fascinated by rsync I wanted to look at the distribution files at ftp://rsync.samba.org, but it was not possible to get a ftp connection to that address. Is the ftp service down there? Thanks in advance for any soon helpful hint. Have a nice day Michael -- Michael Schmidt mschmidt@fh-koblenz.de MIRROR OF Ghostscript * X-Windows X11
2002 Oct 16
1
FIXED: error in make pkg-...
Sorry, spoke too quickly! The problem was caused by my editing the MkRules file with an editor that replaces tabs with spaces. Make evidently requires that all lines start with a tab (see http://www.delorie.com/djgpp/v2faq/faq22_17.html). Perhaps worth warning windoze users like myself of such perils in readme.packages or somewhere similar! Now I have a new problem, but it looks fixable.
2010 Apr 21
3
Asterisk choking on voice messages announcements
Hi Everyone, I have a weired situation where calls in and out are proceessed all right but when I dial *97 Asterisk is literally choking when it comes to announcements like "Password" or "Call from 205-456-2222". Each one of those announcements can take like 10+ seconds to finish with most of it not even compoundable. I run "top" and there is no heavy load on CPU or
2007 Jul 19
2
quick question on machine name
I have a box I just installed centos 4.5 on. The name of the machine in /etc/hosts is TomSlick.xyz.com TomSlick (for example). the name of the machine in /etc/sysconfig/network HOSTNAME=TomSlick.xyz.com Note both are upper case: Yet when I login as root the prompt is showing me tomslick in lower case not a combo upper lower. I have grepped /etc and below for tomslick and cannot find why this
2008 Oct 12
2
[LLVMdev] Genlibdeps.pl, CMake and MSYS
Kenneth Boyd <zaimoni at zaimoni.com> writes: >> I'm seeing a failure related to circular library references while >> building LLVM with CMake and MSYS. This didn't happen on the >> past. Building with the configure script works, so it seems something >> related to CMake. Do you have any insight on this? >> > I'll get back on this tonight or
2018 Aug 13
1
substitute() on arguments in ellipsis ("dot dot dot")?
Since you're already using bang-bang ;) library(rlang) dots1 <- function(...) as.list(substitute(list(...)))[-1L] dots2 <- function(...) as.list(substitute(...())) dots3 <- function(...) match.call(expand.dots = FALSE)[["..."]] dots4 <- function(...) exprs(...) bench::mark( dots1(1+2, "a", rnorm(3), stop("bang!")), dots2(1+2, "a",
2001 Jun 17
1
file(1) magic for Ogg Vorbis
I downloaded `file' for djgpp, and it verbosly identified my mp3 by bitrate, sample rate, mono/stereo, option bits, etc. WAVs are also uidentified well. Only vorbis was identified simply as "Ogg-Vorbis compressed sound file" without any info. So I decided I must fix this to replace my aliases that use `od' to read the bitrate and number of channels. Here is the result
2011 Nov 18
2
Are tildes actually valid in templates or is this a bug?
Hi all, First off, we''re running Puppet 2.7.6 with Ruby 1.8.7 on CentOS 6.0. Now, I''m using tildes in a template to prevent newlines from appearing but ruby/puppet is choking on them. */tmp/puppet$ cat test.erb* Line 1: Line 2 will exist if running on CentOS. <% if operatingsystem == "CentOS" ~%> Line 2: Yay, we''re running CentOS. <% end ~%>
2006 Jun 23
3
Ajax errors in safari
I am implementing some AJAX features into a web forum, and one feature works fine in Firefox and in IE, but it is choking in Safari. Safari will send the request fine and the data will be stored in the DB, but it is not responding correctly to the RJS that is being sent back. Anybody notice issues with Safari parsing the javascript sent back to the browser? -- Timothy Johnson
2005 Jun 14
2
why does the unsubscribe not work
Hi I have tried to unsubscribe from this list now three times, I desperately need to unsubscribe from this list from this address because the list is choking this mailbox. Below are the various suggested ways of unsubscribing > To subscribe or unsubscribe via the World Wide Web, visit > https://stat.ethz.ch/mailman/listinfo/r-help > or, via email, send a message with subject or body