/[svn]/linuxsampler/tags/v0_1_0/aclocal.m4
ViewVC logotype

Diff of /linuxsampler/tags/v0_1_0/aclocal.m4

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

linuxsampler/trunk/aclocal.m4 revision 9 by schoenebeck, Wed Nov 5 14:47:10 2003 UTC linuxsampler/tags/v0_1_0/aclocal.m4 revision 44, Sun Apr 11 17:25:40 2004 UTC
# Line 11  Line 11 
11  # even the implied warranty of MERCHANTABILITY or FITNESS FOR A  # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12  # PARTICULAR PURPOSE.  # 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 page
17    dnl also defines GSTUFF_PKG_ERRORS on error
18    AC_DEFUN(PKG_CHECK_MODULES, [
19      succeeded=no
20    
21      if test -z "$PKG_CONFIG"; then
22        AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
23      fi
24    
25      if test "$PKG_CONFIG" = "no" ; then
26         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      else
31         PKG_CONFIG_MIN_VERSION=0.9.0
32         if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
33            AC_MSG_CHECKING(for $2)
34    
35            if $PKG_CONFIG --exists "$2" ; then
36                AC_MSG_RESULT(yes)
37                succeeded=yes
38    
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            else
47                $1_CFLAGS=""
48                $1_LIBS=""
49                ## If we have a custom action on failure, don't print errors, but
50                ## 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            fi
54    
55            AC_SUBST($1_CFLAGS)
56            AC_SUBST($1_LIBS)
57         else
58            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         fi
61      fi
62    
63      if test $succeeded = yes; then
64         ifelse([$3], , :, [$3])
65      else
66         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      fi
68    ])
69    
70    
71    
72  # Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-  # Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-
73    
74  # Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.  # Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
# Line 837  fi])]) Line 895  fi])])
895  # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-  # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
896    
897  # serial 47 AC_PROG_LIBTOOL  # serial 47 AC_PROG_LIBTOOL
898  # Debian $Rev: 100 $  # Debian $Rev: 149 $
899    
900    
901  # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)  # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
# Line 2263  linux*) Line 2321  linux*)
2321    # before this can be enabled.    # before this can be enabled.
2322    hardcode_into_libs=yes    hardcode_into_libs=yes
2323    
2324    # /usr/X11R6/lib and /usr/local/lib are common enough...    # Append ld.so.conf contents to the search path
2325    sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib /usr/local/lib"    if test -f /etc/ld.so.conf; then
2326        ld_extra=`$SED -e 's/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g' /etc/ld.so.conf`
2327        sys_lib_dlsearch_path_spec="/lib /usr/lib $ld_extra"
2328      fi
2329    
2330    # We used to test for /lib/ld.so.1 and disable shared libraries on    # We used to test for /lib/ld.so.1 and disable shared libraries on
2331    # powerpc, because MkLinux only supported shared libraries with the    # powerpc, because MkLinux only supported shared libraries with the
# Line 2935  bsdi4*) Line 2996  bsdi4*)
2996    lt_cv_file_magic_test_file=/shlib/libc.so    lt_cv_file_magic_test_file=/shlib/libc.so
2997    ;;    ;;
2998    
2999  cygwin* | mingw* | pw32*)  cygwin*)
3000    # win32_libid is a shell function defined in ltmain.sh    # win32_libid is a shell function defined in ltmain.sh
3001    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
3002    lt_cv_file_magic_cmd='win32_libid'    lt_cv_file_magic_cmd='win32_libid'
3003    ;;    ;;
3004    
3005    mingw* | pw32*)
3006      # Base MSYS/MinGW do not provide the 'file' command needed by
3007      # win32_libid shell function, so use a weaker test based on 'objdump'.
3008      lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
3009      lt_cv_file_magic_cmd='$OBJDUMP -f'
3010      ;;
3011    
3012  darwin* | rhapsody*)  darwin* | rhapsody*)
3013    lt_cv_deplibs_check_method=pass_all    lt_cv_deplibs_check_method=pass_all
3014    ;;    ;;

Legend:
Removed from v.9  
changed lines
  Added in v.44

  ViewVC Help
Powered by ViewVC