]> git.ipfire.org Git - thirdparty/cups.git/blame - config-scripts/cups-libtool.m4
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / config-scripts / cups-libtool.m4
CommitLineData
ef416fc2 1dnl
c07d5b2d 2dnl "$Id: cups-libtool.m4 177 2006-06-21 00:20:03Z jlovell $"
ef416fc2 3dnl
4dnl Libtool stuff for the Common UNIX Printing System (CUPS).
5dnl
6dnl Copyright 1997-2005 by Easy Software Products, all rights reserved.
7dnl
8dnl These coded instructions, statements, and computer programs are the
9dnl property of Easy Software Products and are protected by Federal
10dnl copyright law. Distribution and use rights are outlined in the file
11dnl "LICENSE.txt" which should have been included with this file. If this
12dnl file is missing or damaged please contact Easy Software Products
13dnl at:
14dnl
15dnl Attn: CUPS Licensing Information
16dnl Easy Software Products
17dnl 44141 Airport View Drive, Suite 204
18dnl Hollywood, Maryland 20636 USA
19dnl
20dnl Voice: (301) 373-9600
21dnl EMail: cups-info@cups.org
22dnl WWW: http://www.cups.org
23dnl
24
25AC_ARG_ENABLE(libtool_unsupported, [ --enable-libtool-unsupported=LIBTOOL_PATH
26 turn on building with libtool (UNSUPPORTED!), default=no],
27 [if test x$enable_libtool_unsupported != xno; then
28 LIBTOOL="$enable_libtool_unsupported"
29 enable_shared=no
30 echo "WARNING: libtool is not supported or endorsed by Easy Software Products."
31 echo " WE DO NOT PROVIDE TECHNICAL SUPPORT FOR LIBTOOL PROBLEMS."
32 echo " (even if you have a support contract)"
33 else
34 LIBTOOL=""
35 fi])
36
37AC_SUBST(LIBTOOL)
38
39if test x$LIBTOOL != x; then
40 LIBCUPS="libcups.la"
41 LIBCUPSIMAGE="libcupsimage.la"
42 LINKCUPS="../cups/\$(LIBCUPS)"
43 LINKCUPSIMAGE="../filter/\$(LIBCUPSIMAGE)"
44 DSO="\$(CC)"
45fi
46
47dnl
c07d5b2d 48dnl End of "$Id: cups-libtool.m4 177 2006-06-21 00:20:03Z jlovell $".
ef416fc2 49dnl