Don't use shave for now, lets get back to it in the next release.
authorZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Mon, 23 Feb 2009 16:48:06 +0000 (16:48 +0000)
committerZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Mon, 23 Feb 2009 16:48:06 +0000 (16:48 +0000)
This reverts commit 4f253364493e8feebed31c98026d2a7a7185917d.

svn path=/trunk/; revision=641

acinclude.m4 [deleted file]
configure.ac
shave-libtool.in [deleted file]
shave.in [deleted file]
src/plugins/dvb/Makefile.am
src/plugins/test/Makefile.am
src/plugins/tracker/Makefile.am
src/rygel/Makefile.am

diff --git a/acinclude.m4 b/acinclude.m4
deleted file mode 100644 (file)
index 5b1f675..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-dnl Make automake/libtool output more friendly to humans
-dnl
-dnl SHAVE_INIT([shavedir])
-dnl
-dnl shavedir: the directory where the shave script is, it defaults to
-dnl           $(top_builddir)
-dnl
-dnl * SHAVE_INIT should be called late in your configure.(ac|in) file (just
-dnl   before AC_CONFIG_FILE/AC_OUTPUT is perfect.  This macro rewrite CC and
-dnl   LIBTOOL, you don't want the configure tests to have these variables
-dnl   re-defined.
-dnl * This macro requires GNU make's -s option.
-
-AC_DEFUN([SHAVE_INIT], [
-dnl where can we find the shave scripts?
-m4_if([$1],,
-  [shavedir='$(top_builddir)'],
-  [shavedir='$(top_builddir)'/$1])
-AC_SUBST(shavedir)
-dnl make is now quiet
-AC_SUBST([MAKEFLAGS], [-s])
-AC_SUBST([AM_MAKEFLAGS], ['`test -z $V && echo -s`'])
-dnl we need sed
-AC_CHECK_PROG(SED,sed,sed,false)
-dnl substitute libtool
-SHAVE_SAVED_LIBTOOL=$LIBTOOL
-AC_SUBST(SHAVE_SAVED_LIBTOOL)
-LIBTOOL="\$(SHELL) \$(shavedir)/shave-libtool '\$(SHAVE_SAVED_LIBTOOL)'"
-AC_SUBST(LIBTOOL)
-dnl substitute cc
-SHAVE_SAVED_CC=$CC
-SHAVE_SAVED_CXX=$CXX
-AC_SUBST(SHAVE_SAVED_CC)
-AC_SUBST(SHAVE_SAVED_CXX)
-CC="\$(SHELL) \$(shavedir)/shave cc '\$(SHAVE_SAVED_CC)'"
-CXX="\$(SHELL) \$(shavedir)/shave cxx '\$(SHAVE_SAVED_CXX)'"
-AC_SUBST(CC)
-AC_SUBST(CXX)
-])
-
index 6e0c1c4..3adb0b6 100644 (file)
@@ -137,11 +137,7 @@ ALL_LINGUAS=""
 AM_GLIB_GNU_GETTEXT
 AM_GLIB_DEFINE_LOCALEDIR([LOCALEDIR])
 
-SHAVE_INIT
-
 AC_OUTPUT([
-shave
-shave-libtool
 Makefile
 src/Makefile
 src/rygel/Makefile
diff --git a/shave-libtool.in b/shave-libtool.in
deleted file mode 100644 (file)
index 02de5ad..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/bin/sh
-
-# we need sed
-SED=@SED@
-if test -z "$SED" ; then
-SED=sed
-fi
-Xsed="$SED -e s/^X//"
-
-lt_unmangle ()
-{
-   last_result=`echo -n X$1 | $Xsed -e 's#.libs/##' -e 's#[^0-9a-zA-Z_]\+_la##'`
-}
-
-# the real libtool to use
-LIBTOOL="$1"
-shift
-
-# if 1, don't print anything, the underlaying wrapper will do it
-pass_though=0
-
-# scan the arguments, keep the right ones for libtool, and discover the mode
-preserved_args=
-while test "$#" -gt 0; do
-    opt="$1"
-    shift
-
-    case $opt in
-    --mode=*)
-        mode=`echo "X$opt" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'`
-        preserved_args="$preserved_args $opt"
-        ;;
-    -o)
-        lt_output="$1"
-        preserved_args="$preserved_args $opt"
-       ;;
-    *)
-        preserved_args="$preserved_args $opt"
-        ;;
-      esac
-done
-
-case "$mode" in
-compile)
-    # shave will be called and print the actual CC/CXX/LINK line
-    preserved_args="$preserved_args --shave-mode=$mode"
-    pass_though=1
-    ;;
-link)
-    preserved_args="$preserved_args --shave-mode=$mode"
-    Q="  LINK  "
-    ;;
-*)
-    # let's u
-    # echo "*** libtool: Unimplemented mode: $mode, fill a bug report"
-    ;;
-esac
-
-lt_unmangle "$lt_output"
-output=$last_result
-
-if test -z $V; then
-    if test $pass_though -eq 0; then
-        echo "$Q$output"
-    fi
-    $LIBTOOL --silent $preserved_args
-else
-    echo $LIBTOOL $preserved_args
-    $LIBTOOL $preserved_args
-fi
diff --git a/shave.in b/shave.in
deleted file mode 100644 (file)
index 487596e..0000000
--- a/shave.in
+++ /dev/null
@@ -1,70 +0,0 @@
-#!/bin/sh
-
-# we need sed
-SED=@SED@
-if test -z "$SED" ; then
-SED=sed
-fi
-Xsed="$SED -e s/^X//"
-
-lt_unmangle ()
-{
-   last_result=`echo -n X$1 | $Xsed -e 's#.libs/##' -e 's#[^0-9a-zA-Z_]\+_la##'`
-}
-
-# the tool to wrap (cc, cxx, ar, ranlib, ..)
-tool="$1"
-shift
-
-# the reel tool (to call)
-REEL_TOOL="$1"
-shift
-
-pass_through=0
-preserved_args=
-while test "$#" -gt 0; do
-    opt="$1"
-    shift
-
-    case $opt in
-    --shave-mode=*)
-        mode=`echo "X$opt" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'`
-       ;;
-    -o)
-        lt_output="$1"
-        preserved_args="$preserved_args $opt"
-       ;;
-    *)
-        preserved_args="$preserved_args $opt"
-        ;;
-      esac
-done
-
-# mode=link is handled in the libtool wrapper
-case "$mode,$tool" in
-link,*)
-    pass_through=1
-    ;;
-compile,cxx)
-    Q="  CXX   "
-    ;;
-compile,cc|*,*)
-    # no "libtool" mode has been given, we are called by the Makefile:
-    # -> assume compilation
-    mode=compile
-    Q="  CC    "
-    ;;
-esac
-
-lt_unmangle "$lt_output"
-output=$last_result
-
-if test -z $V; then
-    if test $pass_through -eq 0; then
-        echo "$Q$output"
-    fi
-    $REEL_TOOL $preserved_args
-else
-    echo $REEL_TOOL $preserved_args
-    $REEL_TOOL $preserved_args
-fi
index f03f37d..d6395fa 100644 (file)
@@ -1,7 +1,3 @@
-V         = @
-Q         = $(V:1=)
-QUIET_GEN = $(Q:@=@echo '  GEN   '$@;)
-
 plugindir = $(libdir)/rygel-1.0
 
 plugin_LTLIBRARIES = librygel-dvb.la
