1999-03-15 Alexandre Oliva <oliva@dcc.unicamp.br>
+ * configure.in, libtool.spec, NEWS: bump to 1.2g
+
* configure.in, libtool.spec: bump to 1.2f
* doc/PLATFORMS: ditto
* NEWS: libtool 1.2f released
NEWS - list of user-visible changes between releases of GNU Libtool
+New in 1.2g: CVS version, Libtool team:
+* Nothing so far
+
New in 1.2e: CVS version; 1.2f: 1999-03-15, Libtool team:
* libtool will correctly link uninstalled libraries into programs
and prefer uninstalled libraries to installed ones
AC_INIT(ltmain.in)
-AM_INIT_AUTOMAKE(libtool, 1.2f)
+AM_INIT_AUTOMAKE(libtool, 1.2g)
# This is a sanity check so we can see which version is used in bug reports.
# It is assumed that we only want to see the date extension for cvs libtool
+++ /dev/null
-# A brief demonstration of inter-library dependencies
-#
-
-INCLUDES = -I$(top_srcdir)
-
-lib_LTLIBRARIES = libl1.la
-libl1_la_SOURCES = l1.c l1.h
+++ /dev/null
-/* l1.c -- trivial test library
- Copyright (C) 1998-1999 Thomas Tanner <tanner@gmx.de>
- This file is part of GNU Libtool.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA. */
-
-#include "l1/l1.h"
-#include <stdio.h>
-
-int var_l1;
-
-int
-func_l1(int indent)
-{
- int i;
-
- for (i = 0; i < indent; i++)
- putchar(' ');
- printf("l1\n");
- return 0;
-}
+++ /dev/null
-/* l1.h -- interface to a trivial library
- Copyright (C) 1998-1999 Thomas Tanner <tanner@gmx.de>
- This file is part of GNU Libtool.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA. */
-
-/* Only include this header file once. */
-#ifndef _L1_H_
-#define _L1_H_ 1
-
-#include "sysdep.h"
-
-__BEGIN_DECLS
-extern int var_l1;
-int func_l1 __P((int));
-__END_DECLS
-
-#endif /* !_L1_H_ */
+++ /dev/null
-# A brief demonstration of inter-library dependencies
-#
-
-INCLUDES = -I$(top_srcdir)
-
-lib_LTLIBRARIES = libl2.la
-libl2_la_SOURCES = l2.c l2.h
-libl2_la_LIBADD = $(top_builddir)/l1/libl1.la
+++ /dev/null
-/* l2.c -- trivial test library
- Copyright (C) 1998-1999 Thomas Tanner <tanner@gmx.de>
- This file is part of GNU Libtool.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA. */
-
-#include "l2/l2.h"
-
-#include "l1/l1.h"
-#include <stdio.h>
-
-int var_l2;
-
-int
-func_l2(int indent)
-{
- int i;
-
- for (i = 0; i < indent; i++)
- putchar(' ');
- printf("l2\n");
- func_l1(indent+1);
- return 0;
-}
+++ /dev/null
-/* l2.h -- interface to a trivial library
- Copyright (C) 1998-1999 Thomas Tanner <tanner@gmx.de>
- This file is part of GNU Libtool.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA. */
-
-/* Only include this header file once. */
-#ifndef _L2_H_
-#define _L2_H_ 1
-
-#include "sysdep.h"
-
-__BEGIN_DECLS
-extern int var_l2;
-int func_l2 __P((int));
-__END_DECLS
-
-#endif /* !_L2_H_ */
+++ /dev/null
-# A brief demonstration of inter-library dependencies
-#
-
-INCLUDES = -I$(top_srcdir)
-
-lib_LTLIBRARIES = libl3.la
-libl3_la_SOURCES = l3.c l3.h
-libl3_la_LIBADD = $(top_builddir)/l1/libl1.la $(top_builddir)/l2/libl2.la
+++ /dev/null
-/* l3.c -- trivial test library
- Copyright (C) 1998-1999 Thomas Tanner <tanner@gmx.de>
- This file is part of GNU Libtool.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA. */
-
-#include "l3/l3.h"
-
-#include "l1/l1.h"
-#include "l2/l2.h"
-#include <stdio.h>
-
-int var_l3;
-
-int
-func_l3(int indent)
-{
- int i;
-
- for (i = 0; i < indent; i++)
- putchar(' ');
- printf("l3\n");
- func_l1(indent+1);
- func_l2(indent+1);
- return 0;
-}
+++ /dev/null
-/* l3.h -- interface to a trivial library
- Copyright (C) 1998-1999 Thomas Tanner <tanner@gmx.de>
- This file is part of GNU Libtool.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA. */
-
-/* Only include this header file once. */
-#ifndef _L3_H_
-#define _L3_H_ 1
-
-#include "sysdep.h"
-
-__BEGIN_DECLS
-extern int var_l3;
-int func_l3 __P((int));
-__END_DECLS
-
-#endif /* !_L3_H_ */
+++ /dev/null
-# A brief demonstration of inter-library dependencies
-#
-
-INCLUDES = -I$(top_srcdir)
-
-lib_LTLIBRARIES = libl4.la
-libl4_la_SOURCES = l4.c l4.h
-libl4_la_LIBADD = $(top_builddir)/l3/libl3.la
+++ /dev/null
-/* l4.c -- trivial test library
- Copyright (C) 1998-1999 Thomas Tanner <tanner@gmx.de>
- This file is part of GNU Libtool.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA. */
-
-#include "l4/l4.h"
-
-#include "l3/l3.h"
-#include <stdio.h>
-
-#ifdef HAVE_MATH_H
-#include <math.h>
-#endif
-
-int var_l4;
-
-int
-func_l4(int indent)
-{
- int i;
-
- for (i = 0; i < indent; i++)
- putchar(' ');
- printf("l4\n");
- func_l3(indent+1);
- for (i = 0; i <= indent; i++)
- putchar(' ');
- printf("libm [sin(1.5) = %f]\n", sin(1.5));
- return 0;
-}
+++ /dev/null
-/* l4.h -- interface to a trivial library
- Copyright (C) 1998-1999 Thomas Tanner <tanner@gmx.de>
- This file is part of GNU Libtool.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA. */
-
-/* Only include this header file once. */
-#ifndef _L4_H_
-#define _L4_H_ 1
-
-#include "sysdep.h"
-
-__BEGIN_DECLS
-extern int var_l4;
-int func_l4 __P((int));
-__END_DECLS
-
-#endif /* !_L4_H_ */
Summary: GNU Libtool - shared library support for source packages
Name: libtool
-Version: 1.2f
+Version: 1.2g
Release: 1
Copyright: GPL
Group: Development/Build