How to register on trac.xiph.org?
Max Horn <[email protected]>
| Newsgroups | gmane.comp.multimedia.ogg.vorbis.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi there, I just wanted to submit a patch for libao on http/::trac.xiph.org. The page tells me: "If you would like to report a bug or request a feature, please add a ticket." with a link. When I follow that link, it asks me for a username & password. Same for the "login" button, of course. However, I have not been able to figure our where and how I would go about creating / requesting a login in order to file a report. Was it always like that? I am pretty sure that I filed bug reports via trac before without any problems... In any case, it seems like a very bad idea to make it impossible (or at least, difficult...) for non- project members to report bugs or submit patches... :-(. In case you are interested, attached is the patch which fixes libao's autogen.sh to also work with Automake 1.10 or newer, Cheers, Max _______________________________________________ Vorbis-dev mailing list [email protected] http://lists.xiph.org/mailman/listinfo/vorbis-dev
libao-autogen.patch
(application/octet-stream, 1.4 KB)
Index: autogen.sh
===================================================================
--- autogen.sh (Revision 16773)
+++ autogen.sh (Arbeitskopie)
@@ -20,7 +20,7 @@
DIE=1
}
-VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9]\.[0-9]\).*/\1/"
+VERSIONGREP="sed -e s/.*[^0-9\.]\([0-9]\.[0-9]\+\).*/\1/"
VERSIONMKINT="sed -e s/[^0-9]//"
# do we need automake?
@@ -43,7 +43,7 @@
else
echo -n "checking for automake $AM_NEEDED or later... "
for am in automake-$AM_NEEDED automake$AM_NEEDED \
- automake automake-1.7 automake-1.8 automake-1.9; do
+ automake automake-1.7 automake-1.8 automake-1.9 automake-1.10 automake-1.11; do
($am --version < /dev/null > /dev/null 2>&1) || continue
ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT`
verneeded=`echo $AM_NEEDED | $VERSIONMKINT`
@@ -56,7 +56,7 @@
test -z $AUTOMAKE && echo "no"
echo -n "checking for aclocal $AM_NEEDED or later... "
for ac in aclocal-$AM_NEEDED aclocal$AM_NEEDED \
- aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9; do
+ aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9 aclocal-1.10 aclocal-1.11; do
($ac --version < /dev/null > /dev/null 2>&1) || continue
ver=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT`
verneeded=`echo $AM_NEEDED | $VERSIONMKINT`