~ubuntu-branches/ubuntu/quantal/gnash/quantal-proposed

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2008-10-14 16:06:54 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20081014160654-0anbl2mi098aee2h
Tags: 0.8.4-0ubuntu1
* LP: #84526 - Gnash menu launcher (/usr/share/applications/gnash.desktop
  file) doesn't start any application, also gnash isn't asociated with SWF
  mimetype; we dont show gnash in the .desktop launcher; we add
  NoDisplay=true, add a GenericName and Comment for the sake of
  completeness. Also we add the proper MimeType value, remove Encoding,
  don't use absolute paths for icon and exec and dont use specific icon
  file format suffix.
  - update debian/gnash.desktop

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
dnl  
17
17
 
18
18
AC_PREREQ(2.50)
19
 
AC_INIT(gnash, trunk)
 
19
AC_INIT(gnash, 0.8.4)
20
20
AC_CONFIG_SRCDIR(libcore/gnash.h)
21
21
AM_CONFIG_HEADER(gnashconfig.h)
22
22
 
861
861
AM_CONDITIONAL(BUILD_EXTENSIONS, [ test -n "$extensions_list"])
862
862
 
863
863
AC_MSG_CHECKING([For the version of libtool])
864
 
if test "x$darwin" != x; then
865
 
LIBTOOLIZE=glibtoolize
 
864
if test -d ${srcdir}/libltdl/libltdl; then
 
865
ltver=2.x
 
866
else
 
867
ltver=1.x
866
868
fi
867
 
ltver=`${LIBTOOLIZE:-libtoolize} --version | head -1 | cut -d ' ' -f 4`
868
869
ltmajor=`echo $ltver | cut -d '.' -f 1`
869
870
AC_MSG_RESULT([$ltver])
870
871
if test $ltmajor -eq 1; then
2561
2562
    else
2562
2563
      echo "        Gstreamer flags are: default include path"
2563
2564
    fi
2564
 
      echo "        Gstreamer libs are: $GSTREAMER_LIBS"
 
2565
    echo "        Gstreamer libs are: $GSTREAMER_LIBS"
 
2566
    if test x"$has_modern_gstpbutils" = "xno"; then
 
2567
      echo "        RECOMMENDED: If the user has not installed the necessary Gstreamer plugins," >&4
 
2568
      echo "                     Gstreamer can pop up a message prompting them to." >&4
 
2569
      echo "                     Install gstpbutils from http://www.gstreamer.net for that to be enabled" >&4
 
2570
      echo "                     or .deb users: apt-get install libgstreamer-plugins-base0.10-dev" >&4
 
2571
    fi
2565
2572
  else
2566
2573
    echo "        ERROR: GST media handling requested but gstreamer-0.10+ not found" >&3
2567
2574
    echo "               Install it from http://www.gstreamer.net" >&3
2739
2746
  fi
2740
2747
    echo "        CURL libs are: $CURL_LIBS"
2741
2748
else
2742
 
  echo "        WARNING: CURL library not found." >&4
2743
 
  echo "                 Gnash will be built without support for streaming from URLs." >&4
2744
 
  echo "                 Why not install libcurl from http://curl.haxx.se/libcurl" >&4
2745
 
  echo "                 or .deb users: apt-get install libcurl3-dev" >&4
2746
 
  echo "                 or .rpm users: yum install curl-devel" >&4
 
2749
  echo "        RECOMMENDED: If you install the CURL library, Gnash will be able to" >&4
 
2750
  echo "                     display remote content (streaming from URLs) using CURL." >&4
 
2751
  echo "                     Install libcurl from http://curl.haxx.se/libcurl" >&4
 
2752
  echo "                     or .deb users: apt-get install libcurl3-dev" >&4
 
2753
  echo "                     or .rpm users: yum install curl-devel" >&4
2747
2754
fi
2748
2755
 
2749
2756
if test x"$ext_dbus" = xyes; then
2806
2813
    fi
2807
2814
    if test x"${extra_missing_libs}" != x; then
2808
2815
      for i in ${extra_missing_libs}; do
2809
 
              echo "        WARNING: The BOOST $i library is recommended!" >&4
2810
 
        echo "               Install it from http://www.boost.org" >&4
2811
 
        echo "               or .deb users: apt-get install libboost-"`echo ${i} | sed 's/_/-/g'`"-dev" >&4
2812
 
        echo "               Gnash will compile anyway, but not all tests will work." >&4
 
2816
        echo "        WARNING: The BOOST $i library is recommended!" >&4
 
2817
        echo "                 Install it from http://www.boost.org" >&4
 
2818
        echo "                 or .deb users: apt-get install libboost-"`echo ${i} | sed 's/_/-/g'`"-dev" >&4
 
2819
        echo "                 Gnash will compile anyway, but not all tests will work." >&4
2813
2820
      done
2814
2821
    fi
2815
2822
    if test x"${missing_libs}" != x; then