Changeset 3105 in orxonox.OLD for orxonox/branches/images/aclocal.m4
- Timestamp:
- Dec 5, 2004, 5:34:52 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/images/aclocal.m4
r3084 r3105 11 11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A 12 12 # PARTICULAR PURPOSE. 13 14 15 dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)16 dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page17 dnl also defines GSTUFF_PKG_ERRORS on error18 AC_DEFUN(PKG_CHECK_MODULES, [19 succeeded=no20 21 if test -z "$PKG_CONFIG"; then22 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)23 fi24 25 if test "$PKG_CONFIG" = "no" ; then26 echo "*** The pkg-config script could not be found. Make sure it is"27 echo "*** in your path, or set the PKG_CONFIG environment variable"28 echo "*** to the full path to pkg-config."29 echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."30 else31 PKG_CONFIG_MIN_VERSION=0.9.032 if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then33 AC_MSG_CHECKING(for $2)34 35 if $PKG_CONFIG --exists "$2" ; then36 AC_MSG_RESULT(yes)37 succeeded=yes38 39 AC_MSG_CHECKING($1_CFLAGS)40 $1_CFLAGS=`$PKG_CONFIG --cflags "$2"`41 AC_MSG_RESULT($$1_CFLAGS)42 43 AC_MSG_CHECKING($1_LIBS)44 $1_LIBS=`$PKG_CONFIG --libs "$2"`45 AC_MSG_RESULT($$1_LIBS)46 else47 $1_CFLAGS=""48 $1_LIBS=""49 ## If we have a custom action on failure, don't print errors, but50 ## do set a variable so people can do so.51 $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`52 ifelse([$4], ,echo $$1_PKG_ERRORS,)53 fi54 55 AC_SUBST($1_CFLAGS)56 AC_SUBST($1_LIBS)57 else58 echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."59 echo "*** See http://www.freedesktop.org/software/pkgconfig"60 fi61 fi62 63 if test $succeeded = yes; then64 ifelse([$3], , :, [$3])65 else66 ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4])67 fi68 ])69 70 71 13 72 14 # -*- Autoconf -*-
Note: See TracChangeset
for help on using the changeset viewer.