[comp.lang.c++] boosting libg++

baud@gt-eedsp.gatech.edu (Kurt Baudendistel) (07/13/89)

In article <6590194@hplsla.HP.COM> jima@hplsla.HP.COM (Jim Adcock) writes:
>Does a conforming C++ compiler have to provide streams?  complex numbers?
>Standard C libraries? -- Kind of hard to do anything without these.

Jim has hit the proverbial nail on the head. What exactly are the standard
parts of the g++ library and how do restrictions on them mesh with the
stated goals of the GNU project?

For ``closed'' software products such as compilers and editors, the FSF
distributes useful tools to the masses free of charge, making their lives
easier in the process. I call these ``closed'' products, because they
are used without ``additions'' being applied to them. This is important
because in this case, the copyleft is not forced on products produced
by programmers using these products.

If the FSF can pick up some donations of money or programmers time for 
product extensions, support, or bug location for these ``closed'' products,
that's great. The organization appears to welcome and appreciate the
effort, and all users of the products benefit accordingly.

For ``open'' software products, however, things are not so straight-
forward. ``Open'' products such as libc or libg++ are useful (almost
exclusively) as items to be included as part of the whole system
and extended. It is for this reason that they propogate the copyleft
to anything they are used with.  This is detrimental to their use 
for several reasons:

1. A user who would like to use canned library facilities, such as
   complex classes or printf, just like he uses canned compiler 
   facilities, such as floating point multiplication,
   is not allowed to. The user is constrained by the copyleft
   in how he can use such library facilities.

   But how useful is the compiler without library facilities?
   Most programmers think that printf is part of the C language.
   And it is, in a sense, because of its standardization of i/o.

   This is a shame for C++ since its usefulness lies in its extensibility.
   If ``extended'' C++ was provided, such as via a standard vector
   and matrix manipulation class, people would like to use it.

2. A user who would like to develop new library facilities cannot
   justify releasing them to FSF. If he releases them, he cannot use
   them except under penalty of copyleft.

   This is a shame, because we should want to motivate such people to
   contribute to libg++ and make it better for all of us.

This prompts two questions.

1. Could libg++ be distributed in a ``binary'' form so that those
   who wish to use libg++ without modification can escape the 
   copyleft? This would seem to be pretty easy. 
   
   Inclusion of header files such as ``stdio.h'' 
   do not force a copyleft on a program, so why should ``complex.h''
   or ``matrix.h''? 

2. Or, even better in my opinion, could the copyleft be modified
   somehow so that use of libg++ would exempted from it if either

   a. the user did not extend libg++ in a substantial manner, or

   b. the user provided the FSF with rights to classes developed to
      work with libg++.

   This would be harder to write into the copyleft, but would really
   motivate people to develop classes. If people are producing a lot
   of free software, isn't that better than people producing not a 
   lot of free software?

I recognize that this may seem to fly in the face of the spirit of the
copyleft, but lets be realistic. If we are going to present ``free''
tools to people (such as gcc) and then present some more powerful tools
(such as g++) but throttle the usefulness of these new tools (by
restricting the usefulness of libg++ via the copyleft), are we really
working above board? 

I don't see the point of letting g++ be used without restrictions (as
of the copyleft) but restricting use of libg++ (with the copyleft).

what do you think?
kurt
-- 
Kurt Baudendistel --- GRA
Georgia Tech, School of Electrical Engineering, Atlanta, GA  30332
internet: baud@eedsp.gatech.edu         uucp: gatech!gt-eedsp!baud

henry@utzoo.uucp (Henry Spencer) (07/13/89)

In article <318@gt-eedsp.gatech.edu> baud@gt-eedsp.UUCP (Kurt Baudendistel) writes:
>...I recognize that this may seem to fly in the face of the spirit of the
>copyleft, but lets be realistic. If we are going to present ``free''
>tools to people (such as gcc) and then present some more powerful tools
>(such as g++) but throttle the usefulness of these new tools (by
>restricting the usefulness of libg++ via the copyleft), are we really
>working above board? 

You are suffering from a fundamental misunderstanding:  that the FSF's main
objective is to give away its software.  Wrong.  The FSF's primary goal
is to make *you* give away *your* software.  The bait is all the FSF
goodies; the hook inside is the requirement that you adopt FSF's beliefs
on software distribution.  The fact that you can nibble on some of the
bait without touching the hook is not an inconsistency; it's a free
sample to lure you into the candy store.  There is nothing unrealistic or
inconsistent about FSF's behavior, and hoping for changes in this is
foolish -- this is a religious issue that goes straight to the heart of
FSF's real motives.
-- 
$10 million equals 18 PM       |     Henry Spencer at U of Toronto Zoology
(Pentagon-Minutes). -Tom Neff  | uunet!attcan!utzoo!henry henry@zoo.toronto.edu

mhyman@hsfmsh.UUCP (Marco S. Hyman) (07/13/89)

Remember, using C++ or G++ does not stop you from using the standard C
library.  There is nothing in libg++ that you MUST have.   If the GNU
copyleft does not fit you needs you can alway build your own libg++.

Try replacing libg++ with a dummy library.  I used a single source file
that consisted of the line:

	const char * const LibVersion = "$Revision$;

Now try to compile your programs with g++.  You'll quickly find out what you
need to add to the library.  Need streams, write them.  All it ``costs'' is
your time.  Don't have the time? Use printf or puts, etc.

