⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aclocal.m4

📁 这是Linux环境下的openobex
💻 M4
📖 第 1 页 / 共 5 页
字号:
# generated automatically by aclocal 1.7.9 -*- Autoconf -*-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002# Free Software Foundation, Inc.# This file is free software; the Free Software Foundation# gives unlimited permission to copy and/or distribute it,# with or without modifications, as long as this notice is preserved.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY, to the extent permitted by law; without# even the implied warranty of MERCHANTABILITY or FITNESS FOR A# PARTICULAR PURPOSE.AC_DEFUN([AC_PROG_CC_PIE], [	AC_CACHE_CHECK([whether ${CC-cc} accepts -fPIE], ac_cv_prog_cc_pie, [		echo 'void f(){}' > conftest.c		if test -z "`${CC-cc} -fPIE -pie -c conftest.c 2>&1`"; then			ac_cv_prog_cc_pie=yes		else			ac_cv_prog_cc_pie=no		fi		rm -rf conftest*	])])AC_DEFUN([AC_INIT_OPENOBEX], [	AC_PREFIX_DEFAULT(/usr/local)	if (test "${CFLAGS}" = ""); then		CFLAGS="-Wall -O2"	fi	if (test "${prefix}" = "NONE"); then		dnl no prefix and no sysconfdir, so default to /etc		if (test "$sysconfdir" = '${prefix}/etc'); then			AC_SUBST([sysconfdir], ['/etc'])		fi		dnl no prefix and no mandir, so use ${prefix}/share/man as default		if (test "$mandir" = '${prefix}/man'); then			AC_SUBST([mandir], ['${prefix}/share/man'])		fi		prefix="${ac_default_prefix}"	fi	if (test "${libdir}" = '${exec_prefix}/lib'); then		libdir="${prefix}/lib"	fi	if (test "$sysconfdir" = '${prefix}/etc'); then		configdir="${prefix}/etc/openobex"	else		configdir="${sysconfdir}/openobex"	fi	AC_DEFINE_UNQUOTED(CONFIGDIR, "${configdir}", [Directory for the configuration files])])AC_DEFUN([AC_PATH_IRDA], [	AC_CACHE_CHECK([for IrDA support], irda_found, [		AC_TRY_COMPILE([				#include <sys/socket.h>				#include "lib/irda.h"			], [				struct irda_device_list l;			], irda_found=yes, irda_found=no)	])])AC_DEFUN([AC_PATH_BLUEZ], [	bluez_prefix=${prefix}	AC_ARG_WITH(bluez, AC_HELP_STRING([--with-bluez=DIR], [BlueZ library is installed in DIR]), [		if (test "${withval}" != "yes"); then			bluez_prefix=${withval}		fi	])	ac_save_CPPFLAGS=$CPPFLAGS	ac_save_LDFLAGS=$LDFLAGS	BLUEZ_CFLAGS=""	test -d "${bluez_prefix}/include" && BLUEZ_CFLAGS="$BLUEZ_CFLAGS -I${bluez_prefix}/include"	CPPFLAGS="$CPPFLAGS $BLUEZ_CFLAGS"	AC_CHECK_HEADER(bluetooth/bluetooth.h, bluez_found=yes, bluez_found=no)	BLUEZ_LIBS=""	if (test "${prefix}" = "${bluez_prefix}"); then		test -d "${libdir}" && BLUEZ_LIBS="$BLUEZ_LIBS -L${libdir}"	else		test -d "${bluez_prefix}/lib64" && BLUEZ_LIBS="$BLUEZ_LIBS -L${bluez_prefix}/lib64"		test -d "${bluez_prefix}/lib" && BLUEZ_LIBS="$BLUEZ_LIBS -L${bluez_prefix}/lib"	fi	LDFLAGS="$LDFLAGS $BLUEZ_LIBS"	AC_CHECK_LIB(bluetooth, hci_open_dev, BLUEZ_LIBS="$BLUEZ_LIBS -lbluetooth", bluez_found=no)	AC_CHECK_LIB(bluetooth, sdp_connect, dummy=yes, AC_CHECK_LIB(sdp, sdp_connect, BLUEZ_LIBS="$BLUEZ_LIBS -lsdp"))	CPPFLAGS=$ac_save_CPPFLAGS	LDFLAGS=$ac_save_LDFLAGS	AC_SUBST(BLUEZ_CFLAGS)	AC_SUBST(BLUEZ_LIBS)])AC_DEFUN([AC_PATH_USB], [	usb_prefix=${prefix}	AC_ARG_WITH(usb, AC_HELP_STRING([--with-usb=DIR], [USB library is installed in DIR]), [		if (test "$withval" != "yes"); then			usb_prefix=${withval}		fi	])	ac_save_CPPFLAGS=$CPPFLAGS	ac_save_LDFLAGS=$LDFLAGS	USB_CFLAGS=""	test -d "${usb_prefix}/include" && USB_CFLAGS="$USB_CFLAGS -I${usb_prefix}/include"	CPPFLAGS="$CPPFLAGS $USB_CFLAGS"	AC_CHECK_HEADER(usb.h, usb_found=yes, usb_found=no)	USB_LIBS=""	if (test "${prefix}" = "${usb_prefix}"); then		test -d "${libdir}" && USB_LIBS="$USB_LIBS -L${libdir}"	else		test -d "${usb_prefix}/lib64" && USB_LIBS="$USB_LIBS -L${usb_prefix}/lib64"		test -d "${usb_prefix}/lib" && USB_LIBS="$USB_LIBS -L${usb_prefix}/lib"	fi	LDFLAGS="$LDFLAGS $USB_LIBS"	AC_CHECK_LIB(usb, usb_open, USB_LIBS="$USB_LIBS -lusb", usb_found=no)	AC_CHECK_LIB(usb, usb_get_busses, dummy=yes, AC_DEFINE(NEED_USB_GET_BUSSES, 1, [Define to 1 if you need the usb_get_busses() function.]))	AC_CHECK_LIB(usb, usb_interrupt_read, dummy=yes, AC_DEFINE(NEED_USB_INTERRUPT_READ, 1, [Define to 1 if you need the usb_interrupt_read() function.]))	case "${host_cpu}-${host_os}" in		*-darwin*)			USB_LIBS="$USB_LIBS -framework CoreFoundation -framework IOKit"		;;	esac	CPPFLAGS=$ac_save_CPPFLAGS	LDFLAGS=$ac_save_LDFLAGS	AC_SUBST(USB_CFLAGS)	AC_SUBST(USB_LIBS)])AC_DEFUN([AC_ARG_OPENOBEX], [	fortify_enable=yes	irda_enable=yes	bluetooth_enable=yes	usb_enable=yes	apps_enable=no	debug_enable=no	syslog_enable=no	dump_enable=no	AC_ARG_ENABLE(fortify, AC_HELP_STRING([--disable-fortify], [disable compile time buffer checks]), [		fortify_enable=${enableval}	])	AC_ARG_ENABLE(irda, AC_HELP_STRING([--disable-irda], [disable IrDA support]), [		irda_enable=${enableval}	])	AC_ARG_ENABLE(bluetooth, AC_HELP_STRING([--disable-bluetooth], [disable Bluetooth support]), [		bluetooth_enable=${enableval}	])	AC_ARG_ENABLE(usb, AC_HELP_STRING([--disable-usb], [disable USB support]), [		usb_enable=${enableval}	])	AC_ARG_ENABLE(apps, AC_HELP_STRING([--enable-apps], [enable test applications]), [		apps_enable=${enableval}	])	AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [enable compiling with debugging information]), [		debug_enable=${enableval}	])	AC_ARG_ENABLE(syslog, AC_HELP_STRING([--enable-syslog], [enable debugging to the system logger]), [		syslog_enable=${enableval}	])	AC_ARG_ENABLE(dump, AC_HELP_STRING([--enable-dump], [enable protocol dumping for debugging]), [		dump_enable=${enableval}	])	if (test "${fortify_enable}" = "yes"); then		CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"	fi	REQUIRES=""	if (test "${irda_enable}" = "yes" && test "${irda_found}" = "yes"); then		AC_DEFINE(HAVE_IRDA, 1, [Define if system supports IrDA and it's enabled])	fi	if (test "${bluetooth_enable}" = "yes" && test "${bluez_found}" = "yes"); then		AC_DEFINE(HAVE_BLUETOOTH, 1, [Define if system supports Bluetooth and it's enabled])		REQUIRES="bluez"	fi	if (test "${usb_enable}" = "yes" && test "${usb_found}" = "yes"); then		AC_DEFINE(HAVE_USB, 1, [Define if system supports USB and it's enabled])		AC_CHECK_FILE(${usb_prefix}/lib/pkgconfig/libusb.pc, REQUIRES="$REQUIRES libusb")	fi	AM_CONDITIONAL(APPS, test "${apps_enable}" = "yes")	if (test "${debug_enable}" = "yes" && test "${ac_cv_prog_cc_g}" = "yes"); then		CFLAGS="$CFLAGS -g"		AC_DEFINE_UNQUOTED(OBEX_DEBUG, 1, [Enable debuggging])	fi	if (test "${syslog_enable}" = "yes"); then		AC_DEFINE_UNQUOTED(OBEX_SYSLOG, 1, [System logger debugging])	fi	if (test "${syslog_enable}" = "yes"); then		AC_DEFINE_UNQUOTED(OBEX_DUMP, 1, [Protocol dumping])	fi	AC_SUBST(REQUIRES)])# AM_CONDITIONAL                                              -*- Autoconf -*-# Copyright 1997, 2000, 2001 Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# 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.# serial 5AC_PREREQ(2.52)# AM_CONDITIONAL(NAME, SHELL-CONDITION)# -------------------------------------# Define a conditional.AC_DEFUN([AM_CONDITIONAL],[ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnlAC_SUBST([$1_TRUE])AC_SUBST([$1_FALSE])if $2; then  $1_TRUE=  $1_FALSE='#'else  $1_TRUE='#'  $1_FALSE=fiAC_CONFIG_COMMANDS_PRE([if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then  AC_MSG_ERROR([conditional "$1" was never defined.Usually this means the macro was only invoked conditionally.])fi])])# Do all the work for Automake.                            -*- Autoconf -*-# This macro actually does too much some checks are only needed if# your package does certain things.  But this isn't really a big deal.# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003# Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# 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.# serial 10AC_PREREQ([2.54])# Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow# the ones we care about.m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])# AM_INIT_AUTOMAKE([OPTIONS])# -----------------------------------------------# The call with PACKAGE and VERSION arguments is the old style# call (pre autoconf-2.50), which is being phased out.  PACKAGE# and VERSION should now be passed to AC_INIT and removed from# the call to AM_INIT_AUTOMAKE.# We support both call styles for the transition.  After# the next Automake release, Autoconf can make the AC_INIT# arguments mandatory, and then we can depend on a new Autoconf# release and drop the old call support.AC_DEFUN([AM_INIT_AUTOMAKE],[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl# test to see if srcdir already configuredif test "`cd $srcdir && pwd`" != "`pwd`" &&   test -f $srcdir/config.status; then  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])fi# test whether we have cygpathif test -z "$CYGPATH_W"; then  if (cygpath --version) >/dev/null 2>/dev/null; then    CYGPATH_W='cygpath -w'  else    CYGPATH_W=echo  fifiAC_SUBST([CYGPATH_W])# Define the identity of the package.dnl Distinguish between old-style and new-style calls.m4_ifval([$2],[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])],[_AM_SET_OPTIONS([$1])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl_AM_IF_OPTION([no-define],,[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl# Some tools Automake needs.AC_REQUIRE([AM_SANITY_CHECK])dnlAC_REQUIRE([AC_ARG_PROGRAM])dnlAM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})AM_MISSING_PROG(AUTOCONF, autoconf)AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})AM_MISSING_PROG(AUTOHEADER, autoheader)AM_MISSING_PROG(MAKEINFO, makeinfo)AM_MISSING_PROG(AMTAR, tar)AM_PROG_INSTALL_SHAM_PROG_INSTALL_STRIP# We need awk for the "check" target.  The system "awk" is bad on# some platforms.AC_REQUIRE([AC_PROG_AWK])dnlAC_REQUIRE([AC_PROG_MAKE_SET])dnlAC_REQUIRE([AM_SET_LEADING_DOT])dnl_AM_IF_OPTION([no-dependencies],,[AC_PROVIDE_IFELSE([AC_PROG_CC],                  [_AM_DEPENDENCIES(CC)],                  [define([AC_PROG_CC],                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnlAC_PROVIDE_IFELSE([AC_PROG_CXX],                  [_AM_DEPENDENCIES(CXX)],                  [define([AC_PROG_CXX],                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl])])# When config.status generates a header, we must update the stamp-h file.# This file resides in the same directory as the config header# that is generated.  The stamp files are numbered to have different names.# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the# loop where config.status creates the headers, so we can generate# our stamp files there.AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],[# Compute $1's index in $config_headers._am_stamp_count=1for _am_header in $config_headers :; do  case $_am_header in    $1 | $1:* )      break ;;    * )      _am_stamp_count=`expr $_am_stamp_count + 1` ;;  esac

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -