Skip to content

Commit

Permalink
Fix CFLAGS in makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Mar 21, 2024
1 parent be92896 commit 1b59c3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changes in Mini-XML 4.0.1

- Fixed missing "docdir" definition in makefile.
- Fixed missing CPPFLAGS, OPTIM, and WARNINGS in CFLAGS in makefile.
- Fixed configure script issues.


# Changes in Mini-XML 4.0.0
Expand Down
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ ARFLAGS = @ARFLAGS@
# C compiler and preprocessor...
#

CFLAGS = @CFLAGS@
CFLAGS = @CFLAGS@ $(CPPFLAGS) $(OPTIM) $(WARNINGS)
CPPFLAGS = @CPPFLAGS@
WARNINGS = @WARNINGS@

Expand Down

0 comments on commit 1b59c3a

Please sign in to comment.