just a thank you (no sarcasm)

The place to discuss linux version of MakeMKV
Post Reply
Michael_S
Posts: 3
Joined: Sun Dec 31, 2017 3:36 pm

just a thank you (no sarcasm)

Post by Michael_S »

If the moderators find posts like this more irritating than useful, I won't be offended if you delete it.

I just wanted to say that MakeMKV is awesome. I've been using it for two years. I switched my main PC, and rather than re-use my previous activation code I just bought another one as a form of thank-you. Even with DVDs, it can rip a lot of disks that HandBrake and similar tools can't manage.
Vicky4
Posts: 9
Joined: Mon Nov 07, 2011 9:52 pm

Re: just a thank you (no sarcasm)

Post by Vicky4 »

I wholeheartedly agree! Bought the license several years ago. Thanks for your continued support!
Jpcari
Posts: 5
Joined: Mon Mar 12, 2018 8:17 am

Re: just a thank you (no sarcasm)

Post by Jpcari »

I would like to add a Thank You to the contributors of this forum.
Their contributions are most helpful.

For example, this is how to successfully compile makemkv with the old gcc compiler of the deprecated Ubuntu 12.04 Precise distribution.

You'll need 3 modifications to the standard procedure, otherwise compilation stops in the make process with an error 01.

1. ./configure CFLAGS='-D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS'
(not sure that this is compulsory, prevents useless warnings)

2. Generated Makefile
Replace "-std=c+11" in line $(GXX) -std=c++11 $(CFLAGS) ...
with "-std=c++0x"

3. Libmkv.cpp in libmakemkv/src
Move the lines
#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS 1
#endif
#include <inttypes.h>
BEFORE the other #include directives
Post Reply