/[svn]/linuxsampler/trunk/src/linuxsampler.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/linuxsampler.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 360 by senkov, Mon Feb 7 00:19:30 2005 UTC revision 361 by schoenebeck, Wed Feb 9 01:22:18 2005 UTC
# Line 216  void parse_options(int argc, char **argv Line 216  void parse_options(int argc, char **argv
216          };          };
217    
218      while (true) {      while (true) {
219          res = getopt_long_only(argc, argv, "", long_options, &option_index);          /*
220              Stephane Letz : letz@grame.fr
221              getopt_long_only does not exist on OSX : replaced by getopt_long for now.
222            */
223            res = getopt_long(argc, argv, "", long_options, &option_index);
224          if(res == -1) break;          if(res == -1) break;
225          if (res == 0) {          if (res == 0) {
226              switch(option_index) {              switch(option_index) {

Legend:
Removed from v.360  
changed lines
  Added in v.361

  ViewVC Help
Powered by ViewVC