Skip to content

Commit

Permalink
compile_msndfile: fix regression on Unix platforms.
Browse files Browse the repository at this point in the history
I obviously am to tired right now.  Recent changes I made broke
compile_msndfile.m on Unix, because HAVE_STDINT_H was not being defined.
  • Loading branch information
marcecj committed Apr 16, 2012
1 parent 3400669 commit 2e4c0f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compile_msndfile.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
if ispc && have_stdint_h
extra_flags = '-DHAVE_STDINT_H';
elseif ~ispc
% needed with GCC >= 4.5, otherwise Matlab crashes
extra_flags = '-fno-reorder-blocks';
% assume stdint.h; needed with GCC >= 4.5, otherwise Matlab crashes
extra_flags = '-DHAVE_STDINT_H -fno-reorder-blocks';
end

src_dir = 'src/+msndfile';
Expand Down

0 comments on commit 2e4c0f3

Please sign in to comment.