From: Alexandre Oliva Date: Mon, 15 Mar 1999 19:57:26 +0000 (+0000) Subject: * configure.in, libtool.spec, NEWS: bump to 1.2g X-Git-Tag: release-1-3~128 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a7b8e25129beaa0c24449e1e69979f2a5a46f72d;p=thirdparty%2Flibtool.git * configure.in, libtool.spec, NEWS: bump to 1.2g --- diff --git a/ChangeLog b/ChangeLog index 5e8703514..0ce9cc0c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 1999-03-15 Alexandre Oliva + * 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 e847a27f4..caac526a7 100644 --- 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 diff --git a/configure.in b/configure.in index 3f89d8fa3..ab22aac08 100644 --- a/configure.in +++ b/configure.in @@ -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 index c5a22ed49..000000000 --- a/depdemo/l1/Makefile.am +++ /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 index 2a428ba27..000000000 --- a/depdemo/l1/l1.c +++ /dev/null @@ -1,34 +0,0 @@ -/* l1.c -- trivial test library - Copyright (C) 1998-1999 Thomas Tanner - 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 - -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 index 0287a1407..000000000 --- a/depdemo/l1/l1.h +++ /dev/null @@ -1,31 +0,0 @@ -/* l1.h -- interface to a trivial library - Copyright (C) 1998-1999 Thomas Tanner - 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 index 6509f3b0e..000000000 --- a/depdemo/l2/Makefile.am +++ /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 index b9539fc0a..000000000 --- a/depdemo/l2/l2.c +++ /dev/null @@ -1,37 +0,0 @@ -/* l2.c -- trivial test library - Copyright (C) 1998-1999 Thomas Tanner - 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 - -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 index 9ccd8331e..000000000 --- a/depdemo/l2/l2.h +++ /dev/null @@ -1,31 +0,0 @@ -/* l2.h -- interface to a trivial library - Copyright (C) 1998-1999 Thomas Tanner - 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 index ed28ea14a..000000000 --- a/depdemo/l3/Makefile.am +++ /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 index d085b56aa..000000000 --- a/depdemo/l3/l3.c +++ /dev/null @@ -1,39 +0,0 @@ -/* l3.c -- trivial test library - Copyright (C) 1998-1999 Thomas Tanner - 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 - -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 index 2069c51b6..000000000 --- a/depdemo/l3/l3.h +++ /dev/null @@ -1,31 +0,0 @@ -/* l3.h -- interface to a trivial library - Copyright (C) 1998-1999 Thomas Tanner - 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 index 1bfea223c..000000000 --- a/depdemo/l4/Makefile.am +++ /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 index d44f50166..000000000 --- a/depdemo/l4/l4.c +++ /dev/null @@ -1,44 +0,0 @@ -/* l4.c -- trivial test library - Copyright (C) 1998-1999 Thomas Tanner - 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 - -#ifdef HAVE_MATH_H -#include -#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 index b0099af82..000000000 --- a/depdemo/l4/l4.h +++ /dev/null @@ -1,31 +0,0 @@ -/* l4.h -- interface to a trivial library - Copyright (C) 1998-1999 Thomas Tanner - 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_ */ diff --git a/libtool.spec b/libtool.spec index da4b2fedf..0b1a949ae 100644 --- a/libtool.spec +++ b/libtool.spec @@ -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