1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00

57 Commits

Author SHA1 Message Date
James Crook
30dda4fe97 Update Version number for 2.3.3 development. 2019-05-13 18:09:58 +01:00
Max Maisel
43402438f8 Link with -latomic if using clang on Linux. 2018-10-10 15:35:17 +01:00
James Crook
b24dae713b Update configure.ac for modules. 2018-04-06 11:54:15 +01:00
James Crook
b7b367a165 Prepare for compiling with wxWidgets 3.1.1
- Upped version number to Audacity 2.3.0 in configure.ac
- configure.ac now wants 3.1.1 but still accepts 3.0.0 (for top level, lib-widgets-extra and mod-nyq-bench)
- .travis.yml now apt-gets autopoint.  This allows us to do an autoreconf -ivf on Travis, IF we want to, but i snot used yet.
- FileDialog MakeFile.am now has LDFLAGS to resolve libtools issue on Travis with missing --tags=CXX
2018-04-02 17:28:38 +01:00
Paul Licameli
6ea647cc1d Set up for extracting i18n strings from .ny files with xgettext 2018-03-02 19:46:57 -05:00
Paul Licameli
5c1f11416f Change audacity version in configure.ac 2018-01-23 18:04:55 -05:00
Pokechu22
0c00435f08 Attempt to add the rest of the makefile for portmidi
Also, fix a broken(?) include in px_linux_alsa.c.  I don't know if it was actually broken, but it seems like that was wrong.
2017-07-04 07:50:15 -04:00
Darrell Walisser
d16274e883 correct mistake in clang patch 2017-03-31 12:51:15 -04:00
Darrell Walisser
4f397b288c clang: correct detection of gcc 2017-03-31 12:51:15 -04:00
James Crook
f061b0b853 Prepare for 2.2.0 Release Cycle.
* IS_ALPHA to 1
* Version number to 2.2.0.
2017-03-17 20:39:11 +00:00
James Crook
2fef7f34b8 No longer force local FFMPEG and LIBFLAC 2017-03-13 21:02:21 +00:00
Darrell Walisser
ad24fee7dd configure: add check for gcc 4.9.0 up-front
also sets -std=gnu++11 per wxWidgets requirement
closes bug #1506
2017-02-24 14:52:21 -05:00
James Crook
77ceb6a707 Linux Build Settings.
Configure.ac:
  Upped version number to 2.1.3
  Made FFmpeg and LibFlac Local

Readme.txt:
  Added instruction for CFLAGS.
  Use XCodebuild instructions on Mac, not autotools.
  one reason is, on Mac must use patched wxWidgets 3.0.2
2017-02-12 12:31:34 +00:00
Benjamin Drung
dcddef8a06 Correct Audacity version in configure.ac
Please do not forget to update the version in configure.ac before every
new release.
2016-05-14 21:55:03 +02:00
Leland Lucius
a9b6d2382c Use wxDEBUG_LEVEL instead of WXDEBUG_LEVEL...DOH!!! 2015-07-31 02:27:12 -05:00
Leland Lucius
e869099643 Add WXDEBUG_LEVEL=0 to non-debug builds 2015-07-29 14:44:51 -05:00
Leland Lucius
cf27c619da Make sure search string is unique 2015-07-28 18:06:35 -05:00
Leland Lucius
ed419f1917 Round 10 of wx3 changes
configure script now auto detects whether wxWidgets was built using
gtk2 or gtk3, so there's no longer a need to specify which one when
running configure.

VST support updated for wx3 under GTK.
2015-07-18 01:22:05 -05:00
Leland Lucius
9b9c8cc073 Round 5 of wx3 changes
FileDialog now complete on Linux.  Needs some fine tuning on
Windows and OSX.
Builds with wx3 and gtk2 or gtk3.
Still more effect work to do.
2015-07-14 23:33:53 -05:00
Leland Lucius
a03d65ef4d Cleanup lib-src
Removing:

id3lib
libresample
libsamplerate
taglib
2015-04-16 14:41:41 -05:00
lllucius@gmail.com
22d3719db5 Enabling --with-wx-version parameter to facilitate wx3 testing 2015-01-04 20:02:52 +00:00
lllucius@gmail.com
a1b40ef5e2 Workaround VPATH issue when generating message files
This was in locale/Makefile.in.in, but it would be easy
to accidentally lose those changes by running autopoint.
2015-01-03 03:49:50 +00:00
lllucius
71d8b0d8ec Possible fix for bug #435
I say possible because I can't fully test it as my motherboard
audio device doesn't show up in Windows (don't know why yet).

