similar to: Trouble building 1.2.2p1 on Solaris 2.7

Displaying 20 results from an estimated 10000 matches similar to: "Trouble building 1.2.2p1 on Solaris 2.7"

2000 Mar 13
1
checking for OpenSSL/SSLeay directory.....
This is a request for a little more detailed information regarding the fix for the 1.2.2p1 on Solaris 7. Jay referenced missing quotes in the configure.in file, however I was unable to match his reference. I have installed openssl with rsa support in the /usr/local/ssl directory and set the LDFLAGS, LIBS and CFLAGS env variables before configuring (with egd pool option). I have also tried
2000 Mar 11
3
TEST RELEASE: openssh-1.2.3pre1
I have just uploaded a test release of 1.2.3. It includes numerous fixes from the OpenBSD team and should fix the stupid configure bugs of 1.2.2p1. http://violet.ibs.com.au/openssh/files/test/ A detailed ChangeLog is in the directory. Please report successes and failures. Regards, Damien Miller -- | "Bombay is 250ms from New York in the new world order" - Alan Cox | Damien Miller -
2000 Mar 23
1
Found a bug in the OpsnSSH configuration script
[I'm cc:ing openssl-users at openssl.org, because questions about this are getting there over and over...] There's a problem that several people who installed OpenSSL to be able to uyse OpenSSH have faced: Could not find working SSLeay / OpenSSL libraries, please install I don't recall how SSLeay was installed, but for OpenSSL, there's a glitch in the way it tries to find
2000 Mar 13
4
A few more Solaris 7 bugs in 1.2.3pre2
These are all in the port of 1.2.3pre2: - configure accepts --includedir, but doesn't seem to pass it on to the Makefile. You have to edit the Makefile manually if you have include files anywhere but /usr/include. Which is a problem because... - The Makefile doesn't include /usr/local/include by default, which is where zlib installs itself by default. Probably oughta be in there.
2000 Mar 09
0
Can not configure openssh-1.2.2p1
(I'm not subscribed to the list, so if you have any comments, please mail them to me directly.) Thanks for openssh! I downloaded openssh-1.2.2p1 and found I could not configure it on my linux 2.2.15pre13 i686 kernel. The error I got was: configure: error: Could not find working SSLeay / OpenSSL libraries, please install I had previously installed openssl (first 0.9.4 and then 0.9.5) into
2000 Mar 15
3
1.2.3pre2 works great on Solaris 2.7 except man
Right out of the box (after I made Damien's LDFLAGS fix in configure) using gcc-2.95.2. The only problem I have now is the man pages. I still can't read them using Solaris nroff, and when I tried to build with --with-catman=cat, I got the following during a make install: /rtr/bin/install -c -m 644 ssh.[01].out /usr/local/man/cat1/ssh.1 Try `/rtr/bin/install --help' for more
2007 Aug 13
2
Backtrace tweaker - broken or me?
Using 1.0.8, I just realized that I''ve been scrolling through pages of backtraces when rspec is supposed to clean them up for me. This is a new development machine, so I''m not sure if older versions worked or not. I''m running Ruby 1.8.6, Rails edge, Mac OS X 10.4.10. I''ve verified that the QuietBacktraceTweaker is the one that''s running.
2008 Jun 14
1
Caseless folder delivery?
I'm using exim4 to deliver into dovecot 1.1, and using plus-addressing to deliver mailing lists directly to appropriate folders in my "lists" mailbox. I created a file called /folder-map.lists that looks like ## folder-map.lists dovecot: Dovecot lpedge: Linux PowerEdge ... and so on. So mail to lists-lpedge at jay.fm goes to the "Linux PowerEdge" folder. The one
2006 Oct 17
3
Should fixtures be transactional?
I started using the new Model.should_have(1).records expectation in rspec_on_rails, and quickly realized that my fixtures were remaining loaded, even in contexts that didn''t use them. Bug or feature? Jay Levitt
2008 Jun 14
2
FTS/squat search indexes built when?
I know that a given search index doesn't get built the first time until you do an actual search on it from an IMAP client. I don't much care about that; I'm the only user, and I don't create new folders too often. At worst, I could create a script to go search every folder once. But what I'm not clear about: Does it then get updated on every delivery by LDA? Or does the
2006 Nov 06
1
Integration testing: coupling of get and post on forms
This is such a vague request it''s not even worthy of a ticket, but: When rspec does support integration testing, it''d be really nice to be able to do things like this plugin does for standard Rails tests: http://www.jasongarber.com/articles/2006/10/24/easier-testing-of-forms-form_test_helper In a nutshell, it finally closes the loop between "the empty form sent by a
2006 Nov 07
1
RSpec/Selenium start_browser_once patch?
The 0.7.0 vendor/selenium/README.txt references a "start_browser_once.patch" file. This doesn''t seem to be included in either the rspec or selenium-rc distributions, and Google finds nothing... where might I find that patch? Jay Levitt
2008 Aug 28
2
HostName not quite working as expected?
Setting up a few hosts in a small domain, I thought I'd save keystrokes by defining ssh_config aliases for their non-canonicalized names. For example: Host myhost HostName myhost.example.com Host *.example.com Port 23 ... I would have expected that "ssh myhost" would then start a session on port 23 (instead of 22). And I've seen blog/list posts that suggest the same
2006 Nov 07
1
Should Selenium support be doing rollbacks?
Now that 0.7.0 is forcing me to write properly compartmented specs, I thought I''d give the "dead easy Selenium support" a try. Is it supposed to all the things that rspec normally does for me, or is it just for using rspec-like grammar to surround Selenium tests? Specifically, should it roll back the database between specifications? I just did a quick test, and the result
2007 Aug 27
7
Foreign key constraints, fixtures, and rake task
I''ve got a spec that loads a fixture in the "before" block. This works fine running scripts/spec, but when I run rake spec instead, I get: ActiveRecord::StatementInvalid in ''User in fixture :quentin with an IM service but no IM name should be invalid'' Mysql::Error: Cannot delete or update a parent row: a foreign key constraint fails
2007 Aug 29
0
Re: Soft failing deleting-type migrations
On 29 Aug 2007, at 03:02, Jay Levitt wrote: > > But I can see an argument that keeping the current behavior is > desirable to ensure the correctness of a production system. So what > if it were an option - SOFT_FAIL_DROPS=[none|up|down|both] - that > defaulted to "both" on development, "down" on test, and "none" on > production? > Or maybe on
2006 Jul 24
9
Mongrel: auto-reload plugins?
When developing applications, Webrick will automatically reload controllers, models, etc. if the source changes. For obvious reasons, it doesn''t do this for plugins, which makes it a pain to develop said plugins. I was hoping Mongrel might have some facility to say "watch this directory too and reload any changes". Obviously, re-init''ing all plugins would be
2006 Feb 05
1
HELP
HELP!!! Someone is forging my domain to spam AOL accounts. Anyone know how I can stop this. I have deleted 400 - 500 of these over the last 2 days. TIA!!!!! -----Original Message----- From: Mail Delivery Subsystem [mailto:MAILER-DAEMON at palmettodomains.com] Sent: Sunday, February 05, 2006 9:55 AM To: apache at palmettodomains.com Subject: Returned mail: see transcript for details The
2011 Sep 27
2
udev-devel or libudev-devel on CentOS 5.6
Hi, Is there libudev-devel or udev-devel package available on CentOS 5.6 ? [root@~]# yum search udev-devel Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: centos.aol.in * extras: centos.aol.in * updates: centos.aol.in base | 1.1 kB 00:00 extras | 2.1 kB 00:00 updates | 1.9 kB 00:00 Warning: No matches found for: udev-devel No Matches
2006 Apr 08
1
Welcome to Your WebMD Health Newsletters
Dear WebMD with AOL Health Member: Congratulations on becoming a newsletter subscriber! You''ll be getting the latest health news and the best information WebMD has to offer. We also want to make sure you know some of the best ways to seek information on WebMD. Every day, we showcase different WebMD features that just may affect you. See the latest in our News Center. Features --