--marc
-- 
//Marco S. Hyman
//UUCP:   ...!sun!sfsun!hsfmsh!mhyman
//Domain: sfsun!hsfmsh!mhyman@sun.com

jima@hplsla.HP.COM (Jim Adcock) (07/15/89)

>You are suffering from a fundamental misunderstanding:  that the FSF's main
>objective is to give away its software.  Wrong.  The FSF's primary goal
>is to make *you* give away *your* software.  The bait is all the FSF
>goodies; the hook inside is the requirement that you adopt FSF's beliefs
>on software distribution.  The fact that you can nibble on some of the
>bait without touching the hook is not an inconsistency; it's a free
>sample to lure you into the candy store.  There is nothing unrealistic or
>inconsistent about FSF's behavior, and hoping for changes in this is
>foolish -- this is a religious issue that goes straight to the heart of
>FSF's real motives.

I don't agree with these motives, but its a free country, and if Stallman
wants to stick to this, thats his problem.  I believe Stallman's approach
only leads to more software hoarding, since I cannot afford to freely 
distribute software that then FSF sticks their copyleft on -- preventing
my future use of derivatives of my own software.  So Stallman does to us 
what he'd prevent others from doing to him.  But that's his problem.

I do have a problem however, with people who use my money to support Stallman's
goals.  Correct me if I'm wrong, but I believe libg++ was developed with 
the help of MCC, which in turn is supported by corporate money from many of
the large computer companies.  Similarly, OOPS was developed at NIH with
all our tax dollars, and legally should not be restricted.  And many other
C++ libraries are developed at universities with government grant money
that also precludes restrictions placed on their use.

So let Stallman place his copyleft on software developed by FSF directly --
but not on software developed with your or my money.  This is where I believe
the line is crossed.

mhyman@hsfmsh.UUCP (Marco S. Hyman) (07/18/89)

In article <6590198@hplsla.HP.COM> jima@hplsla.HP.COM (Jim Adcock) writes:
> Similarly, OOPS was developed at NIH with
> all our tax dollars, and legally should not be restricted.

At the beginning of every file in oops (at least all the ones I looked at)
there is the following statement:

        THIS SOFTWARE FITS THE DESCRIPTION IN THE U.S. COPYRIGHT ACT OF A
        "UNITED STATES GOVERNMENT WORK".  IT WAS WRITTEN AS A PART OF THE
        AUTHOR'S OFFICIAL DUTIES AS A GOVERNMENT EMPLOYEE.  THIS MEANS IT
        CANNOT BE COPYRIGHTED.  THIS SOFTWARE IS FREELY AVAILABLE TO THE
        PUBLIC FOR USE WITHOUT A COPYRIGHT NOTICE, AND THERE ARE NO
        RESTRICTIONS ON ITS USE, NOW OR SUBSEQUENTLY.

I think that counts as ``not restricted.''

--marc
-- 
//Marco S. Hyman
//UUCP:   ...!sun!sfsun!hsfmsh!mhyman
//Domain: sfsun!hsfmsh!mhyman@sun.com

keith@nih-csl.UUCP (keith gorlen) (07/27/89)

In article <6590198@hplsla.HP.COM>, jima@hplsla.HP.COM (Jim Adcock) writes:
> the large computer companies.  Similarly, OOPS was developed at NIH with
> all our tax dollars, and legally should not be restricted.  And many other
> C++ libraries are developed at universities with government grant money
> that also precludes restrictions placed on their use.
> 
> So let Stallman place his copyleft on software developed by FSF directly --
> but not on software developed with your or my money.  This is where I believe
> the line is crossed.

The OOPS (now the NIH) Class Library is a "U.S. Government Work", and
is therefore not copyrightable (or copyleftable).  Every significant
file in the distribution states this, with the exception of the files
"regex.c" and "regex.h", which bear the FSF copyright.  If someone
knows of a version that is being distributed with a copyright notice,
I'd like to know about it (via private communication, please).
-- 
	Keith Gorlen			phone: (301) 496-5363
	Building 12A, Room 2017		uucp: uunet!nih-csl!keith
	National Institutes of Health	Internet: keith@alw.nih.gov
	Bethesda, MD 20892

vaughan@mcc.com (Paul Vaughan) (07/27/89)

	Regardless of whether the copyleft would be enforced in the
courts, it's in our best and most ethical interests to see that it
stays out of the courts by obeying the letter and spirit of the GNU
Manifesto.  After all, it's their stuff.  My personal belief is that
they should be able to put whatever restrictions they like on it.
Just because we know about it and want it doesn't mean we have to use
it.  Only if it became difficult to avoid (such as a virus) as opposed
to requiring effort to obtain would we have any ethical recourse.
	Now for an interesting question.  If someone created a program
that used Gorlen's OOPS in conjunction with lib-g++, would it be legal
(and ethical) to distribute the resulting binary under any terms?  How
about a non PD, non GNU, but partially distributable library and lib-g++,
where the copyleft and the copyright are in conflict?

 Paul Vaughan, MCC CAD Program | ARPA: vaughan@mcc.com | Phone: [512] 338-3639
 Box 200195, Austin, TX 78720  | UUCP: ...!cs.utexas.edu!milano!cadillac!vaughan