Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2009-10-19 22:44:42 +0400
committerMikkel Krautz <mikkel@krautz.dk>2009-10-19 23:05:22 +0400
commita4845297d589d563609b1223821e45f6d2334864 (patch)
tree9018235f4d8b6cbf2fad1c60719f08fa2635c6ba /celt-0.6.1-build
parentd71202bc4c255314007c97889185f73bf204ecd0 (diff)
CELT dynload paths for OSX.
Diffstat (limited to 'celt-0.6.1-build')
-rw-r--r--celt-0.6.1-build/celt-0.6.1-build.pro4
-rw-r--r--celt-0.6.1-build/custom_support.h23
2 files changed, 0 insertions, 27 deletions
diff --git a/celt-0.6.1-build/celt-0.6.1-build.pro b/celt-0.6.1-build/celt-0.6.1-build.pro
index 3248e4423..e44ac24e1 100644
--- a/celt-0.6.1-build/celt-0.6.1-build.pro
+++ b/celt-0.6.1-build/celt-0.6.1-build.pro
@@ -39,10 +39,6 @@ unix {
INCLUDEPATH += ../$$BUILDDIR
}
-macx {
- DEFINES += CUSTOM_SUPPORT
-}
-
DIST = config.h
SOURCES *= bands.c celt.c cwrs.c entcode.c entdec.c entenc.c header.c kiss_fft.c kiss_fftr.c laplace.c mdct.c modes.c pitch.c psy.c quant_bands.c rangedec.c rangeenc.c rate.c vq.c
diff --git a/celt-0.6.1-build/custom_support.h b/celt-0.6.1-build/custom_support.h
deleted file mode 100644
index 25882f9f3..000000000
--- a/celt-0.6.1-build/custom_support.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef _CELT_SUPPORT_MUMBLE
-#define _CELT_SUPPORT_MUMBLE
-
-#ifdef __APPLE__
-
-#include <stdio.h>
-
-#define OVERRIDE_CELT_FATAL
-
-extern mumble_macx_celt_fatal(const char *str, const char *file, int line);
-
-static inline void _celt_fatal(const char *str, const char *file, int line) {
- if (! mumble_macx_celt_fatal) {
- fprintf(stderr, "Fatal (internal) libcelt error in %s, line %d: %s\n", file, line, str);
- abort();
- }
-
- mumble_macx_celt_fatal(str, file, line);
-}
-
-#endif /* __APPLE__ */
-
-#endif /* _CELT_SUPPORT_MUMBLE */