Annotation of parser3/src/lib/ltdl/configure.ac, revision 1.2

1.1       moko        1: # Process this file with autoconf to create configure. -*- autoconf -*-
                      2: #
                      3: #    Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
                      4: #    Written by Gary V. Vaughan, 2004
                      5: #
                      6: #    NOTE: The canonical source of this file is maintained with the
                      7: #    GNU Libtool package.  Report bugs to bug-libtool@gnu.org.
                      8: #
                      9: # GNU Libltdl is free software; you can redistribute it and/or
                     10: # modify it under the terms of the GNU Lesser General Public
                     11: # License as published by the Free Software Foundation; either
                     12: # version 2 of the License, or (at your option) any later version.
                     13: #
                     14: # As a special exception to the GNU Lesser General Public License,
                     15: # if you distribute this file as part of a program or library that
                     16: # is built using GNU libtool, you may include this file under the
                     17: # same distribution terms that you use for the rest of that program.
                     18: #
                     19: # GNU Libltdl is distributed in the hope that it will be useful,
                     20: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     21: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     22: # GNU Lesser General Public License for more details.
                     23: #
                     24: # You should have received a copy of the GNU LesserGeneral Public
                     25: # License along with GNU Libltdl; see the file COPYING.LIB.  If not, a
                     26: # copy can be downloaded from http://www.gnu.org/licenses/lgpl.html,
                     27: # or obtained by writing to the Free Software Foundation, Inc.,
                     28: # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
                     29: ####
                     30: 
                     31: # This configure.ac is not used at all by the libtool bootstrap, but
                     32: # is copied to the ltdl subdirectory if you libtoolize --ltdl your own
                     33: # project.  Adding LT_WITH_LTDL to your project configure.ac will then
                     34: # configure this directory if your user doesn't want to use the installed
                     35: # libltdl.
                     36: 
                     37: AC_PREREQ(2.59)dnl We use AS_HELP_STRING
                     38: 
                     39: 
                     40: ## ------------------------ ##
                     41: ## Autoconf initialisation. ##
                     42: ## ------------------------ ##
                     43: AC_INIT([libltdl], [2.4.2], [bug-libtool@gnu.org])
                     44: AC_CONFIG_HEADERS([config.h:config-h.in])
                     45: AC_CONFIG_SRCDIR([ltdl.c])
1.2     ! moko       46: AC_CONFIG_AUX_DIR([../../..])
1.1       moko       47: AC_CONFIG_MACRO_DIR([m4])
                     48: LT_CONFIG_LTDL_DIR([.]) # I am me!
                     49: 
                     50: 
                     51: ## ------------------------ ##
                     52: ## Automake Initialisation. ##
                     53: ## ------------------------ ##
                     54: 
1.2     ! moko       55: AM_INIT_AUTOMAKE([gnu subdir-objects])
        !            56: m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
1.1       moko       57: 
                     58: 
                     59: ## ------------------------------- ##
                     60: ## Libtool specific configuration. ##
                     61: ## ------------------------------- ##
                     62: pkgdatadir='${datadir}'"/${PACKAGE}"
                     63: 
                     64: 
                     65: ## ----------------------- ##
                     66: ## Libtool initialisation. ##
                     67: ## ----------------------- ##
                     68: LT_INIT([dlopen win32-dll])
                     69: _LTDL_SETUP
                     70: 
                     71: 
                     72: ## -------- ##
                     73: ## Outputs. ##
                     74: ## -------- ##
                     75: AC_CONFIG_FILES([Makefile])
                     76: AC_OUTPUT

E-mail: