Skip to content

Commit

Permalink
Fix previous, the macros are expected to be numbers.
Browse files Browse the repository at this point in the history
From Remi Collet.
  • Loading branch information
0-wiz-0 committed Jun 5, 2020
1 parent 79eac02 commit ac7fb1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake-zipconf.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
*/

#define LIBZIP_VERSION "${libzip_VERSION}"
#define LIBZIP_VERSION_MAJOR "${libzip_VERSION_MAJOR}"
#define LIBZIP_VERSION_MINOR "${libzip_VERSION_MINOR}"
#define LIBZIP_VERSION_MICRO "${libzip_VERSION_PATCH}"
#define LIBZIP_VERSION_MAJOR ${libzip_VERSION_MAJOR}
#define LIBZIP_VERSION_MINOR ${libzip_VERSION_MINOR}
#define LIBZIP_VERSION_MICRO ${libzip_VERSION_PATCH}

#cmakedefine ZIP_STATIC

Expand Down

0 comments on commit ac7fb1e

Please sign in to comment.