Skip to content

Commit

Permalink
merge 'lennart' branch back into trunk.
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1971 fefdeb5f-60dc-0310-8127-8f9354f1896f
  • Loading branch information
poettering committed Oct 28, 2007
1 parent 6687dd0 commit a67c21f
Show file tree
Hide file tree
Showing 294 changed files with 78,706 additions and 11,263 deletions.
6 changes: 6 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,10 @@ doxygen:
eolspace:
find \( -name '*.c' -o -name '*.h' -o -name 'Makefile.am' \) -exec perl -i -pe 's/\s+\n$$/\1\n/;' \{\} \;

untabify:
find \( -name '*.c' -o -name '*.h' \) -exec perl -i -pe 's/\t/ /g;' \{\} \;

fedora-snapshot: dist
cp $(distdir).tar.gz $$HOME/cvs.fedora/pulseaudio/devel/$(distdir).svn`date +%Y%m%d`.tar.gz

.PHONY: homepage distcleancheck doxygen
7 changes: 4 additions & 3 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ run_versioned() {

V=$(echo "$2" | sed -e 's,\.,,g')

if [ -e "`which $1$V`" ] ; then
if [ -e "`which $1$V 2> /dev/null`" ] ; then
P="$1$V"
else
if [ -e "`which $1-$2`" ] ; then
if [ -e "`which $1-$2 2> /dev/null`" ] ; then
P="$1-$2"
else
P="$1"
Expand All @@ -48,13 +48,14 @@ else
rm -rf autom4te.cache
rm -f config.cache

touch config.rpath
test "x$LIBTOOLIZE" = "x" && LIBTOOLIZE=libtoolize

"$LIBTOOLIZE" -c --force --ltdl
run_versioned aclocal "$VERSION"
run_versioned autoconf 2.59 -Wall
run_versioned autoheader 2.59
run_versioned automake "$VERSION" -a -c --foreign
run_versioned automake "$VERSION" --copy --foreign --add-missing

if test "x$NOCONFIGURE" = "x"; then
CFLAGS="-g -O0" ./configure --sysconfdir=/etc --localstatedir=/var --enable-force-preopen "$@"
Expand Down
Loading

0 comments on commit a67c21f

Please sign in to comment.