So, because of that and because this "fix" needs a little discussion
amongst the troops, I've ifdef'd it with EXPERIMENTAL_HAVE_DEVICE_CHANGE
and have disabled it by default.

What is does is it sets up a device change listener and performs an
automatic rescan when a change is detected.  (That's the part that
needs discussion.)
2014-12-06 04:11:31 +00:00
lllucius@gmail.com
bdb3aa328b Provide an easy way to build mod-nyq-bench
mkdir build
cd build
../configure
make
make modules
./audacity
2014-11-01 09:28:05 +00:00
lllucius@gmail.com
7f8270a5c8 3rd attempt to Add the ability to build without trashing the source tree
Hopefully this take care of all situations.
2014-10-28 06:27:57 +00:00
lllucius@gmail.com
49ce8fd212 2nd attempt to Add the ability to build without trashing the source tree
In r13510 I had neglected to build with all local libraries and some of
them needed attention.

So, I also took the opportunity to work out the locale directory and
how to keep it unmolested as well.  As a result, all locales are rebuilt
as expected, but into the "build" directory.

As a bonus you may now test Audacity from the "build" directory and have
Nyquist plugins and message catalogs available (so you can test other 
languages again without havint to install).

So, again:

mkdir buildme
cd buildme
../configure
make
./audacity
2014-10-27 23:13:03 +00:00
lllucius
1eeb4d979a The fabled realtime effects...
I've made it where you can enable and disable via experimentals:

EXPERIMENTAL_REALTIME_EFFECTS
EXPERIMENTAL_EFFECTS_RACK

You will notice that, as of now, the only effects currently set up for
realtime are VSTs.  Now that this is in, I will start converting the
rest.

As I start to convert the effects, the astute of you may notice that
they no longer directly access tracks or any "internal" Audacity
objects.  This isolates the effects from changes in Audacity and makes
it much easier to add new ones.

Anyway, all 3 platforms can now display VST effects in graphical mode.
Yes, that means Linux too.  There are quite a few VSTs for Linux if
you search for them.

The so-called "rack" definitely needs some discussion, work, and attention
from someone much better at graphics than me.  I'm not really sure it should
stay in as-is.  I'd originally planned for it to be simply a utility window
where you can store your (preconfigured) favorite effects.  It should probably
revert back to that idea.

You may notice that this DOES include the API work I did.  The realtime effects
were too tied to it and I didn't want to redo the whole thing.  As I mentioned
elsewhere, the API stuff may or may not be very future proof.

