Skip to content

Commit

Permalink
Fixing aes.c build on old compilers (4.9 and previous?)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgfnet committed Jan 21, 2016
1 parent 10a166c commit 96e44c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ AxolotlMessages.pb.cc: AxolotlMessages.pb.h
# Do nothing

%.o: %.c libaxolotl-cpp/libaxolotl.a
$(CC) -c $(CFLAGS) -o $@ $<
$(CC) -c $(CFLAGS) -std=c99 -o $@ $<
%.o: %.cc AxolotlMessages.pb.h libaxolotl-cpp/libaxolotl.a
$(CXX) -c $(CFLAGS) $(CXXFLAGS) -o $@ $<

Expand Down

0 comments on commit 96e44c7

Please sign in to comment.