@@ -42,7 +38,7 @@ librygel_dvb_la_SOURCES = rygel-dvb-content-dir.h \
                           rygel-dvb-plugin.vala
 
 rygel-dvb.stamp: $(filter %.vala,$(librygel_dvb_la_SOURCES))
-       $(QUIET_GEN) $(VALAC) -C --vapidir=$(top_srcdir)/src/rygel \
+       $(VALAC) -C --vapidir=$(top_srcdir)/src/rygel \
        --pkg rygel-1.0 --pkg cstuff --pkg gupnp-1.0 --pkg gupnp-av-1.0 \
        --pkg dbus-glib-1 --pkg gee-1.0 --pkg gstreamer-0.10 $^
        touch $@
index 08d099c..93375bf 100644 (file)
@@ -1,7 +1,3 @@
-V         = @
-Q         = $(V:1=)
-QUIET_GEN = $(Q:@=@echo '  GEN   '$@;)
-
 plugindir = $(libdir)/rygel-1.0
 
 plugin_LTLIBRARIES = librygel-test.la
@@ -47,7 +43,7 @@ librygel_test_la_SOURCES = rygel-test-content-dir.h \
                            rygel-test-plugin.vala
 
 rygel-test.stamp: $(filter %.vala,$(librygel_test_la_SOURCES))
