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

📄 aclocal.m4

📁 用于在LINUX下使用串口进行收发短消息
💻 M4
📖 第 1 页 / 共 3 页
字号:
          echo "*** version of GTK. If it is not finding GTK, you'll need to set your"          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"          echo "*** to the installed location  Also, make sure you have run ldconfig if that"          echo "*** is required on your system"	  echo "***"          echo "*** If you have an old version installed, it is best to remove it, although"          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"          echo "***"          echo "*** If you have a RedHat 5.0 system, you should remove the GTK package that"          echo "*** came with the system with the command"          echo "***"          echo "***    rpm --erase --nodeps gtk gtk-devel" ],        [ echo "*** The test program failed to compile or link. See the file config.log for the"          echo "*** exact error that occured. This usually means GTK was incorrectly installed"          echo "*** or that you have moved GTK since it was installed. In the latter case, you"          echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ])          CFLAGS="$ac_save_CFLAGS"          LIBS="$ac_save_LIBS"       fi     fi     GTK_CFLAGS=""     GTK_LIBS=""     ifelse([$3], , :, [$3])  fi  AC_SUBST(GTK_CFLAGS)  AC_SUBST(GTK_LIBS)  rm -f conf.gtktest])dnldnl GNOME_INIT_HOOK (script-if-gnome-enabled, [failflag], [additional-inits])dnldnl if failflag is "fail" then GNOME_INIT_HOOK will abort if gnomeConf.shdnl is not found. dnlAC_DEFUN([GNOME_INIT_HOOK],[	AC_SUBST(GNOME_LIBS)	AC_SUBST(GNOMEUI_LIBS)	AC_SUBST(GNOMEGNORBA_LIBS)	AC_SUBST(GTKXMHTML_LIBS)	AC_SUBST(ZVT_LIBS)	AC_SUBST(GNOME_LIBDIR)	AC_SUBST(GNOME_INCLUDEDIR)	AC_ARG_WITH(gnome-includes,	[  --with-gnome-includes   Specify location of GNOME headers],[	CFLAGS="$CFLAGS -I$withval"	])		AC_ARG_WITH(gnome-libs,	[  --with-gnome-libs       Specify location of GNOME libs],[	LDFLAGS="$LDFLAGS -L$withval"	gnome_prefix=$withval	])	AC_ARG_WITH(gnome,	[  --with-gnome            Specify prefix for GNOME files],		if test x$withval = xyes; then	    		want_gnome=yes	    		dnl Note that an empty true branch is not			dnl valid sh syntax.	    		ifelse([$1], [], :, [$1])        	else	    		if test "x$withval" = xno; then	        		want_gnome=no	    		else	        		want_gnome=yes	    			LDFLAGS="$LDFLAGS -L$withval/lib"	    			CFLAGS="$CFLAGS -I$withval/include"	    			gnome_prefix=$withval/lib	    		fi  		fi,		want_gnome=yes)	if test "x$want_gnome" = xyes; then	    AC_PATH_PROG(GNOME_CONFIG,gnome-config,no)	    if test "$GNOME_CONFIG" = "no"; then	      no_gnome_config="yes"	    else	      AC_MSG_CHECKING(if $GNOME_CONFIG works)	      if $GNOME_CONFIG --libs-only-l gnome >/dev/null 2>&1; then	        AC_MSG_RESULT(yes)	        GNOME_GNORBA_HOOK([],$2)	        GNOME_LIBS="`$GNOME_CONFIG --libs-only-l gnome`"	        GNOMEUI_LIBS="`$GNOME_CONFIG --libs-only-l gnomeui`"	        GNOMEGNORBA_LIBS="`$GNOME_CONFIG --libs-only-l gnorba gnomeui`"	        GTKXMHTML_LIBS="`$GNOME_CONFIG --libs-only-l gtkxmhtml`"		ZVT_LIBS="`$GNOME_CONFIG --libs-only-l zvt`"	        GNOME_LIBDIR="`$GNOME_CONFIG --libs-only-L gnorba gnomeui`"	        GNOME_INCLUDEDIR="`$GNOME_CONFIG --cflags gnorba gnomeui`"                $1	      else	        AC_MSG_RESULT(no)	        no_gnome_config="yes"              fi            fi	    if test x$exec_prefix = xNONE; then	        if test x$prefix = xNONE; then		    gnome_prefix=$ac_default_prefix/lib	        else 		    gnome_prefix=$prefix/lib	        fi	    else	        gnome_prefix=`eval echo \`echo $libdir\``	    fi		    if test "$no_gnome_config" = "yes"; then              AC_MSG_CHECKING(for gnomeConf.sh file in $gnome_prefix)	      if test -f $gnome_prefix/gnomeConf.sh; then	        AC_MSG_RESULT(found)	        echo "loading gnome configuration from" \		     "$gnome_prefix/gnomeConf.sh"	        . $gnome_prefix/gnomeConf.sh	        $1	      else	        AC_MSG_RESULT(not found) 	        if test x$2 = xfail; then	          AC_MSG_ERROR(Could not find the gnomeConf.sh file that is generated by gnome-libs install) 	        fi	      fi            fi	fi	if test -n "$3"; then	  n="$3"	  for i in $n; do	    AC_MSG_CHECKING(extra library \"$i\")	    case $i in 	      applets)		AC_SUBST(GNOME_APPLETS_LIBS)		GNOME_APPLETS_LIBS=`$GNOME_CONFIG --libs-only-l applets`		AC_MSG_RESULT($GNOME_APPLETS_LIBS);;	      docklets)		AC_SUBST(GNOME_DOCKLETS_LIBS)		GNOME_DOCKLETS_LIBS=`$GNOME_CONFIG --libs-only-l docklets`		AC_MSG_RESULT($GNOME_DOCKLETS_LIBS);;	      capplet)		AC_SUBST(GNOME_CAPPLET_LIBS)		GNOME_CAPPLET_LIBS=`$GNOME_CONFIG --libs-only-l capplet`		AC_MSG_RESULT($GNOME_CAPPLET_LIBS);;	      *)		AC_MSG_RESULT(unknown library)	    esac	  done	fi])dnldnl GNOME_INIT ([additional-inits])dnlAC_DEFUN([GNOME_INIT],[	GNOME_INIT_HOOK([],fail,$1)])dnldnl GNOME_GNORBA_HOOK (script-if-gnorba-found, failflag)dnldnl if failflag is "failure" it aborts if gnorba is not found.dnlAC_DEFUN([GNOME_GNORBA_HOOK],[	GNOME_ORBIT_HOOK([],$2)	AC_CACHE_CHECK([for gnorba libraries],gnome_cv_gnorba_found,[		gnome_cv_gnorba_found=no		if test x$gnome_cv_orbit_found = xyes; then			GNORBA_CFLAGS="`gnome-config --cflags gnorba gnomeui`"			GNORBA_LIBS="`gnome-config --libs gnorba gnomeui`"			if test -n "$GNORBA_LIBS"; then				gnome_cv_gnorba_found=yes			fi		fi	])	AM_CONDITIONAL(HAVE_GNORBA, test x$gnome_cv_gnorba_found = xyes)	if test x$gnome_cv_orbit_found = xyes; then		$1		GNORBA_CFLAGS="`gnome-config --cflags gnorba gnomeui`"		GNORBA_LIBS="`gnome-config --libs gnorba gnomeui`"		AC_SUBST(GNORBA_CFLAGS)		AC_SUBST(GNORBA_LIBS)	else	    	if test x$2 = xfailure; then			AC_MSG_ERROR(gnorba library not installed or installation problem)	    	fi	fi])AC_DEFUN([GNOME_GNORBA_CHECK], [	GNOME_GNORBA_HOOK([],failure)])dnldnl GNOME_ORBIT_HOOK (script-if-orbit-found, failflag)dnldnl if failflag is "failure" it aborts if orbit is not found.dnlAC_DEFUN([GNOME_ORBIT_HOOK],[	AC_PATH_PROG(ORBIT_CONFIG,orbit-config,no)	AC_PATH_PROG(ORBIT_IDL,orbit-idl,no)	AC_CACHE_CHECK([for working ORBit environment],gnome_cv_orbit_found,[		if test x$ORBIT_CONFIG = xno -o x$ORBIT_IDL = xno; then			gnome_cv_orbit_found=no		else			gnome_cv_orbit_found=yes		fi	])	AM_CONDITIONAL(HAVE_ORBIT, test x$gnome_cv_orbit_found = xyes)	if test x$gnome_cv_orbit_found = xyes; then		$1		ORBIT_CFLAGS=`orbit-config --cflags client server`		ORBIT_LIBS=`orbit-config --use-service=name --libs client server`		AC_SUBST(ORBIT_CFLAGS)		AC_SUBST(ORBIT_LIBS)	else    		if test x$2 = xfailure; then			AC_MSG_ERROR(ORBit not installed or installation problem)    		fi	fi])AC_DEFUN([GNOME_ORBIT_CHECK], [	GNOME_ORBIT_HOOK([],failure)])dnl GNOME_COMPILE_WARNINGSdnl Turn on many useful compiler warningsdnl For now, only works on GCCAC_DEFUN([GNOME_COMPILE_WARNINGS],[  AC_ARG_ENABLE(compile-warnings,     [  --enable-compile-warnings=[no/minimum/yes]	Turn on compiler warnings.],,enable_compile_warnings=minimum)  AC_MSG_CHECKING(what warning flags to pass to the C compiler)  warnCFLAGS=  if test "x$GCC" != xyes; then    enable_compile_warnings=no  fi  if test "x$enable_compile_warnings" != "xno"; then    if test "x$GCC" = "xyes"; then      case " $CFLAGS " in      *[\ \	]-Wall[\ \	]*) ;;      *) warnCFLAGS="-Wall -Wunused" ;;      esac      ## -W is not all that useful.  And it cannot be controlled      ## with individual -Wno-xxx flags, unlike -Wall      if test "x$enable_compile_warnings" = "xyes"; then	warnCFLAGS="$warnCFLAGS -Wmissing-prototypes -Wmissing-declarations"      fi    fi  fi  AC_MSG_RESULT($warnCFLAGS)  AC_ARG_ENABLE(iso-c,    [  --enable-iso-c          Try to warn if code is not ISO C ],,    enable_iso_c=no)  AC_MSG_CHECKING(what language compliance flags to pass to the C compiler)  complCFLAGS=  if test "x$enable_iso_c" != "xno"; then    if test "x$GCC" = "xyes"; then      case " $CFLAGS " in      *[\ \	]-ansi[\ \	]*) ;;      *) complCFLAGS="$complCFLAGS -ansi" ;;      esac      case " $CFLAGS " in      *[\ \	]-pedantic[\ \	]*) ;;      *) complCFLAGS="$complCFLAGS -pedantic" ;;      esac    fi  fi  AC_MSG_RESULT($complCFLAGS)  if test "x$cflags_set" != "xyes"; then    CFLAGS="$CFLAGS $warnCFLAGS $complCFLAGS"    cflags_set=yes    AC_SUBST(cflags_set)  fi])dnl For C++, do basically the same thing.AC_DEFUN([GNOME_CXX_WARNINGS],[  AC_ARG_ENABLE(cxx-warnings,     [  --enable-cxx-warnings=[no/minimum/yes]	Turn on compiler warnings.],,enable_cxx_warnings=minimum)  AC_MSG_CHECKING(what warning flags to pass to the C++ compiler)  warnCXXFLAGS=  if test "x$GCC" != xyes; then    enable_compile_warnings=no  fi  if test "x$enable_cxx_warnings" != "xno"; then    if test "x$GCC" = "xyes"; then      case " $CXXFLAGS " in      *[\ \	]-Wall[\ \	]*) ;;      *) warnCXXFLAGS="-Wall -Wno-unused" ;;      esac      ## -W is not all that useful.  And it cannot be controlled      ## with individual -Wno-xxx flags, unlike -Wall      if test "x$enable_cxx_warnings" = "xyes"; then	warnCXXFLAGS="$warnCXXFLAGS -Wmissing-prototypes -Wmissing-declarations -Wshadow -Woverloaded-virtual"      fi    fi  fi  AC_MSG_RESULT($warnCXXFLAGS)   AC_ARG_ENABLE(iso-cxx,     [  --enable-iso-cxx          Try to warn if code is not ISO C++ ],,     enable_iso_cxx=no)   AC_MSG_CHECKING(what language compliance flags to pass to the C++ compiler)   complCXXFLAGS=   if test "x$enable_iso_cxx" != "xno"; then     if test "x$GCC" = "xyes"; then      case " $CXXFLAGS " in      *[\ \	]-ansi[\ \	]*) ;;      *) complCXXFLAGS="$complCXXFLAGS -ansi" ;;      esac      case " $CXXFLAGS " in      *[\ \	]-pedantic[\ \	]*) ;;      *) complCXXFLAGS="$complCXXFLAGS -pedantic" ;;      esac     fi   fi  AC_MSG_RESULT($complCXXFLAGS)  if test "x$cxxflags_set" != "xyes"; then    CXXFLAGS="$CXXFLAGS $warnCXXFLAGS $complCXXFLAGS"    cxxflags_set=yes    AC_SUBST(cxxflags_set)  fi])dnl GNOME_X_CHECKSdnldnl Basic X11 related checks for X11.  At the end, the following will bednl defined/changed:dnl   GTK_{CFLAGS,LIBS}      From AM_PATH_GTKdnl   CPPFLAGS		     Will include $X_CFLAGSdnl   GNOME_HAVE_SM	     `true' or `false' depending on whether sessiondnl                          management is available.  It is available ifdnl                          both -lSM and X11/SM/SMlib.h exist.  (Somednl                          Solaris boxes have the library but not the header)dnl   XPM_LIBS               -lXpm if Xpm library is present, otherwise ""dnldnl The following configure cache variables are defined (but not used):dnl   gnome_cv_passdown_{x_libs,X_LIBS,X_CFLAGS}dnlAC_DEFUN([GNOME_X_CHECKS],[	AM_PATH_GTK(1.2.0,,AC_MSG_ERROR(GTK not installed, or gtk-config not in path))	dnl Hope that GTK_CFLAGS have only -I and -D.  Otherwise, we could	dnl   test -z "$x_includes" || CPPFLAGS="$CPPFLAGS -I$x_includes"	dnl	dnl Use CPPFLAGS instead of CFLAGS because AC_CHECK_HEADERS uses	dnl CPPFLAGS, not CFLAGS        CPPFLAGS="$CPPFLAGS $GTK_CFLAGS"        saved_ldflags="$LDFLAGS"        LDFLAGS="$LDFLAGS $GTK_LIBS"	gnome_cv_passdown_x_libs="$GTK_LIBS"	gnome_cv_passdown_X_LIBS="$GTK_LIBS"	gnome_cv_passdown_X_CFLAGS="$GTK_CFLAGS"	gnome_cv_passdown_GTK_LIBS="$GTK_LIBS"        LDFLAGS="$saved_ldflags $GTK_LIBS"dnl We are requiring GTK >= 1.1.1, which means this will be fine anyhow.	USE_DEVGTK=truednl	AC_MSG_CHECKING([whether to use features from (unstable) GTK+ 1.1.x])dnl	AC_EGREP_CPP(answer_affirmatively,dnl	[#include <gtk/gtkfeatures.h>dnl	#ifdef GTK_HAVE_FEATURES_1_1_0dnl	   answer_affirmativelydnl	#endifdnl	], dev_gtk=yes, dev_gtk=no)dnl	if test "$dev_gtk" = "yes"; thendnl	   USE_DEVGTK=truednl	fidnl	AC_MSG_RESULT("$dev_gtk")	GNOME_HAVE_SM=true	case "$GTK_LIBS" in	 *-lSM*)	    dnl Already found it.	    ;;	 *)	    dnl Assume that if we have -lSM then we also have -lICE.	    AC_CHECK_LIB(SM, SmcSaveYourselfDone,	        [GTK_LIBS="-lSM -lICE $GTK_LIBS"],GNOME_HAVE_SM=false,		$x_libs -lICE)	    ;;	esac	if test "$GNOME_HAVE_SM" = true; then	   AC_CHECK_HEADERS(X11/SM/SMlib.h,,GNOME_HAVE_SM=false)	fi	if test "$GNOME_HAVE_SM" = true; then	   AC_DEFINE(HAVE_LIBSM)	fi	XPM_LIBS=""	AC_CHECK_LIB(Xpm, XpmFreeXpmImage, [XPM_LIBS="-lXpm"], , $x_libs)

⌨️ 快捷键说明

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