aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure3
-rw-r--r--sound/fmopl.cpp4
2 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index 44733ee65e..2425e02c04 100755
--- a/configure
+++ b/configure
@@ -985,6 +985,7 @@ case $_host_os in
;;
mint*)
DEFINES="$DEFINES -DUNIX -DSYSTEM_NOT_SUPPORTING_D_TYPE"
+ LIBS="$LIBS -lsocket"
;;
amigaos*)
# TODO: anything to be added here?
@@ -1057,7 +1058,7 @@ if test -n "$_host"; then
type_2_byte='short'
type_4_byte='long'
_ranlib=m68k-atari-mint-ranlib
- _ar=m68k-atari-mint-ar
+ _ar="m68k-atari-mint-ar cru"
;;
i586-mingw32msvc)
echo "Cross-compiling to $_host, forcing endianness, alignment and type sizes"
diff --git a/sound/fmopl.cpp b/sound/fmopl.cpp
index b2e1ee3aee..8e96e62b64 100644
--- a/sound/fmopl.cpp
+++ b/sound/fmopl.cpp
@@ -33,7 +33,7 @@
#include "sound/fmopl.h"
-#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined(GP2X) || defined (__MAEMO__) || defined(__DS__)
+#if defined (_WIN32_WCE) || defined (__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined(GP2X) || defined (__MAEMO__) || defined(__DS__) || defined (__MINT__)
#include "common/config-manager.h"
#endif
@@ -1171,7 +1171,7 @@ FM_OPL *makeAdlibOPL(int rate) {
// We need to emulate one YM3812 chip
int env_bits = FMOPL_ENV_BITS_HQ;
int eg_ent = FMOPL_EG_ENT_HQ;
-#if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined (GP2X) || defined(__MAEMO__) || defined(__DS__)
+#if defined (_WIN32_WCE) || defined(__SYMBIAN32__) || defined(PALMOS_MODE) || defined(__GP32__) || defined (GP2X) || defined(__MAEMO__) || defined(__DS__) || defined (__MINT__)
if (ConfMan.hasKey("FM_high_quality") && ConfMan.getBool("FM_high_quality")) {
env_bits = FMOPL_ENV_BITS_HQ;
eg_ent = FMOPL_EG_ENT_HQ;