Skip to content

Commit

Permalink
Added empty extension for loading framework binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Shon Frazier committed Mar 4, 2012
1 parent b6c0483 commit 1e7611e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dlload.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ static char *extensions[] = { ".so" };
#define GET_FUNCTION_FROM_MODULE dlsym
#define CLOSE_MODULE dlclose
typedef void * module_handle_t;
static char *extensions[] = { ".dylib", ".bundle" };
#define N_EXTENSIONS 2
static char *extensions[] = { "", ".dylib", ".bundle" };
#define N_EXTENSIONS 3
#endif

#include "julia.h"
Expand Down

0 comments on commit 1e7611e

Please sign in to comment.