aclocal.m4
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:8k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. # Configure paths for GTK--
  2. # Erik Andersen 30 May 1998
  3. # Modified by Tero Pulkkinen (added the compiler checks... I hope they work..)
  4. dnl Test for GTKMM, and define GTKMM_CFLAGS and GTKMM_LIBS
  5. dnl   to be used as follows:
  6. dnl AM_PATH_GTKMM([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
  7. dnl
  8. AC_DEFUN(AC_PATH_GTKMM,
  9. [dnl 
  10. dnl Get the cflags and libraries from the gtkmm-config script
  11. dnl
  12. AC_ARG_WITH(gtkmm-prefix,[  --with-gtkmm-prefix=PREFIX
  13.                           Prefix where GTK-- is installed (optional)],
  14.             gtkmm_config_prefix="$withval", gtkmm_config_prefix="")
  15. AC_ARG_WITH(gtkmm-exec-prefix,[  --with-gtkmm-exec-prefix=PREFIX
  16.                           Exec prefix where GTK-- is installed (optional)],
  17.             gtkmm_config_exec_prefix="$withval", gtkmm_config_exec_prefix="")
  18. AC_ARG_ENABLE(gtkmmtest, [  --disable-gtkmmtest     Do not try to compile and run a test GTK-- program],
  19.     , enable_gtkmmtest=yes)
  20.   if test x$gtkmm_config_exec_prefix != x ; then
  21.      gtkmm_config_args="$gtkmm_config_args --exec-prefix=$gtkmm_config_exec_prefix"
  22.      if test x${GTKMM_CONFIG+set} != xset ; then
  23.         GTKMM_CONFIG=$gtkmm_config_exec_prefix/bin/gtkmm-config
  24.      fi
  25.   fi
  26.   if test x$gtkmm_config_prefix != x ; then
  27.      gtkmm_config_args="$gtkmm_config_args --prefix=$gtkmm_config_prefix"
  28.      if test x${GTKMM_CONFIG+set} != xset ; then
  29.         GTKMM_CONFIG=$gtkmm_config_prefix/bin/gtkmm-config
  30.      fi
  31.   fi
  32.   AC_PATH_PROG(GTKMM_CONFIG, gtkmm-config, no)
  33.   min_gtkmm_version=ifelse([$1], ,0.10.0,$1)
  34.   AC_MSG_CHECKING(for GTK-- - version >= $min_gtkmm_version)
  35.   no_gtkmm=""
  36.   if test "$GTKMM_CONFIG" = "no" ; then
  37.     no_gtkmm=yes
  38.   else
  39.     AC_LANG_SAVE
  40.     AC_LANG_CPLUSPLUS
  41.     GTKMM_CFLAGS=`$GTKMM_CONFIG --cflags`
  42.     GTKMM_LIBS=`$GTKMM_CONFIG --libs`
  43.     gtkmm_config_major_version=`$GTKMM_CONFIG --version | 
  44.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/1/'`
  45.     gtkmm_config_minor_version=`$GTKMM_CONFIG --version | 
  46.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/2/'`
  47.     gtkmm_config_micro_version=`$GTKMM_CONFIG --version | 
  48.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/3/'`
  49.     if test "x$enable_gtkmmtest" = "xyes" ; then
  50.       ac_save_CXXFLAGS="$CXXFLAGS"
  51.       ac_save_LIBS="$LIBS"
  52.       CXXFLAGS="$CXXFLAGS $GTKMM_CFLAGS"
  53.       LIBS="$LIBS $GTKMM_LIBS"
  54. dnl
  55. dnl Now check if the installed GTK-- is sufficiently new. (Also sanity
  56. dnl checks the results of gtkmm-config to some extent
  57. dnl
  58.       rm -f conf.gtkmmtest
  59.       AC_TRY_RUN([
  60. #include <gtk--.h>
  61. #include <stdio.h>
  62. #include <stdlib.h>
  63. int 
  64. main ()
  65. {
  66.   int major, minor, micro;
  67.   char *tmp_version;
  68.   system ("touch conf.gtkmmtest");
  69.   /* HP/UX 0 (%@#!) writes to sscanf strings */
  70.   tmp_version = g_strdup("$min_gtkmm_version");
  71.   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
  72.      printf("%s, bad version stringn", "$min_gtkmm_version");
  73.      exit(1);
  74.    }
  75.   if ((gtkmm_major_version != $gtkmm_config_major_version) ||
  76.       (gtkmm_minor_version != $gtkmm_config_minor_version) ||
  77.       (gtkmm_micro_version != $gtkmm_config_micro_version))
  78.     {
  79.       printf("n*** 'gtkmm-config --version' returned %d.%d.%d, but GTK-- (%d.%d.%d)n", 
  80.              $gtkmm_config_major_version, $gtkmm_config_minor_version, $gtkmm_config_micro_version,
  81.              gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
  82.       printf ("*** was found! If gtkmm-config was correct, then it is bestn");
  83.       printf ("*** to remove the old version of GTK--. You may also be able to fix the errorn");
  84.       printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editingn");
  85.       printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that isn");
  86.       printf("*** required on your system.n");
  87.       printf("*** If gtkmm-config was wrong, set the environment variable GTKMM_CONFIGn");
  88.       printf("*** to point to the correct copy of gtkmm-config, and remove the file config.cachen");
  89.       printf("*** before re-running configuren");
  90.     } 
  91. /* GTK-- does not have the GTKMM_*_VERSION constants */
  92. /* 
  93.   else if ((gtkmm_major_version != GTKMM_MAJOR_VERSION) ||
  94.    (gtkmm_minor_version != GTKMM_MINOR_VERSION) ||
  95.            (gtkmm_micro_version != GTKMM_MICRO_VERSION))
  96.     {
  97.       printf("*** GTK-- header files (version %d.%d.%d) do not matchn",
  98.      GTKMM_MAJOR_VERSION, GTKMM_MINOR_VERSION, GTKMM_MICRO_VERSION);
  99.       printf("*** library (version %d.%d.%d)n",
  100.      gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
  101.     }
  102. */
  103.   else
  104.     {
  105.       if ((gtkmm_major_version > major) ||
  106.         ((gtkmm_major_version == major) && (gtkmm_minor_version > minor)) ||
  107.         ((gtkmm_major_version == major) && (gtkmm_minor_version == minor) && (gtkmm_micro_version >= micro)))
  108.       {
  109.         return 0;
  110.        }
  111.      else
  112.       {
  113.         printf("n*** An old version of GTK-- (%d.%d.%d) was found.n",
  114.                gtkmm_major_version, gtkmm_minor_version, gtkmm_micro_version);
  115.         printf("*** You need a version of GTK-- newer than %d.%d.%d. The latest version ofn",
  116.        major, minor, micro);
  117.         printf("*** GTK-- is always available from ftp://ftp.gtk.org.n");
  118.         printf("***n");
  119.         printf("*** If you have already installed a sufficiently new version, this errorn");
  120.         printf("*** probably means that the wrong copy of the gtkmm-config shell script isn");
  121.         printf("*** being found. The easiest way to fix this is to remove the old versionn");
  122.         printf("*** of GTK--, but you can also set the GTKMM_CONFIG environment to point to then");
  123.         printf("*** correct copy of gtkmm-config. (In this case, you will have ton");
  124.         printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.confn");
  125.         printf("*** so that the correct libraries are found at run-time))n");
  126.       }
  127.     }
  128.   return 1;
  129. }
  130. ],, no_gtkmm=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
  131.        CXXFLAGS="$ac_save_CXXFLAGS"
  132.        LIBS="$ac_save_LIBS"
  133.      fi
  134.   fi
  135.   if test "x$no_gtkmm" = x ; then
  136.      AC_MSG_RESULT(yes)
  137.      ifelse([$2], , :, [$2])     
  138.   else
  139.      AC_MSG_RESULT(no)
  140.      if test "$GTKMM_CONFIG" = "no" ; then
  141.        echo "*** The gtkmm-config script installed by GTK-- could not be found"
  142.        echo "*** If GTK-- was installed in PREFIX, make sure PREFIX/bin is in"
  143.        echo "*** your path, or set the GTKMM_CONFIG environment variable to the"
  144.        echo "*** full path to gtkmm-config."
  145.        echo "*** The gtkmm-config script was not available in GTK-- versions"
  146.        echo "*** prior to 0.9.12. Perhaps you need to update your installed"
  147.        echo "*** version to 0.9.12 or later"
  148.      else
  149.        if test -f conf.gtkmmtest ; then
  150.         :
  151.        else
  152.           echo "*** Could not run GTK-- test program, checking why..."
  153.           CXXFLAGS="$CFLAGS $GTKMM_CXXFLAGS"
  154.           LIBS="$LIBS $GTKMM_LIBS"
  155.           AC_TRY_LINK([
  156. #include <gtk--.h>
  157. #include <stdio.h>
  158. ],      [ return ((gtkmm_major_version) || (gtkmm_minor_version) || (gtkmm_micro_version)); ],
  159.         [ echo "*** The test program compiled, but did not run. This usually means"
  160.           echo "*** that the run-time linker is not finding GTK-- or finding the wrong"
  161.           echo "*** version of GTK--. If it is not finding GTK--, you'll need to set your"
  162.           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  163.           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  164.           echo "*** is required on your system"
  165.   echo "***"
  166.           echo "*** If you have an old version installed, it is best to remove it, although"
  167.           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ],
  168.         [ echo "*** The test program failed to compile or link. See the file config.log for the"
  169.           echo "*** exact error that occured. This usually means GTK-- was incorrectly installed"
  170.           echo "*** or that you have moved GTK-- since it was installed. In the latter case, you"
  171.           echo "*** may want to edit the gtkmm-config script: $GTKMM_CONFIG" ])
  172.           CXXFLAGS="$ac_save_CXXFLAGS"
  173.           LIBS="$ac_save_LIBS"
  174.        fi
  175.      fi
  176.      GTKMM_CFLAGS=""
  177.      GTKMM_LIBS=""
  178.      ifelse([$3], , :, [$3])
  179.      AC_LANG_RESTORE
  180.   fi
  181.   AC_SUBST(GTKMM_CFLAGS)
  182.   AC_SUBST(GTKMM_LIBS)
  183.   rm -f conf.gtkmmtest
  184. ])