Skip to content

Commit

Permalink
final 0.2.0 release
Browse files Browse the repository at this point in the history
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@244 0778d3d1-df1d-0410-868b-ea421aaaa00d
  • Loading branch information
tobydox committed Jul 19, 2006
1 parent 5fe7322 commit 16e0e12
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
12 changes: 8 additions & 4 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
Tobias Doerffel
<tobydox/at/users.sourceforge.net>
<tobydox/at/users/dot/sourceforge/dot/net>
Maintainer, main-development, artwork etc.

Danny McRae
<khjklujn/at/yahoo.com>
development

Javier Serrano Polo
<jasp00/at/terra/dot/es>
development

Zolo
<the-zolo/at/gmx/dot/de>
theme "Blue Scene"

Sebastian Tilsch
<djcompilation/at/gmx.de>
<djcompilation/at/gmx/dot/de>
recording of many samples

gabriel
<kryos1/at/shaw.ca>
<kryos1/at/shaw/dot/ca>
additional artwork

Andreas Brandmaier
<andy/at/brandmaier.de>
<andy/at/brandmaier/dot/de>
BitInvader plugin
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2006-07-19 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>

* configure.in:
- added optimization-flags
- made 0.2.0 release

2006-07-17 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>

* data/locale/de.ts:
Expand Down
11 changes: 9 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.50)
AC_INIT(lmms, 0.1.4-cvs20060717, tobydox/at/users/dot/sourceforge/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.1.4-cvs20060717)
AC_INIT(lmms, 0.2.0, tobydox/at/users/dot/sourceforge/dot/net)
AM_INIT_AUTOMAKE(lmms, 0.2.0)

AM_CONFIG_HEADER(config.h)

Expand All @@ -14,6 +14,13 @@ AC_PROG_LN_S
AC_PROG_GCC_TRADITIONAL
AC_PROG_LIBTOOL

EXTRAFLAGS="-floop-optimize2 -fomit-frame-pointer -fgcse-sm -fgcse-las"

if test "x`$CC --version|head -1|cut -d\ -f3|cut -d. -f1`" = "x4" ; then
EXTRAFLAGS="$EXTRAFLAGS -ftree-vectorize -funsafe-loop-optimizations -Wunsafe-loop-optimizations -ftree-loop-linear"
fi
CFLAGS="$CFLAGS $EXTRAFLAGS"
CXXFLAGS="$CXXFLAGS $EXTRAFLAGS"

AC_PATH_XTRA
gw_CHECK_QT
Expand Down

0 comments on commit 16e0e12

Please sign in to comment.