Slashdot Mirror


Microsoft to Buy Rational and/or Borland?

oblivious writes "I got this in e-mail this evening: According to a Reuters report that crossed the wires late today, the speculation is that Microsoft will make bids to buy both Rational and Borland. Shares of both Rational and Borland are up on the news, and so far both IBM and Microsoft have no comment on this report." We recently ran a story about IBMs planned purchase of Rational. Chris didn't make clear in here - it's not that Microsoft might buy both, but that Borland might be a likely target, if a bid to buy Rational out from under IBM fails, which it is likely too. Rational and IBM have signed the substantive portion of the agreement already, so any sort of counter bid would have some fun legal consequences for all involved.

6 of 475 comments (clear)

  1. Remove the competition... by larien · · Score: 5, Interesting
    This would basically be MS buying two competitors. Rational Clearcase competes with Visual Sourcesafe and Borland's development products obviously compete with Visual Studio (as well as doing a fair bit with Java, which MS probably don't like).

    If this is true, they've obviously decided to really flip the bird to the courts...

    1. Re:Remove the competition... by Paul+Komarek · · Score: 4, Interesting

      I don't think they'd keep Visual Sourcesafe if they had access to Clearcase. I've met some anti-open-source-and-Free-software people (and regular people, too) that use cvs because Visual Sourcesafe is so bad.

      That said, I'm not real impressed by Clearcase either. But I've never heard of it being so bad that users preferred cvs.

      -Paul Komarek

  2. Microsoft The Rampant Purchaser by SmartGamer · · Score: 4, Interesting

    Sheesh! This is getting way out of hand, and the government really needs to step in and do something.

    Micro$oft has been on a buying spree recently. Rareware was one of its more recent aquisitions, much to my horror. They had good games; now, I'll avoid them on general principle.

    M$ is trying to expand by assimilation. Don't have the tools/knowledge/brains/experience to corner a market? Just buy someone who does! If they don't sell, drive them out of business!

    This chain will only end with complete Microsoft control of the world- literally- or M$ gets broken up. The government has to step in and cause the second.

    Microsoft's "Buy Or Kill" strategy is, unfortunately, an effective one. Destroy all competition, by taking what they have, if possible; expand to new markets by buying the leader of the industry.

    End result? A Microsoft monopoly on almost every technological market.

    *whimper*

    --
    Warning: Poster of this comment is a nerd. Just like everybody else here.
  3. Re:Hate to say it but.. by mcguirez · · Score: 5, Interesting

    Well Borland is profitable:

    roughly 5m/quarter for the past 4...

    That's 8% net profit margin - now this isn't
    Microsoft level profits but it's probably
    ethically obtained!

    --
    When you hear hoofbeats, think horses, not zebras
  4. Re:HOLY HELL! by z2000 · · Score: 4, Interesting

    Um, two words: Visual J#

    They essentially did resurrect Visual J++ by morphing Java to work with the .Net common language infrastructure. Looks like Java, smells like Java - but it's 'I can't believe it's not Java'.

    Microsoft is afraid of losing their visual modeling partner. The bad part is that Borland's new modeling solution TogetherJ doesn't support the Microsoft platform. Rational's XDE does. If IBM gets Rational, Microsoft loses it's status with Rational as a first class platform, and Borland would be something of a consolation prize. I doubt that Microsoft would want to buy Borland because it would probably take less development resources to make Visio into a decent UML modeling tool than it would to make Together support their platform. Also, if I'm not mistaken TogetherJ is written in Java, a cardinal MS no-no.

  5. Re:Who need Borland or Rational? by IamTheRealMike · · Score: 4, Interesting
    There are free IDEs (Eclipse, Forte), and there are free UML tools (ArgoUML, probably others)

    Indeed, but what makes Delphi so unique and special isn't so much the IDE (though the IDE is excellent), it's the compiler.

    Delphi is fast. I mean, really fast. No other compiler comes close. To put things in perspective, when Borland first added multiple error reporting to the compiler (ie one compile would report more than one error) I didn't understand why they did it. I hadn't seen javac at that point. I didn't understand, because it was actually faster for me to press Ctrl-f9 to trigger a recompile in order to move to the next error, than it was to move my hands from the keyboard to the mouse and back again.

    Their compiler is that fast. It can do a project with over 100,000 lines of code I have sitting here in less than 8 seconds. The resultant binaries are tight. When I tried my first C++ program, I was astonished at how long it took to compile as it read in all the headers etc. I was sure I must have done something wrong.

    Part of the reason it's so fast is just long history, Borland have had a lot of time to optimize it, but the other was the language design. Object Pascal is designed for fast compiles. For instance, it doesn't use headers, but each compiled unit (.dcu -> .o) included header information with it, meaning it's insanely fast to link them together. It also has excellent remake logic, if you only touched one file, only one file was recompiled. There is no [preprocessor, so the compiler can be single pass.