Include program counter on action limit notification log
[gnash.git] / macros / libexe.m4
blobf8f7ef6992cc08a171c5cf3aa2f36628889ade24
1 dnl Process this file with autoconf to produce a configure script.
2 dnl  
3 dnl    Copyright (C) 2005, 2006, 2009, 2010 Free Software Foundation, Inc.
4 dnl  
5 dnl  This program is free software; you can redistribute it and/or modify
6 dnl  it under the terms of the GNU General Public License as published by
7 dnl  the Free Software Foundation; either version 3 of the License, or
8 dnl  (at your option) any later version.
9 dnl  
10 dnl  This program is distributed in the hope that it will be useful,
11 dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 dnl  GNU General Public License for more details.
14 dnl  You should have received a copy of the GNU General Public License
15 dnl  along with this program; if not, write to the Free Software
16 dnl  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 dnl FIXME: This should really do tests for this data, and not
19 dnl just hardcode it based on the OS. This currently depends on
20 dnl AC_EXEEXT being called first.
22 AC_DEFUN([AM_COMPILER_LIB],
23 [dnl 
24   AC_MSG_CHECKING(for library file name specifics)
25   dnl These are the same for most platforms
26   LIBEXT="a"
27   LIBPRE="lib"
29   if test "x$LIBPRE" != "x" ; then
30     if test x"$EXEEXT"  = "exe"; then
31       LIBPRE="lib"
32     fi
33   fi
35   if test "x$LIBEXT" != "x" ; then
36     if test x"$EXEEXT"  = "exe"; then
37       LIBEXT="dll"
38     fi
39   fi
41   if test "x$LIBPRE" != "x" -a  "x$LIBEXE" != "x"; then
42     AC_MSG_RESULT(yes)
43   else
44     AC_MSG_RESULT(no)
45   fi
47 AC_SUBST(LIBPRE)
48 AC_SUBST(LIBEXT)
51 # Local Variables:
52 # c-basic-offset: 2
53 # tab-width: 2
54 # indent-tabs-mode: nil
55 # End: