--- linuxsampler/trunk/src/linuxsampler.cpp 2005/02/07 00:19:30 360 +++ linuxsampler/trunk/src/linuxsampler.cpp 2005/02/09 01:22:18 361 @@ -216,7 +216,11 @@ }; while (true) { - res = getopt_long_only(argc, argv, "", long_options, &option_index); + /* + Stephane Letz : letz@grame.fr + getopt_long_only does not exist on OSX : replaced by getopt_long for now. + */ + res = getopt_long(argc, argv, "", long_options, &option_index); if(res == -1) break; if (res == 0) { switch(option_index) {