]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* configure.in, libtool.spec, NEWS: bump to 1.2g
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Mon, 15 Mar 1999 19:57:26 +0000 (19:57 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Mon, 15 Mar 1999 19:57:26 +0000 (19:57 +0000)
16 files changed:
ChangeLog
NEWS
configure.in
depdemo/l1/Makefile.am [deleted file]
depdemo/l1/l1.c [deleted file]
depdemo/l1/l1.h [deleted file]
depdemo/l2/Makefile.am [deleted file]
depdemo/l2/l2.c [deleted file]
depdemo/l2/l2.h [deleted file]
depdemo/l3/Makefile.am [deleted file]
depdemo/l3/l3.c [deleted file]
depdemo/l3/l3.h [deleted file]
depdemo/l4/Makefile.am [deleted file]
depdemo/l4/l4.c [deleted file]
depdemo/l4/l4.h [deleted file]
libtool.spec

index 5e87035148287f63b339cac9d12fb1420d47f733..0ce9cc0c5feddb5710bf880f85a2a3226cebe6d6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 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
diff --git a/NEWS b/NEWS
index e847a27f49d5bdef429e90f8362f570e3e83b5f3..caac526a7136a76a38e8e143d7bc2c401c9d2355 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
 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
index 3f89d8fa3dead1378081ce29185f1fcd03469ebe..ab22aac08403c1edd226da9b18f4fe92527ab11c 100644 (file)
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to create configure.
 
 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
diff --git a/depdemo/l1/Makefile.am b/depdemo/l1/Makefile.am
deleted file mode 100644 (file)
index c5a22ed..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-# A brief demonstration of inter-library dependencies
-#
-
-INCLUDES = -I$(top_srcdir)
-
-lib_LTLIBRARIES = libl1.la
-libl1_la_SOURCES = l1.c l1.h
diff --git a/depdemo/l1/l1.c b/depdemo/l1/l1.c
deleted file mode 100644 (file)
index 2a428ba..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/* 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; 
-}
diff --git a/depdemo/l1/l1.h b/depdemo/l1/l1.h
deleted file mode 100644 (file)
index 0287a14..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* 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_ */
diff --git a/depdemo/l2/Makefile.am b/depdemo/l2/Makefile.am
deleted file mode 100644 (file)
index 6509f3b..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# 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
diff --git a/depdemo/l2/l2.c b/depdemo/l2/l2.c
deleted file mode 100644 (file)
index b9539fc..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/* 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; 
-}
diff --git a/depdemo/l2/l2.h b/depdemo/l2/l2.h
deleted file mode 100644 (file)
index 9ccd833..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* 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_ */
diff --git a/depdemo/l3/Makefile.am b/depdemo/l3/Makefile.am
deleted file mode 100644 (file)
index ed28ea1..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# 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
diff --git a/depdemo/l3/l3.c b/depdemo/l3/l3.c
deleted file mode 100644 (file)
index d085b56..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* 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; 
-}
diff --git a/depdemo/l3/l3.h b/depdemo/l3/l3.h
deleted file mode 100644 (file)
index 2069c51..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* 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_ */
diff --git a/depdemo/l4/Makefile.am b/depdemo/l4/Makefile.am
deleted file mode 100644 (file)
index 1bfea22..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# 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
diff --git a/depdemo/l4/l4.c b/depdemo/l4/l4.c
deleted file mode 100644 (file)
index d44f501..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/* 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; 
-}
diff --git a/depdemo/l4/l4.h b/depdemo/l4/l4.h
deleted file mode 100644 (file)
index b0099af..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* 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_ */
index da4b2fedf0f7eb4507fee48e478e802dee0814d5..0b1a949aedc5646f70820da574b81094bff800a7 100644 (file)
@@ -1,6 +1,6 @@
 Summary: GNU Libtool - shared library support for source packages
 Name: libtool
-Version: 1.2f
+Version: 1.2g
 Release: 1
 Copyright: GPL
 Group: Development/Build