diff options
author | Tom Tromey <tromey@redhat.com> | 2006-03-28 19:02:25 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2006-03-28 19:02:25 +0000 |
commit | fa275f0a5cd7380966a54c48d38e95938dd791f4 (patch) | |
tree | 44928bcc3b5d69ceb886786f3462685287f715f3 /libjava/libltdl/configure.ac | |
parent | 625a46d9b69b3068844a79bb20e07abe8b3ac57e (diff) | |
download | gcc-fa275f0a5cd7380966a54c48d38e95938dd791f4.zip gcc-fa275f0a5cd7380966a54c48d38e95938dd791f4.tar.gz gcc-fa275f0a5cd7380966a54c48d38e95938dd791f4.tar.bz2 |
re PR libgcj/26441 (Old libltdl may cause memory leak in Class.forName())
PR libgcj/26641:
* Merged libltdl 1.5.16 from vendor branch.
From-SVN: r112464
Diffstat (limited to 'libjava/libltdl/configure.ac')
-rw-r--r-- | libjava/libltdl/configure.ac | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/libjava/libltdl/configure.ac b/libjava/libltdl/configure.ac index c30a845..1446efb 100644 --- a/libjava/libltdl/configure.ac +++ b/libjava/libltdl/configure.ac @@ -13,17 +13,19 @@ # # 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 +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +# 02110-1301 USA + + +dnl FIXME: Is this really new enough? +AC_PREREQ(2.50) ## ------------------------ ## ## Autoconf initialisation. ## ## ------------------------ ## -AC_PREREQ(2.59) AC_INIT([libltdl], [1.2], [bug-libtool@gnu.org]) AC_CONFIG_SRCDIR([ltdl.c]) -AC_CONFIG_FILES([config.h:config-h.in]) ## ------------------------------- ## @@ -48,8 +50,8 @@ fi ## ------------------------ ## ## Automake Initialisation. ## ## ------------------------ ## -AM_INIT_AUTOMAKE([1.9.1]) -AM_MAINTAINER_MODE +AM_INIT_AUTOMAKE(AC_PACKAGE_TARNAME, AC_PACKAGE_VERSION, -) +AM_CONFIG_HEADER([config.h:config-h.in]) ## ------------------ ## |