Re: [fluid-dev] I removed GLIB dependency from my build.

2017-10-13 Thread KO Myung-Hun
ompilable on OS/2 or ArcaOS? Tom 2017-10-12 16:24 GMT+02:00 KO Myung-Hun <k...@chollian.net>: Hi/2.OS/2 is still alive. ^^ And, OS/2 is being sold as ArcaOS by Arca Noae(https://www.arcanoae.com/).--- Original message - From : "Philippe Simons&

Re: [fluid-dev] I removed GLIB dependency from my build.

2017-10-12 Thread KO Myung-Hun
Hi/2.OS/2 is still alive. ^^ And, OS/2 is being sold as ArcaOS by Arca Noae(https://www.arcanoae.com/).--- Original message - From : "Philippe Simons" To : "FluidSynth mailing list" CC : Date : Thu, 12 Oct 2017 1:4:44 +0900 (KST), Wed, 11 Oct 2017 18:00:43 +0200 Subject :

Re: [fluid-dev] [PATCH 0/4] OS/2 patches

2017-10-06 Thread KO Myung-Hun
...@gmail.com>: Hi/2. They are already ones got from git format-patch. And I sent them with git send-email. May be do you mean to attach the patch files to an e-mail not to send them in each e-mail ? I'm using GCC v4.9.2. KO Myung-Hun --- Original message - Fro

[fluid-dev] [PATCH 3/4] Remove ${} from CMAKE_SYSTEM variable in IF statement

2017-10-05 Thread KO Myung-Hun
IF statement interprets a variable without ${}. And without this, CMAKE_SYSTEM is not checked correctly on CMAKE 3.4.1. --- CMakeLists.txt | 25 + 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cafeb27..93739e9 100644

[fluid-dev] [PATCH 2/4] Remove -fvisibility=hidden flag on OS/2

2017-10-05 Thread KO Myung-Hun
On OS/2, -fvisibility=hidden is ignored. --- CMakeLists.txt | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b27775e..cafeb27 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -144,10 +144,16 @@ if ( CMAKE_COMPILER_IS_GNUCC OR

[fluid-dev] [PATCH 0/4] OS/2 patches

2017-10-05 Thread KO Myung-Hun
Hi/2. These are OS/2 patches. Review, please... [PATCH 1/4] Disable IPv6 on OS/2 [PATCH 2/4] Remove -fvisibility=hidden flag on OS/2 [PATCH 3/4] Remove ${} from CMAKE_SYSTEM variable in IF statement [PATCH 4/4] Use normal library name for OS/2 ___ flu

[fluid-dev] [PATCH 4/4] Use normal library name for OS/2

2017-10-05 Thread KO Myung-Hun
Now, CMake for OS/2 can process a DLL name properly longer than 8 characters. --- src/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6147b69..6ffd6fd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -264

[fluid-dev] [PATCH 1/4] Disable IPv6 on OS/2

2017-10-05 Thread KO Myung-Hun
OS/2 does not support IPv6, yet. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1676da7..b27775e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,6 +83,7 @@ endif ( ${CMAKE_SYSTEM} MATCHES "Darwin" ) if ( ${CMAKE_SYSTEM} MATCH

[fluid-dev] [PATCH 4/4] Use normal library name for OS/2

2017-02-05 Thread KO Myung-Hun
Now, CMake for OS/2 can process a DLL name properly longer than 8 characters. --- fluidsynth/src/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fluidsynth/src/CMakeLists.txt b/fluidsynth/src/CMakeLists.txt index e60037a..669804d 100644 --- a/fluidsynth/src/CMa

[fluid-dev] [PATCH 3/4] Remove ${} from CMAKE_SYSTEM variable in IF statement

2017-02-05 Thread KO Myung-Hun
IF statement interprets a variable without ${}. And without this, CMAKE_SYSTEM is not checked correctly on CMAKE 3.4.1. --- fluidsynth/CMakeLists.txt | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/fluidsynth/CMakeLists.txt b/fluidsynth/CMakeLists.tx

[fluid-dev] [PATCH] OS/2 patches

2017-02-05 Thread KO Myung-Hun
Hi/2. These are OS/2 patches. Review, please... [PATCH 1/4] Disable IPv6 on OS/2 [PATCH 2/4] Remove -fvisibility=hidden flag on OS/2 [PATCH 3/4] Remove ${} from CMAKE_SYSTEM variable in IF statement [PATCH 4/4] Use normal library name for OS/2 ___ flu

[fluid-dev] [PATCH 2/4] Remove -fvisibility=hidden flag on OS/2

2017-02-05 Thread KO Myung-Hun
On OS/2, -fvisibility=hidden is ignored. --- fluidsynth/CMakeLists.txt | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/fluidsynth/CMakeLists.txt b/fluidsynth/CMakeLists.txt index 7c145fe..0ff78fb 100644 --- a/fluidsynth/CMakeLists.txt +++ b/fluidsynth/CMakeLists.txt

[fluid-dev] [PATCH 1/4] Disable IPv6 on OS/2

2017-02-05 Thread KO Myung-Hun
OS/2 does not support IPv6, yet. --- fluidsynth/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/fluidsynth/CMakeLists.txt b/fluidsynth/CMakeLists.txt index c76b754..7c145fe 100644 --- a/fluidsynth/CMakeLists.txt +++ b/fluidsynth/CMakeLists.txt @@ -83,6 +83,7 @@ endif ( ${CMAKE_S

[fluid-dev] [PATCH 2/2] Use normal library name for OS/2

2016-01-21 Thread KO Myung-Hun
Now, CMake for OS/2 can process a DLL name properly longer than 8 characters. --- fluidsynth/src/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fluidsynth/src/CMakeLists.txt b/fluidsynth/src/CMakeLists.txt index e60037a..669804d 100644 --- a/fluidsynth/src/CMa

[fluid-dev] [PATCH 1/2] Remove ${} from CMAKE_SYSTEM variable in IF statement

2016-01-21 Thread KO Myung-Hun
IF statement interprets a variable without ${}. And without this, CMAKE_SYSTEM is not checked correctly on CMAKE 3.4.1. --- fluidsynth/CMakeLists.txt | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/fluidsynth/CMakeLists.txt b/fluidsynth/CMakeLists.tx

[fluid-dev] [PATCH 0/2] OS/2 patches

2016-01-18 Thread KO Myung-Hun
Hi/2. These are OS/2 patches. Review, please... [PATCH 1/2] Disable IPv6 on OS/2 [PATCH 2/2] Remove -fvisibility=hidden flag on OS/2 ___ fluid-dev mailing list fluid-dev@nongnu.org https://lists.nongnu.org/mailman/listinfo/fluid-dev

[fluid-dev] [PATCH 2/2] Remove -fvisibility=hidden flag on OS/2

2016-01-18 Thread KO Myung-Hun
On OS/2, -fvisibility=hidden is ignored. --- fluidsynth/CMakeLists.txt | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/fluidsynth/CMakeLists.txt b/fluidsynth/CMakeLists.txt index 7c145fe..0ff78fb 100644 --- a/fluidsynth/CMakeLists.txt +++ b/fluidsynth/CMakeLists.txt

[fluid-dev] [PATCH 1/2] Disable IPv6 on OS/2

2016-01-18 Thread KO Myung-Hun
OS/2 does not support IPv6, yet. --- fluidsynth/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/fluidsynth/CMakeLists.txt b/fluidsynth/CMakeLists.txt index c76b754..7c145fe 100644 --- a/fluidsynth/CMakeLists.txt +++ b/fluidsynth/CMakeLists.txt @@ -83,6 +83,7 @@ endif ( ${CMAKE_S

[fluid-dev] [PATCH 2/2] Set output name correctly for OS/2

2014-03-15 Thread KO Myung-Hun
OS/2 has a DLL name length limit up to 8 characters. --- fluidsynth/src/CMakeLists.txt |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/fluidsynth/src/CMakeLists.txt b/fluidsynth/src/CMakeLists.txt index 94464e4..e60037a 100644 --- a/fluidsynth/src/CMakeLists.txt +++

[fluid-dev] [PATCH 1/2] Fix header check for DART

2014-03-15 Thread KO Myung-Hun
--- fluidsynth/CMakeLists.txt |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fluidsynth/CMakeLists.txt b/fluidsynth/CMakeLists.txt index 004b022..0232e3a 100644 --- a/fluidsynth/CMakeLists.txt +++ b/fluidsynth/CMakeLists.txt @@ -181,7 +181,7 @@ if ( ${CMAKE_SYSTEM} MATCH

[fluid-dev] [PATCH] some build system fixes for OS/2

2010-11-21 Thread KO Myung-Hun
. -no-undefined is not an valid argument for linker on OS/2. -- KO Myung-Hun Using Mozilla SeaMonkey 2.0.9 Under OS/2 Warp 4 for Korean with FixPak #15 On AMD ThunderBird 1GHz with 512 MB RAM Korean OS/2 User Community : http://www.ecomstation.co.kr Index: configure.ac

[fluid-dev] Updated OS/2 DART audio driver

2010-02-06 Thread KO Myung-Hun
Hi/2. This patch updates the following 3 things of OS/2 DART audio driver. 1. Correct typo 2. Fix SYS3175, i.e Segmentation Fault 3. Support multiple instances of audio driver -- KO Myung-Hun Using Mozilla SeaMonkey 2.0 Under OS/2 Warp 4 for Korean with FixPak #15 On Intel Core2Duo T5500 1.66

Re: [fluid-dev] OS/2 support and glib

2009-04-29 Thread KO Myung-Hun
Hi/2. j...@resonance.org wrote: Sending again since I forgot to CC the list with my reply. Quoting KO Myung-Hun : Hi/2. j...@resonance.org wrote: Hello, I've read that the glib library supports OS/2, but I haven't seen a place to download it. I hope that it does not over comp

Re: [fluid-dev] OS/2 support and glib

2009-04-27 Thread KO Myung-Hun
unately I have not used them at all, so I cannot be sure they work fine. -- KO Myung-Hun Using Mozilla SeaMonkey 1.1.14 Under OS/2 Warp 4 for Korean with FixPak #15 On AMD ThunderBird 1 GHz with 512 MB RAM Korean OS/2 User Community : http://www.ecomstation.co.kr __

Re: [fluid-dev] [PATCH] OS/2 DART support

2009-02-03 Thread KO Myung-Hun
Hi/2. Josh Green wrote: > On Wed, 2009-02-04 at 16:05 +0900, KO Myung-Hun wrote: > >> Of course, there are many people to want to use FluidSynth on OS/2. If >> there was no people, would I port it ? In addition, FluidSynth is >> important as a lib as well as a stand-alo

Re: [fluid-dev] [PATCH] OS/2 DART support

2009-02-03 Thread KO Myung-Hun
first was also to use it as a lib for ScummVM, which is available to OS/2 already. > But what's next, DOS support? ;) > If there is someone who could do it. ^^ -- KO Myung-Hun Using Mozilla SeaMonkey 1.1.14 Under OS/2 Warp 4 for Korean with FixPak #15 On AMD Thun

[fluid-dev] [PATCH] OS/2 DART support

2009-02-03 Thread KO Myung-Hun
Hi/2. This patch enables a OS/2 DART audio driver support based on 1.0.8 release sources. Any comments ? -- KO Myung-Hun Using Mozilla SeaMonkey 1.1.14 Under OS/2 Warp 4 for Korean with FixPak #15 On AMD ThunderBird 1 GHz with 512 MB RAM Korean OS/2 User Community : http