Skip to content

Commit

Permalink
Fixes -ggdb3 GNU 'as' incompatiblity - commit to trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
eddygroenendaal committed Jul 13, 2009
1 parent f5e5054 commit 44c01ca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
9 changes: 9 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,15 @@ AC_SUBST([PROJECT_build])
# checks for typedefs, structures, and compiler characteristics
###############################################################################

###############################################################################
# replace -ggdb3 with -ggdb2 to avoid GNU 'as' from failing
# See http://code.google.com/p/mp4v2/issues/detail?id=27
###############################################################################
if test "$GXX" = "yes"; then
CXXFLAGS_GGDB3=`echo "$CXXFLAGS" | sed -e 's/-ggdb3/-ggdb2/'`
CXXFLAGS="$CXXFLAGS_GGDB3"
fi

###############################################################################
# additional ldflags
###############################################################################
Expand Down
4 changes: 0 additions & 4 deletions libplatform/config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H

/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#undef LT_OBJDIR

/* Define to 1 if LFS should be activated */
#undef NEED_LFS_ACTIVATION

Expand Down
1 change: 1 addition & 0 deletions maintainer/HOWTO-RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ to branch from 1.0.0 (not trunk!). Here is an example 1.0.1 point-release.
svn cp -m "BRANCHED: RELEASE 1.0.1" \
https://mp4v2.googlecode.com/svn/releases/1.0.0 \
https://mp4v2.googlecode.com/svn/releases/1.0.1
svn co https://mp4v2.googlecode.com/svn/releases/1.0.1
cd 1.0.1/
vi project/project.m4sugar # bump version to 1.0.1
svn ci
Expand Down

0 comments on commit 44c01ca

Please sign in to comment.