Audacity is a free audio editor. You can record sounds, play sounds, import and export WAV, AIFF, Ogg Vorbis, and MP3 files, and more. Use it to edit your sounds using Cut, Copy and Paste (with unlimited Undo), mix tracks together, or apply effects to your recordings. Initial port and many patches by jakemsr@. Thanks to maintainer Antoine Jacoutot for persistence and keeping the port alive. ok jakemsr@
56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
$OpenBSD: patch-src_Makefile_in,v 1.1.1.1 2006/01/12 08:59:27 steven Exp $
|
|
--- src/Makefile.in.orig Sat Nov 26 18:33:31 2005
|
|
+++ src/Makefile.in Mon Dec 26 18:34:14 2005
|
|
@@ -28,8 +28,9 @@ PRECOMP_CFLAGS = @PRECOMP_CFLAGS@
|
|
|
|
EXTRAOBJS = @EXTRAOBJS@
|
|
OPTOBJS = @OPTOBJS@
|
|
-LIBS = @LIBS@
|
|
+LIBS = @LIBS@ -lossaudio
|
|
EXTRATARGETS = @EXTRATARGETS@
|
|
+LDFLAGS = @LDFLAGS@
|
|
|
|
########################################
|
|
# ALL OBJECT FILES
|
|
@@ -53,7 +54,6 @@ OBJS = \
|
|
$(OBJDIR)/Help.o \
|
|
$(OBJDIR)/HistoryWindow.o \
|
|
$(OBJDIR)/ImageManipulation.o \
|
|
- $(OBJDIR)/Internat.o \
|
|
$(OBJDIR)/LabelTrack.o \
|
|
$(OBJDIR)/Languages.o \
|
|
$(OBJDIR)/LangChoice.o \
|
|
@@ -136,7 +136,6 @@ OBJS = \
|
|
$(OBJDIR)/widgets/Ruler.o \
|
|
$(OBJDIR)/widgets/Warning.o \
|
|
$(OBJDIR)/xml/XMLFileReader.o \
|
|
- $(OBJDIR)/xml/XMLTagHandler.o \
|
|
|
|
TEMPORARILY_DISABLED_IMPORTER_OBJS = \
|
|
$(OBJDIR)/import/ImportMIDI.o \
|
|
@@ -147,6 +146,7 @@ LIBAUDACITY_OBJS = \
|
|
$(OBJDIR)/BlockFile.o \
|
|
$(OBJDIR)/Dither.o \
|
|
$(OBJDIR)/FileFormats.o \
|
|
+ $(OBJDIR)/Internat.o \
|
|
$(OBJDIR)/Prefs.o \
|
|
$(OBJDIR)/SampleFormat.o \
|
|
$(OBJDIR)/blockfile/LegacyBlockFile.o \
|
|
@@ -154,6 +154,7 @@ LIBAUDACITY_OBJS = \
|
|
$(OBJDIR)/blockfile/SilentBlockFile.o \
|
|
$(OBJDIR)/blockfile/SimpleBlockFile.o \
|
|
$(OBJDIR)/blockfile/PCMAliasBlockFile.o \
|
|
+ $(OBJDIR)/xml/XMLTagHandler.o \
|
|
|
|
#
|
|
# We stick object files in separate directories for convenience
|
|
@@ -179,7 +180,7 @@ libaudacity.a: $(DIRS) $(LIBAUDACITY_OBJ
|
|
ar rcs libaudacity.a $(LIBAUDACITY_OBJS)
|
|
|
|
../audacity: $(DIRS) $(OBJS) $(EXTRAOBJS) $(OPTOBJS) libaudacity.a Makefile
|
|
- $(CCC) -o ../audacity $(OBJS) $(OPTOBJS) $(EXTRAOBJS) libaudacity.a $(LIBS)
|
|
+ $(CCC) -o ../audacity $(LDFLAGS) $(OBJS) $(OPTOBJS) $(EXTRAOBJS) libaudacity.a $(LIBS)
|
|
|
|
#
|
|
# Mac OS X application
|