Saturday, 21 October 2006
|
| Re: Latest linux-compat src patch Alexander Leidinger 12:52:47 |
| | Quoting Ralph Zitz <ralph@zitz.dk> (from Tue, 17 Oct 2006 15:23:35 +0200):
Greetings Alexander> Recently you changed some linux compatibility in the freebsd-current> kernel source. I have a nasty suspicion that the changes broke This is a very broad timeframe. I committed a lot of stuff there in the last weeks.
something. More specifically: I was running the teamspeak port (in> audio/teamspeak_server) which worked fine before the recent changes to> current. However after building a new kernel it has stopped working. To What does this mean? Are there error messages (either from the binary itself or on the console), or does it coredump? Please describe this more, does it start and you can't use it, or doesn't it start at all?
make sure that it was simply me doing something wrong I tried> rebuilding the kernel again from before your patches (ie cvsup with> default date set before your commit). And suddenly the port worked> again. I'm afraid this is the best feedback I can give you. Hopefully> it will be somewhat useful. We need at least the dates of "working" and "not working". It would be great if you could narrow this down to maybe an hour (or maybe a day).
Bye, Alexander.
-- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 I had no shoes and I pitied myself. Then I met a man who had no feet, so I took his shoes. -- Dave Barry
|
| | 7 answers | Add comment |
Friday, 20 October 2006
|
| Wine: CreateSystemHeap errors Frans-Jan v. Steenbeek 23:31:27 |
| | Hi there,
I'm trying to get IE6 running on wine, but I have seen this error many times with other apps:
err:heap:HEAP_CreateSystemHeap system heap base address 0x80000000 not available
This is regardless of the version of wine I use (I tried 0.9.21,1, 0.9.8,1 and 20050724 (or so) from packages and I had 0.9.16,1 originally on my system (from ports))
I am horrible at updating my system, so I'm still on 6.1-PRERELEASE (from -STABLE). Do I need to update in order for this to work? Or is this a wine-related bug that isn't resolved yet?
I seem to recall the same problems with the versions from the first half of 2005. I believe it was solved back then. Am I missing something here?
Thanks and regards (and please CC me, I'm not on the list...),
-- Frans-Jan v. Steenbeek Pakhuisweg 16-II NL-6718XJ Ede the Netherlands
T: 0318 516714 06-43536482 E: frans-jan@van-steenbeek.net
|
| | 4 answer | Add comment |
|
| FreeBSD ports that you maintain which are currently marked broken Guest 01:08:38 |
| | Dear FreeBSD port maintainer:
As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we are attempting to notify maintainers of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc3.4, which is much stricter about such things as function declarations, literal strings constants that continue over several physical lines, and forcing the deprecation of antique header files such as varargs.h (we should now be using stdargs.h).
The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth.
In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide.
If you need help in one or more build environments that you do not have access to, please ask for help on the freebsd-ports mailing list.
One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.)
The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 4.x/5.x/6.x with target architecture'.)
(Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.)
portname: emulators/vmware2 broken because: Unfetchable build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=vmware2
If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past.
Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon <linimon@FreeBSD.org>, so that he can attempt to fix the problem in the future.
Thanks for your efforts to help improve FreeBSD.
|
| | 1 answer | Add comment |
Thursday, 19 October 2006
|
| Report ICA client not working Albert Shih 22:02:49 |
| | Hi all.
Long time ago (6 mounth) I use Linux Citrix ICA client.
Now he do not work. I've just got the splashscreen and that's all, event after 10 minutes I got nothing.
I run Oct 7 FreeBSD-stable with
linux-expat-1.95.8 Linux/i386 binary port of Expat XML-parsing library linux-fontconfig-2.2.3_5 Linux/i386 binary of Fontconfig linux-openmotif-2.2.4_2 Motif toolkit Linux libraries linux-sun-jdk-1.4.2.12 Sun Java Development Kit 1.4 for Linux linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries linux_base-fc-4_9 Base set of packages needed in Linux mode (for i386/amd64)
I don't known when this thing become not working because I'm not a big user of Citrix client.
Regards.
-- Albert SHIH Universite de Paris 7 (Denis DIDEROT) U.F.R. de Mathematiques. 7 i me tage, plateau D, bureau 10 Heure local/Local time: Thu Oct 19 14:40:10 CEST 2006
|
| | 3 answer | Add comment |
Monday, 16 October 2006
|
| Calling FTP With WScript.Shell Bprocket 21:08:02 |
| | I'm having a problem manipulating a FTP session using the WScript.Shell object. In a nutshell, I'm trying to connect to and send a file to an FTP site. Everything appears to work except that the file doesn't arrive. Below is the code in question. I've tried reading the server responses - which I've been able to do - but I don't get any errors returned. What am I doing wrong?
' initialize procedure ' ---------------------------------------------------------------------------- Dim WshShell, oExec, oFTPConsole Dim strDate, strSrcFile, strDestFile, ret Set WshShell = CreateObject("WScript.Shell") Set oExec = WshShell.Exec("%SystemRoot%\System32\ftp -i -n") Set oFTPConsole = oExec.StdIn
' build destination file name string ' ---------------------------------------------------------------------------- ' bunch of string manipulation code
' open connection to ftp site and send output file ' ---------------------------------------------------------------------------- oFTPConsole.WriteLine "open " & DTSGlobalVariables( "ftp_server" ) oFTPConsole.WriteLine"user " & DTSGlobalVariables "ftp_user" ) & " " & DTSGlobalVariables( "ftp_pwd" ) oFTPConsole.WriteLine"send " & strSrcFile & " " & strDestFile oFTPConsole.WriteLine"quit"
' exit function ' ---------------------------------------------------------------------------- Set WshShell= Nothing Set oExec= Nothing Set oFTPConsole= Nothing Set oFTPOut= Nothing Main = DTSTaskExecResult_Success
|
| | Add comment |
|
| emulators/linux-wine: Help in porting to FreeBSD Scot Hetzel 01:21:53 |
| | I'm trying to create a port for emulators/linux-wine, so that we can at least have wine running on FreeBSD/amd64 using the linuxator. This would then silence users who want wine (amd64/104311) to run under FreeBSD/amd64.
Currently, I am having a problem running linux-wine. When it is run as either root or as a user I get the following error:
$ /compat/linux/usr/bin/wine wine: failed to initialize: /usr/lib/wine/ntdll.dll.so: failed to map segment from shared object: Cannot allocate memory
Any idea as to how to solve this problem?
Would anyone be willing to test this port under FreeBSD/i386 and see if your getting the same error?
I'm also seeing:in /var/log/messages:
Oct 14 00:15:48 hp010 kernel: linux: pid 1351 (wine-preloader): syscall prctl not implemented
Scot
-- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised.
|
| | 6 answers | Add comment |
Sunday, 15 October 2006
|
| new patchset after netchild's commits to src Divacky Roman 18:57:34 |
| | hi
www.stud.fit.vutbr.cz/~xdivac02/linuxolator061015.patch
here is a new patchset after netchild commited some stuff from our p4 branch to src.
pls test
roman
|
| | 1 answer | Add comment |
Saturday, 14 October 2006
|
| Gadget . Ouaou.gr 16:57:31 |
| | gadget ! gadget ! , http://r.vresp.com/?HelleniceBusinessSol/e49b7e36eb/730848/2e08429c75/9f11daf browser .
______________________________________________________________________ email ouaou.gr, "Unsubscribe" link
If you no longer wish to receive these emails, please reply to this message with "Unsubscribe" in the subject line or simply click on the following link: http://unsub.vresp.com/u.html?d9a8d4edc0/2e08429c75/9f11daf
______________________________________________________________________ Click below to forward this email to a friend: http://oi.verticalresponse.com/f2af/v4/send_to_friend.html?ch=d9a8d4edc0&ldh=2e08429c75
______________________________________________________________________ This message was sent by Ouaou.gr using VerticalResponse
Hellenic e-Business Solutions 139 Mesogion Avenue Ampelokipi, Attica 11526
Read the VerticalResponse marketing policy:http://www.verticalresponse.com/content/pm_policy.html
|
| | Add comment |
Monday, 9 October 2006
|
| Free VMware server port for FreeBSD? Stephen J. Roznowski 01:21:21 |
| | I noticed a request a while ago for a FreeBSD port of the Free VMware server product....
Has anyone created such a thing?
Thanks, -SR -- Stephen J. Roznowski (sjr@comcast.net)
|
| | Add comment |
Sunday, 8 October 2006
|
| Results of doing a LTP test run with the p4 patches Alexander Leidinger 20:39:34 |
| | Hi,
a test run for 2.4.2 reveals:
-clone05 FAIL 1 +clone05 PASS 0
-fcntl17 PASS 0 +fcntl17 FAIL 1
-setpriority04 FAIL 2 +setpriority04 PASS 0
-wait402 FAIL 2 +wait402 PASS 0
-waitpid04 FAIL 1 +waitpid04 PASS 0
-Total Failures: 164 +Total Failures: 162
The fcntl17 test output is: ---snip--- fcntl17 0 INFO : Enter preparation phase fcntl17 0 INFO : child 3 starting fcntl17 0 INFO : child 3 pid 45870 locked fcntl17 0 INFO : child 3 resuming fcntl17 0 INFO : child 3 lockw err 35 fcntl17 0 INFO : child 3 exiting fcntl17 0 INFO : Enter preparation phase fcntl17 0 INFO : child 1 starting fcntl17 0 INFO : child 1 pid 45868 locked fcntl17 0 INFO : child 1 resuming fcntl17 0 INFO : child 1 unlocked fcntl17 0 INFO : child 1 exiting fcntl17 0 INFO : Enter preparation phase fcntl17 0 INFO : child 2 starting fcntl17 0 INFO : child 2 pid 45869 locked fcntl17 0 INFO : child 2 resuming fcntl17 0 INFO : child 2 lockw locked fcntl17 0 INFO : child 2 exiting fcntl17 0 INFO : Enter preparation phase fcntl17 0 INFO : Exit preparation phase fcntl17 0 INFO : Enter block 1 fcntl17 1 FAIL : locking pid is wrong, should be -19668 is 45868 fcntl17 0 INFO : do_test failed child 1 fcntl17 2 FAIL : locking pid is wrong, should be -19667 is 45869 fcntl17 0 INFO : do_test failed child 2 fcntl17 3 FAIL : locking pid is wrong, should be -19666 is 45870 fcntl17 0 INFO : do_test failed child 3 fcntl17 4 FAIL : locking pid is wrong, should be -19667 is 45869 fcntl17 5 FAIL : locking pid is wrong, should be -19666 is 45870 fcntl17 0 INFO : Block 1 FAILED fcntl17 0 INFO : Exit block 1 ---snip---
I'm a little bit puzzled. The PIDs correspond to the PIDs of the childs, but the expectation looks completely wrong.
Bye, Alexander.
-- I AM DEATH, NOT TAXES. I TURN UP ONLY ONCE. (Feet of Clay) http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137
|
| | 1 answer | Add comment |
Friday, 6 October 2006
|
| Identd in jail. Piotr Chytla 21:18:40 |
| | Hi
Few days ago I've problem with running identd in jail on 4.10-stable I've found that getcred() sysctl isn't permitted from within jail on 4.x. R.Watson suggest some "cheap hack" for this but I've solved this without patching the kernel.
My patched ident gets result of getcred() sysctl from jauthd daemon via unix socket. Jauthd is simply getcred proxy, it gets two sockadddr_in from jailed process and sends ucred.
Jauthd daemon can be extend to verify data recived from jailed process, and of course to listen in many jails .
I know that this isn't far better then "cheap hack" but for sure it don't give getcred sysctl for everyone in the system, and in all jails.
http://fouk.org/~pch/patches/builtins.c.patch
applay this patch to /usr/src/usr.sbin/inetd/builtins.c and add AUTHJAIL to Makefile
http://fouk.org/~pch/patches/jauthd.c
/pch
_______________________________________________
|
| | Add comment |
Thursday, 5 October 2006
|
| Anyone got a working rpm4.1 port? Geoff Buckingham 22:35:49 |
| | Anyone got rpm 4.1 working natively on FreeBSD? (This seems to be when rpmts.h first appeared)
This email was sent to you by Reuters, the global news and information company. To find out more about Reuters visit www.about.reuters.com
Any views expressed in this message are those of the individual sender, except where the sender specifically states them to be the views of Reuters Ltd.
|
| | 2 answer | Add comment |
|
| [ports-i386@FreeBSD.org: linux_kdump-1.5_2 failed on i386 7] Kris Kennaway 21:03:22 |
| | FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it.
See http://pointyhat.freebsd.org for the full log.
Thanks, Kris
----- Forwarded message from User Ports-i386 <ports-i386@FreeBSD.org> -----
X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org X-Original-To: kris@FreeBSD.org Delivered-To: kris@FreeBSD.org Date: Thu, 5 Oct 2006 06:15:43 GMT From: User Ports-i386 <ports-i386@FreeBSD.org> To: kris@FreeBSD.org Subject: linux_kdump-1.5_2 failed on i386 7 X-UIDL: 8Vg"!D/l!!8F8"!-/C"! X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.0.3
building linux_kdump-1.5_2 on gohan34.freebsd.org in directory /x/tmp/7/chroot/65087 building for: 7.0-CURRENT i386 maintained by: freebsd-emulation@FreeBSD.org port directory: /usr/ports/devel/linux_kdump build started at Thu Oct 5 06:03:46 UTC 2006 FETCH_DEPENDS= PATCH_DEPENDS= EXTRACT_DEPENDS= BUILD_DEPENDS=linux_base-gentoo-stage3-2006.0_1.tbz RUN_DEPENDS= prefixes: LOCALBASE=usr/local X11BASE=usr/X11R6 add_pkg ================================================================ ====================<phase 1: make checksum>==================== ===> Using the FreeBSD source tree under /usr/src ===> Set SRCDIR to use an alternate source tree => linux_kdump-1.5.tar.gz doesn't seem to exist in /tmp/distfiles/. => Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles/. linux_kdump-1.5.tar.gz 6166 B 176 kBps => MD5 Checksum OK for linux_kdump-1.5.tar.gz. => SHA256 Checksum OK for linux_kdump-1.5.tar.gz. ================================================================ ====================<phase 2: make extract>==================== add_pkg ===> Using the FreeBSD source tree under /usr/src ===> Set SRCDIR to use an alternate source tree ===> Extracting for linux_kdump-1.5_2 => MD5 Checksum OK for linux_kdump-1.5.tar.gz. => SHA256 Checksum OK for linux_kdump-1.5.tar.gz. ================================================================ ====================<phase 3: make patch>==================== add_pkg ===> Patching for linux_kdump-1.5_2 ===> Applying FreeBSD patches for linux_kdump-1.5_2 ================================================================ ====================<phase 4: make build>==================== add_pkg linux_base-gentoo-stage3-2006.0_1.tbz adding dependencies pkg_add linux_base-gentoo-stage3-2006.0_1.tbz lib/udev/devices/console: Can't restore device node: Operation not permitted lib/udev/devices/null: Can't restore device node: Operation not permitted lib/udev/devices/zero: Can't restore device node: Operation not permitted pkg_add: tar extract of /tmp/depends/linux_base-gentoo-stage3-2006.0_1.tbz failed! pkg_add: unable to extract '/tmp/depends/linux_base-gentoo-stage3-2006.0_1.tbz'! error in dependency linux_base-gentoo-stage3-2006.0_1.tbz, exiting ================================================================ build of /usr/ports/devel/linux_kdump ended at Thu Oct 5 06:15:32 UTC 2006
----- End forwarded message -----
|
| | 2 answer | Add comment |
|
| Re: ports/104015: commit references a PR Dfilter Service 20:30:31 |
| | The following reply was made to PR ports/104015; it has been noted by GNATS.
From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/104015: commit references a PR Date: Thu, 5 Oct 2006 17:21:06 +0000 (UTC)
bsam 2006-10-05 17:20:25 UTC FreeBSD ports repository Modified files: Mk bsd.linux-rpm.mk Log: Redo the comments so they match the other bsd.x.mk files. PR: 104015 Submitted by: whitespace police (edwin) Revision Changes Path 1.11 +23 -23 ports/Mk/bsd.linux-rpm.mk _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
|
| | Add comment |
|
| Re: ports/104015: bsd.linux-rpm.org - comment cleanup Edwin Groothuis 20:21:20 |
| | Synopsis: bsd.linux-rpm.org - comment cleanup
Responsible-Changed-From-To: freebsd-ports-bugs->emulation Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 5 16:18:43 UTC 2006 Responsible-Changed-Why: bsd.linux-rpm.mk is emulation territory
http://www.freebsd.org/cgi/query-pr.cgi?pr=104015
|
| | 1 answer | Add comment |
|
| Re: Need to Emulate Linux.. Boris Samorodov 18:12:23 |
| | Just for archives.
----- Boris Samorodov wrote:> On Thu, 05 Oct 2006 10:32:23 -0400 B. Cook wrote:>
And I'm wondering what is 'lighter/smaller'> linux_base-fc4 or linux_base-suse-9.3> Hello and thank you for the response.
fc4 worked great and was quite a small/quick install.
[/usr/local/ezproxy]# 41 > ./ezproxy EZproxy for Linux 4.0d GA (2006-09-12) Thank you for your purchase of this registered copy of EZproxy. For further information, visit http://www.usefulutilities.com
Guardian initialized Guardian starting EZproxy
EZproxy for Linux 4.0d GA (2006-09-12) Thank you for your purchase of this registered copy of EZproxy. For further information, visit http://www.usefulutilities.com
Thanks again. -----
WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve
|
| | Add comment |
|
| Re: Survey on Video Capture API: BSD meteor(4) vs. Video for Linux 1/2 Alexander Leidinger 13:36:35 |
| | Quoting Intron is my alias on the Internet <intron@intron.ac> (from Thu, 05 Oct 2006 00:28:42 +0800):
If I would code to enhance video capture support for FreeBSD, what video> capture API do you prefer? Your choices: Search the archive of multimedia@ (CCed, maybe someone has a reference), this is a topic which was dicussed there a lot.
Bye, Alexander.
-- I disagree with what you say, but will defend to the death your right to tell such LIES!
http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137
|
| | Add comment |
Wednesday, 4 October 2006
|
| gurgle leadena Judith Forrest 17:23:02 |
| | Energy Prices are near all time low, This is the best time to lock in a quality energy stock
Introducing : WBRS Exchange Pinksheets Price: 0.05 3 Day Estimated : .50 ( +1000%)
WILD BRUSH MAKES A MOVE! Wild Brush Acquires Additional Powder River Oil & Gas Lease.
Who is Wild Brush? Wild Brush Energy is a diversified energy company whose primary goal is to identify and develop Oil & Coalbed Methane sites within the State of Wyoming. In addition, Wild Brush Energy continues to evaluate clean air alternative energy producing technologies such as Wind Power. Wild Brush trades in the U.S. under the symbol "WBRS."
ADD THIS ENERGY STOCK TO YOUR LIST AND WATCH IT TRADE CLOSELY ON WEDNESDAY OCTOBER 4!
Get In NOW !!!
A place in the sun. Spring rain, Fall gold. Your name is mud. Weed it out. Season of mists and mellow fruitfulness. Save it for a rainy day. They're like two peas in a pod. Still waters run deep. A rose by any other name would smell as sweet. As uneasy as a cat near water.
|
| | Add comment |
Monday, 2 October 2006
|
| Re: filedesc copying in fork() John Baldwin 20:51:15 |
| | On Sunday 01 October 2006 12:35, Divacky Roman wrote:> hi>
I am trying to implement CLONE_FS in linuxolator clone(). This flags> is used when we want the newly created thread share root/cwd/umask.> In FreeBSD we have a flags to fork1() RFFDG/RFCFDG. The first one> tells fork1() to copy the filedesc from old proc to the new one.> The later says we should create new filedesc struct. If neither> of these is given the filedesc struct is shared among the processes.> is my analysis correct? I believe so.
currently in the linuxolator we dont set any of this flags passed to> fork1() ie. doing CLONE_FS semantics on default.> I am a little confused from linux behaviour because it seems to me> that they dont share open file descriptors betweeen processes after> fork() which is strange. I have no idea on this one.
-- John Baldwin
|
| | Add comment |
|
| linux driver compat Kyryll A Mirnenko aka Mirya 20:47:20 |
| | Hello. I have ac'97 winmodem but no driver for it for FreeBSD (seems like comon situation). I've recently noticed comms/hcfmdm winmodem driver appeared in ports and pkg-descr says it's just wrapped linux binary driver.
The question is: is it possible to create such a generic wrapper for pci windmodems linux drivers like it was done in ndis(4) or maybe such solution already exists somewhere? -- Regards, Mirya ICQ #313898202
|
| | Add comment |
|
| Re: ports/103901: commit references a PR Dfilter Service 18:10:25 |
| | The following reply was made to PR ports/103901; it has been noted by GNATS.
From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/103901: commit references a PR Date: Mon, 2 Oct 2006 14:01:25 +0000 (UTC)
vd 2006-10-02 14:00:46 UTC FreeBSD ports repository Modified files: Mk bsd.linux-rpm.mk Log: Remove support code for old linux distros PR: ports/103901 Submitted by: vd Approved by: netchild Revision Changes Path 1.10 +2 -8 ports/Mk/bsd.linux-rpm.mk _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
|
| | Add comment |
|
| Re: ports/103901: [patch] bsd.linux-rpm.mk: remove support code for old linux distros Vasil Dimov 18:02:13 |
| | Synopsis: [patch] bsd.linux-rpm.mk: remove support code for old linux distros
Responsible-Changed-From-To: freebsd-ports-bugs->emulation Responsible-Changed-By: vd Responsible-Changed-When: Mon Oct 2 13:48:41 UTC 2006 Responsible-Changed-Why: Assign to maintainers
http://www.freebsd.org/cgi/query-pr.cgi?pr=103901
|
| | 1 answer | Add comment |
|
| [patch] bsd.linux-rpm.mk: remove support code for old linux distros Vasil Dimov 17:46:21 |
| | Submitter-Id:curren t-users>Originator:Vasil Dimov>Organization:N/A>Confidential:no >Synopsis patch] bsd.linux-rpm.mk: remove support code for old linux distros>Severity:non-critical>Priority:low>Category orts>Class:change-request>Release:FreeBSD 6.2-PRERELEASE amd64>Environment:Description: Remove support code in bsd.linux-rpm.mk for linux_base-debian and linux_base-8 which has been deleted.
How-To-Repeat: Fix: --- bsd.linux-rpm.mk_old.diff begins here --- Index: bsd.linux-rpm.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.linux-rpm.mk,v retrieving revision 1.9 diff -u -r1.9 bsd.linux-rpm.mk --- bsd.linux-rpm.mk30 Jul 2006 22:34:30 -00001.9 +++ bsd.linux-rpm.mk2 Oct 2006 12:44:42 -0000 @@ -109,15 +109,11 @@ . if ${USE_LINUX} == "fc4" || ${USE_LINUX:L} == "yes" _LINUX_BASE_SUFFIX=fc4 -. elif ${USE_LINUX} == "debian" -_LINUX_BASE_SUFFIX=debian . elif ${USE_LINUX} == "fc3" _LINUX_BASE_SUFFIX=fc3 -. elif ${USE_LINUX} == "8" -_LINUX_BASE_SUFFIX=8 . else # other linux_base ports do not provide a pkg-plist file -IGNORE=uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\", \"8\", \"debian\", \"fc3\" and \"fc4\" +IGNORE=uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\", \"fc3\" and \"fc4\" . endif PLIST?=${WRKDIR}/.PLIST.linux-rpm --- bsd.linux-rpm.mk_old.diff ends here ---
-- Vasil Dimov gro.DSBeerF@dv % Laugh at your problems: everybody else does.
|
| | 1 answer | Add comment |
Sunday, 1 October 2006
|
| Hosting - Today's best sellers with discounts HostingFreakzz 69 20:03:58 |
| | Looking for a good hosting provider?
The following site lists today's best selling hosting providers for shared and dedicated hosting. http://hosting.woohoow.net
Have fun comparing, and make a good choice! TIP: 1&1 (Of which I can say they really offer reliable solutions) is currently offering 25% discounts on their hosting plans
-- Posted via a free Usenet account from http://www.teranews.com
|
| | Add comment |
Saturday, 30 September 2006
|
| Re: What linux_base for Oracle on AMD64? Boris Samorodov 23:03:39 |
| | Moving the thread to freebsd-emulation@.
On Sat, 30 Sep 2006 14:43:59 -0400 stan wrote:> On Sat, Sep 30, 2006 at 05:51:38PM +0400, Boris Samorodov wrote:> > On Sat, 30 Sep 2006 08:56:53 -0400 stan wrote:> > > The handbook says that I need to install the emulators/linux_base port in order to install> > > Oracle. But when I try to install this port, it says that it is depricated.> >
What ports do I need to install in order to install Oracle on FreeBSD 6.x> > > on an AMD64 architecture machine?> > Current default (maintained) linux base port is linux_base-fc4.> > Thanks, I got that installed. Now what about the linux_devtools port the Handbook referes to? > I can't find such a port. Oops, The handbook seems to be staled at that point.
Linux_devtools was removed. It was used with unsupported linux_base port (which may be removed any time now). It is recommended to use linux_dist ports for development.
You may consider searching mail archieves on Oracle installing. There were some threads about it recently (though I don't recall exact mailing list, but it may be emulation@, current@, stable@).
May be somebody at freebsd-emulation@ list may help you.
WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve
|
| | Add comment |
|