Displaying 20 results from an estimated 146 matches for "_have_".
2001 Mar 28
3
OSSH 2.5.2p2: Why is /usr/local/ put into the include & lib paths under Solaris?
...d before
user-specified library directories such as OpenSSL. If I specify
--with-openssl=/foo/openssl, I want to actually _use_ the version of
openssl in /foo/openssl, not some version that may have been installed in
/usr/local. This really makes no sense at all, since Solaris doesn't even
_have_ /usr/local by default.
Attached is a patch that gets rid of this behaviour, at least for solaris.
I suspect it's bogus on just about every platform, but I'm sure it is on
Solaris.
--
Carson
-------------- next part --------------
A non-text attachment was scrubbed...
Name: configure.in...
2005 Aug 20
2
Questions on "\" vs "/" on Windows
...id filename
The question:
What are the use-cases where "\" is required for paths passed as
character vectors from within R?
My experience has been that "/" always works and "\" often fails due
to escaping issues (the user's fault). A pathalogical example
that I _have_ encountered due to temp file naming on Windows:
> badpath <- "foo\\2\\bar"
> root <- "c:\\HERE\\file.txt"
> gsub("HERE", badpath, root)
Error in gsub("HERE", badpath, root) : invalid backreference 2 in regular expression
Using file.pa...
2010 Sep 04
2
[LLVMdev] RFC: change build order (or location) of LLVMHello plugin
Hello, everybody!
On win32(s), lib/Transforms/Hello cannot be built cleanly.
It will be built after 1st build.
Linking the plugin LLVMHello.dll requires other libraries, especially LLVM.dll.
May I move Hello to other location?
Or, may I tweak llvm/Makefile?
...Takumi
2010 Sep 04
0
[LLVMdev] RFC: change build order (or location) of LLVMHello plugin
...ibraries, especially LLVM.dll.
>
> May I move Hello to other location?
> Or, may I tweak llvm/Makefile?
>
> ...Takumi
Do you know what the exact problem is? It would be best to fix the
Makefile instead of moving it. And sense it is a transformation, the
build system is broken if you _have_ to move it.
- Michael Spencer
2010 Sep 06
1
[LLVMdev] RFC: change build order (or location) of LLVMHello plugin
Good evening, Michael.
2010/9/5 Michael Spencer <bigcheesegs at gmail.com>:
> Do you know what the exact problem is? It would be best to fix the
> Makefile instead of moving it. And sense it is a transformation, the
> build system is broken if you _have_ to move it.
I am sorry, I don't understand what *the exact problem" is.
I can describe facts;
- Hello is the only LOADABLE_MODULE under lib/
- Other plugin, eg. tools/bugpoint-passes, can be built.
...Takumi
2008 Feb 28
1
antispam plugin: crm114 mode:"antispam signature not found"
...source i found in signature.c
*signature_hdr = "X-DSPAM-Signature";
This appears to originate from the DSPAM support of the plugin
and apparently doesn't find these header lines.
When using crm114 to sort spam there is no special header
line. (or i didn't turn it on. do i _have_ to?)
how can i get that antispam plugin to work with crm114?
I'm using dovecot-1.0.10
TIA
Peter Renner
2002 Jun 19
1
simple plot with magnified cex.axis & cex.label
...( x, y, ylab = "Any title" )
I've got ugly picture, where
1) x-axis labels & x-axis itself overlapped,
2) y-axis title does not not fit within bounding box.
The _same_ effect in "postscript" device.
Is this a bug? Could I solve this problem any way _now_, if
I _have_ to plot graph with strongly magnified axis labels?
Thanks,
Timur.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in...
2007 Dec 11
1
locate rpm spec files
Hi
I _have_ to use the following software versions on CentOS4 and RHEL4
Apache 2.0.53
mod_jk 1.2.22
Tomcat 5.5.9
Java 1.5.0_06
Can anyone point me to the spec files for these that i can use against
the source tar balls or better yet a source rpm?
thanks!
2003 Aug 04
1
Samba3+KBC
...the Win2003 without any problem, even for admin users. But If I
try to connect via smbclient(pam is set and configured, the option -k
doesn't change anything) from the Linux to the Win2003 I get a
NT_STATUS_MORE_PROCESSING_REQUIRED (and yes, accoring to the changes from
beta2 to beta3 I think I _have_ a valid ticket).
In Effect, I want every user to acces its shares on the old linux box like
before but authenticated via the Win2003. Does anybody know what I'm doing
wrong?
Thank you,
jan
2017 Nov 24
0
installing "rgl" package
...tinue to get the same error message,
| please below the output messages in config.log after I ran "./configure")
|
|
| "ii r-cran-rgl 0.93.996-1
| amd64 GNU R package for three-dimensional visualisation
| using OpenGL"
That means you _have_ the rgl package installed, and can stop everything you
are doing.
You do _not_ need to install it from source via R. You have it from Ubuntu.
Dirk
--
http://dirk.eddelbuettel.com | @eddelbuettel | edd at debian.org
2017 Nov 24
2
installing "rgl" package
...gt; | please below the output messages in config.log after I ran "./configure")
> |
> |
> | "ii r-cran-rgl 0.93.996-1
> | amd64 GNU R package for three-dimensional visualisation
> | using OpenGL"
>
> That means you _have_ the rgl package installed, and can stop everything you
> are doing.
>
> You do _not_ need to install it from source via R. You have it from Ubuntu.
>
Actually the version on CRAN is pretty old, so I'd recommend people do
install it from source, getting the source from R-forge....
2007 Jul 27
1
[LLVMdev] PassManager Error
...nalysis info generated by FunctionLevelPass B for 'foo'.
>
> Why? I expect the answer is something like, "because B doesn't exist
> anymore," or, "because you processed function 'bar' with B after
> 'foo.'"
> But why? B doesn't _have_ to exist and it shouldn't necessarily
> matter
> in what order PassManager processes functions. Only the information
> that pass B generates for foo need exist.
That is not true in LLVM. For example, DominatorTree pass maintains
Dominator
info.
> If you're running module-...
2007 Jul 27
0
[LLVMdev] PassManager Error
...Pass C can not
> use analysis info generated by FunctionLevelPass B for 'foo'.
Why? I expect the answer is something like, "because B doesn't exist
anymore," or, "because you processed function 'bar' with B after 'foo.'"
But why? B doesn't _have_ to exist and it shouldn't necessarily matter
in what order PassManager processes functions. Only the information
that pass B generates for foo need exist.
If you're running module-level passes anyway, you're probably burning a bit
of memory to hold state, so maybe keeping around infor...
2004 May 21
2
Zebra and Rip Blocking Broadcast
After installing Zebra for ripd to get win2k routes I am getting this
May 20 23:24:20 ns1 kernel: Shorewall:net2all:DROP:IN=eth0 OUT= MAC=
SRC=64.42.53.202 DST=64.42.53.207 LEN=92 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF
PROTO=UDP SPT=520 DPT=520 LEN=72
May 20 23:25:25 ns1 last message repeated 3 times
I am new to zebra, so I am assuming that this is broadcasting to windoz
for routes weird !!!
2005 Feb 16
2
Anyone having trouble with VoicePulse Connect?
...234.228.170, request
'##########@voicepulse_connect_context' does not exist
where ########## is the number I dialed. Obviously
chan_iax2 knows which of the numbers I dialed, but for
some reason is unable to connect my machine to
voicepulse?
Any troubleshooting tips? This is frustrating! I
_have_ asked a question via my VoicePulse Connect web
account, but I don't know when they will respond.
Thanks,
BeOnIce.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
2013 Nov 20
2
[PATCH net] virtio-net: fix page refcnt leaking when fail to allocate frag skb
On Wed, Nov 20, 2013 at 07:16:33AM -0800, Eric Dumazet wrote:
> On Wed, 2013-11-20 at 10:58 +0200, Michael S. Tsirkin wrote:
> > On Tue, Nov 19, 2013 at 02:00:11PM -0800, Eric Dumazet wrote:
> > > On Tue, 2013-11-19 at 23:53 +0200, Michael S. Tsirkin wrote:
> > >
> > > > Which NIC? Virtio? Prior to 2613af0ed18a11d5c566a81f9a6510b73180660a
> > > >
2013 Nov 20
2
[PATCH net] virtio-net: fix page refcnt leaking when fail to allocate frag skb
On Wed, Nov 20, 2013 at 07:16:33AM -0800, Eric Dumazet wrote:
> On Wed, 2013-11-20 at 10:58 +0200, Michael S. Tsirkin wrote:
> > On Tue, Nov 19, 2013 at 02:00:11PM -0800, Eric Dumazet wrote:
> > > On Tue, 2013-11-19 at 23:53 +0200, Michael S. Tsirkin wrote:
> > >
> > > > Which NIC? Virtio? Prior to 2613af0ed18a11d5c566a81f9a6510b73180660a
> > > >
2008 Feb 07
2
Lustre behaviour when multiple network paths are available?
Hi there,
When Lustre is configured in an environment where there are multiple paths
to the same destination of the same length (i.e. two paths, each one hop
away), which path(s) will be used for sending and receiving data?
I have my cluster configured with two OSTs with two GigE NICs in each. I am
seeing identical performance metrics when I use LACP to aggregate, and when
I use two separate
2007 Jul 27
2
[LLVMdev] PassManager Error
On Jul 26, 2007, at 11:25 AM, David Greene wrote:
> On Thursday 26 July 2007 11:48, Devang Patel wrote:
>
>> If in register allocator you have requested another higher level pass
>> after LiveVariableAnalysis pass then this may happen.
>
> Can you explain why this is so? I would assume that I could
> declare Pass
> dependencies in any order. The manual certainly
2014 Jul 11
2
Avoid returning to menu if boot error happened
Hi
I have a weird early boot bug that most likely happens because of
interaction between syslinux (6.03pre18), btrfs and initram generated
by Linux Arch installer.
For some reason boot fails. Syslinux prints some information and
returns back to the menu. Unfortunately it clears all the messages
from screen. I really want to know what boot process prints there.
Looking at