So, let the critter complaints commence.  I absolute KNOW there will be some.
(I know I'll be hearing from the Linux peeps pretty darn quickly.  ;-))
2014-10-26 03:24:10 +00:00
lllucius
c512822138 Additional changes for wx3
These are mostly for getting it to build on Linux, but I've
also created new configs in Visual Studio to make it easier
to switch between wx2 and wx3.

For Linux, you have to tell configure where to find the wx3
version of the wx-config script and, since some distros build
wxWidgets v3 against GTK+ v3, you may also need to enable
gtk3 with something like:

./configure --enable-gtk3 WX_CONFIG=/usr/bin/wx-config-3.0

On Windows, I've added "wx3-Debug" and "wx3-Release" to the
existing "Debug" and "Release" configurations.

They depend on you having your WXWIN environment variable
pointing to your wx2 directory and a new WXWIN3 environment
variable pointing to your wx3 directory.  For instance, I
have:

WXWIN=C:\Users\yam\Documents\wxWidgets-2.8.13
WXWIN3=C:\Users\yam\Documents\wxWidgets-3.0.2

Doing this allows you to switch freely among the 4 configurations
without having to get out of Visual Studio and monkey around with
the environment.

The project files will also add the location of the wxWidgets DLLs
to the PATH when running Audacity from within Visual Studio.  They
add %WXWIN%\lib\vc_dll or %WXWIN3%\lib\vc_dll at the beginning
of the PATH variable as appropriate.

I expect that once we convert to wx3 we'll just drop back down to
the normal Debug and Release configurations, but this should make
switching between wx2 and wx3 much easier during the transition.
2014-10-16 16:18:04 +00:00
lllucius
bdcefb4850 Preliminary changes for wxWidgets 3.0.1
We can't go to 3.0.1 yet as there are still build issues on
Linux and OSX.  You can get Windows to build, but there's
still some display issues.

These changes should work with wxWidgets 2.8.12 as well, so
we can take our time to get things working properly before
switching over.
2014-10-06 08:10:50 +00:00
RichardAsh1981@gmail.com
0d270c73b8 Fixing make dist target: use a newer tar format so that long file names can be stored correctly, and require a new enough automake to have this feature work. 2014-09-30 19:34:12 +00:00
richardash1981
c0b3859249 stop GStreamer being enabled on Linux systems where it is installed for this release, re-generate configure 2014-08-16 21:48:30 +00:00
richardash1981
305ca18336 Disable VST on Linux for 2.0.6 release, and regenerate files as required from recent commits 2014-08-09 21:41:57 +00:00
richardash1981
d25ab081e1 Add some extra output to indicate which plug-in formats are supported, and what link libraries each optional library is pulling in for diagnostic purposes 2014-08-09 19:57:10 +00:00
lllucius@gmail.com
5b18fe3347 Enable VST support on Linux 2014-05-28 06:45:03 +00:00
lllucius@gmail.com
a6782da38d Addition of gstreamer importer support. Will only use system
libraries...no locals for this fella.

gstreamer-1.0 is required.
2014-05-16 17:36:27 +00:00
benjamin.drung@gmail.com
9d0e5e360d Regenerate autotools files by running autoreconf --no-recursive -i -f. 2013-11-20 03:03:34 +00:00
benjamin.drung@gmail.com
a19b6f25ae Use Automake for Audacity. 2013-11-20 02:51:42 +00:00
benjamin.drung@gmail.com
0e38b3c395 Fix check for expat (stupid me). 2013-11-15 23:38:43 +00:00
benjamin.drung@gmail.com
6d2cef480f Make sure that we have expat enabled one way or another. 2013-11-14 11:08:43 +00:00
lllucius
d7abc466db Add expat 2.1.0 for Windows, Mac, and for local Linux builds (use system expat otherwise) 2013-11-14 06:56:26 +00:00
benjamin.drung@gmail.com
cec6a0bf58 Correctly quote AC_MSG_ERROR message.
configure will crash instead of showing the error message if the text contains
a comma and is not quoted.
2013-11-12 23:03:14 +00:00
lllucius@gmail.com
488c387b18 Adds system expat library to link
Adds system zlib library to link when using local libid3tag
Fixes portmixer build when using local portaudio
2013-11-09 21:10:32 +00:00
benjamin.drung@gmail.com
6619f23305 Use automake for libwidgetextra.
Replace the custom Makefile by automake. In addition drop the hacky
libwidgetextra-uninstalled.pc and configure the library like every other
optional library, but check if the library is not disabled.
2013-11-07 21:00:56 +00:00
benjamin.drung@gmail.com
01acfbd816 Downgrade accidentially bumped required minimum version of autoconf again. 2013-11-06 22:25:23 +00:00
lllucius
496aa450df Remove local copy of expat
Hasn't been used since 2008.  The wxexpat library is used instead.
2013-11-06 08:41:57 +00:00
benjamin.drung@gmail.com
0cb7e73bf5 Build only static libtool libraries in lib-src.
Pass --enable-static=yes --enable-shared=no to all libraries in lib-src.
2013-11-05 23:27:07 +00:00
benjamin.drung@gmail.com
4b5f7e9254 Really rename --enable-static to --enable-static-wx! 2013-11-05 23:24:13 +00:00
benjamin.drung@gmail.com
51becbbb81 Update configure.ac with autoupdate. 2013-11-05 22:56:19 +00:00
benjamin.drung@gmail.com
639c93c145 Rename --enable-static to --enable-static-wx.
--enable-static is too generic and also used by libtool.
2013-11-05 22:28:42 +00:00
benjamin.drung@gmail.com
970466b966 Move comment to the correct place. 2013-11-05 16:11:22 +00:00