summaryrefslogtreecommitdiffstats
path: root/m4/ax_swig_enable_cxx.m4
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-10-19 20:29:39 +0200
committerGravatar Matt Colyer2009-10-22 07:52:53 -0700
commit544215cd776c1db58ce8e8a3db6457b5d977e421 (patch)
tree806a0dd662396f717eb428b349e4aa6e59cde47a /m4/ax_swig_enable_cxx.m4
parent4740e30d178c8a588f522586a817039d6be8da3b (diff)
downloadlibimobiledevice-544215cd776c1db58ce8e8a3db6457b5d977e421.tar.gz
libimobiledevice-544215cd776c1db58ce8e8a3db6457b5d977e421.tar.bz2
Update swig header and autotools to compile with latest libplist API.
[#77 state:resolved] Signed-off-by: Matt Colyer <matt@colyer.name>
Diffstat (limited to 'm4/ax_swig_enable_cxx.m4')
-rw-r--r--m4/ax_swig_enable_cxx.m451
1 files changed, 51 insertions, 0 deletions
diff --git a/m4/ax_swig_enable_cxx.m4 b/m4/ax_swig_enable_cxx.m4
new file mode 100644
index 0000000..722caeb
--- /dev/null
+++ b/m4/ax_swig_enable_cxx.m4
@@ -0,0 +1,51 @@
1# ===========================================================================
2# http://www.nongnu.org/autoconf-archive/ax_swig_enable_cxx.html
3# ===========================================================================
4#
5# SYNOPSIS
6#
7# AX_SWIG_ENABLE_CXX
8#
9# DESCRIPTION
10#
11# Enable SWIG C++ support. This affects all invocations of $(SWIG).
12#
13# LICENSE
14#
15# Copyright (c) 2008 Sebastian Huber <sebastian-huber@web.de>
16# Copyright (c) 2008 Alan W. Irwin <irwin@beluga.phys.uvic.ca>
17# Copyright (c) 2008 Rafael Laboissiere <rafael@laboissiere.net>
18# Copyright (c) 2008 Andrew Collier <colliera@ukzn.ac.za>
19#
20# This program is free software; you can redistribute it and/or modify it
21# under the terms of the GNU General Public License as published by the
22# Free Software Foundation; either version 2 of the License, or (at your
23# option) any later version.
24#
25# This program is distributed in the hope that it will be useful, but
26# WITHOUT ANY WARRANTY; without even the implied warranty of
27# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
28# Public License for more details.
29#
30# You should have received a copy of the GNU General Public License along
31# with this program. If not, see <http://www.gnu.org/licenses/>.
32#
33# As a special exception, the respective Autoconf Macro's copyright owner
34# gives unlimited permission to copy, distribute and modify the configure
35# scripts that are the output of Autoconf when processing the Macro. You
36# need not follow the terms of the GNU General Public License when using
37# or distributing such scripts, even though portions of the text of the
38# Macro appear in them. The GNU General Public License (GPL) does govern
39# all other use of the material that constitutes the Autoconf Macro.
40#
41# This special exception to the GPL applies to versions of the Autoconf
42# Macro released by the Autoconf Archive. When you make and distribute a
43# modified version of the Autoconf Macro, you may extend this special
44# exception to the GPL to apply to your modified version as well.
45
46AU_ALIAS([SWIG_ENABLE_CXX], [AX_SWIG_ENABLE_CXX])
47AC_DEFUN([AX_SWIG_ENABLE_CXX],[
48 AC_REQUIRE([AC_PROG_SWIG])
49 AC_REQUIRE([AC_PROG_CXX])
50 SWIG="$SWIG -c++"
51])