ref: 9ae4b5d0e765c366e9c019938157783504bfc738
parent: 20bcf2b2fb377db07b134490cecefd7fc8f521c7
author: Gregory Maxwell <[email protected]>
date: Tue Jun 12 12:46:57 EDT 2012
Advance version to 0.1.1, fix packaging of manfiles.
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,18 +22,18 @@
src/wave_out.h \
src/wav_io.h
-EXTRA_DIST = Makefile.unix
+EXTRA_DIST = Makefile.unix man/opusenc.1 man/opusdec.1 man/opusinfo.1
opusenc_SOURCES = src/opus_header.c src/opusenc.c src/resample.c src/audio-in.c src/diag_range.c
opusenc_LDADD = $(OGG_LIBS) $(Opus_LIBS) -lm
-opusenc_MANS = man/opusenc.1
+dist_opusenc_MANS = man/opusenc.1
opusdec_SOURCES = src/opus_header.c src/wav_io.c src/wave_out.c src/opusdec.c src/resample.c src/diag_range.c
opusdec_LDADD = $(OGG_LIBS) $(Opus_LIBS) $(OSS_LIBS) -lm
-opusdec_MANS = man/opusdec.1
+dist_opusdec_MANS = man/opusdec.1
opusinfo_SOURCES = src/opus_header.c src/opusinfo.c src/info_opus.c
opusinfo_LDADD = $(OGG_LIBS)
-opusinfo_MANS = man/opusinfo.1
+dist_opusinfo_MANS = man/opusinfo.1
#TESTS = FIXME
--- a/Makefile.unix
+++ b/Makefile.unix
@@ -2,7 +2,7 @@
#Run ./configure to run autotools/autoconf.
#This makefile exists as a fallback where autotools isn't working.
#CC=gcc
-CFLAGS:=-DPACKAGE='"opus-tools"' -DVERSION='"0.1.0git"' -DOPUSTOOLS -O2 -g -c -Wall -Wextra -DHAVE_GETOPT_H -DSPX_RESAMPLE_EXPORT= -DRANDOM_PREFIX=opustools -DOUTSIDE_SPEEX -DFLOATING_POINT $(CFLAGS)
+CFLAGS:=-DPACKAGE='"opus-tools"' -DVERSION='"0.1.1git"' -DOPUSTOOLS -O2 -g -c -Wall -Wextra -DHAVE_GETOPT_H -DSPX_RESAMPLE_EXPORT= -DRANDOM_PREFIX=opustools -DOUTSIDE_SPEEX -DFLOATING_POINT $(CFLAGS)
INCLUDES=-I../opus/include
all: opusenc opusdec opusinfo
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@
OPUSTOOLS_MAJOR_VERSION=0
OPUSTOOLS_MINOR_VERSION=1
-OPUSTOOLS_MICRO_VERSION=0
+OPUSTOOLS_MICRO_VERSION=1
OPUSTOOLS_EXTRA_VERSION=git
OPUSTOOLS_VERSION="$OPUSTOOLS_MAJOR_VERSION.$OPUSTOOLS_MINOR_VERSION.$OPUSTOOLS_MICRO_VERSION$OPUSTOOLS_EXTRA_VERSION"