-       $(QUIET_GEN) $(VALAC) -C --vapidir=$(top_srcdir)/src/rygel \
+       $(VALAC) -C --vapidir=$(top_srcdir)/src/rygel \
        --pkg rygel-1.0 --pkg cstuff \
        --pkg gupnp-1.0 --pkg gupnp-av-1.0 \
         --pkg dbus-glib-1 --pkg gee-1.0 --pkg gstreamer-0.10 $^
index a7b105a..67f5e41 100644 (file)
@@ -1,7 +1,3 @@
-V         = @
-Q         = $(V:1=)
-QUIET_GEN = $(Q:@=@echo '  GEN   '$@;)
-
 plugindir = $(libdir)/rygel-1.0
 
 plugin_LTLIBRARIES = librygel-media-tracker.la
@@ -82,7 +78,7 @@ librygel_media_tracker_la_SOURCES = rygel-media-tracker.h \
                                    rygel-tracker-plugin.vala
 
 rygel-media-tracker.stamp: $(filter %.vala,$(librygel_media_tracker_la_SOURCES))
-       $(QUIET_GEN) $(VALAC) -C --vapidir=$(top_srcdir)/src/rygel \
+       $(VALAC) -C --vapidir=$(top_srcdir)/src/rygel \
        --pkg rygel-1.0 --pkg cstuff \
        --pkg gupnp-1.0 --pkg gupnp-av-1.0 \
         --pkg dbus-glib-1 --pkg gee-1.0 --pkg gstreamer-0.10 $^
index d74c3cf..691e2aa 100644 (file)
@@ -1,7 +1,3 @@
-V         = @
-Q         = $(V:1=)
-QUIET_GEN = $(Q:@=@echo '  GEN   '$@;)
-
 if UNINSTALLED
 shareddir = $(abs_top_builddir)/data
 else
@@ -126,7 +122,7 @@ rygel_SOURCES = $(VAPI_SOURCE_FILES) \
                rygel-media-item.h
 
 rygel.stamp: $(filter %.vala,$(rygel_SOURCES))
-       $(QUIET_GEN) $(VALAC) -C --vapidir=$(srcdir) \
+       $(VALAC) -C --vapidir=$(srcdir) \
        --pkg cstuff --pkg gupnp-1.0 --pkg gupnp-av-1.0 --pkg dbus-glib-1 \
        --pkg gconf-2.0 --pkg gstreamer-0.10 --pkg gio-2.0 --pkg gee-1.0 $^
        touch $@
@@ -162,7 +158,7 @@ VAPI_SOURCE_FILES = rygel-content-directory.vala \
                    rygel-didl-lite-writer.vala
 
 rygel-1.0.vapi: $(VAPI_SOURCE_FILES)
-       $(QUIET_GEN) $(VALAC) -C --library=rygel-1.0 \
+       $(VALAC) -C --library=rygel-1.0 \
        --pkg gupnp-1.0 --pkg gupnp-av-1.0 --pkg gee-1.0 --pkg gstreamer-0.10 \
        $^