Fix version getting out of sync #175

This commit is contained in:
Konstantinos Margaritis 2023-10-03 09:57:10 +03:00
parent 4918f81ea3
commit 16604f9539
2 changed files with 5 additions and 6 deletions

View File

@ -39,12 +39,7 @@
* the individual component headers for documentation. * the individual component headers for documentation.
*/ */
/* The current Hyperscan version information. */ #include "hs_version.h"
#define HS_MAJOR 5
#define HS_MINOR 4
#define HS_PATCH 9
#include "hs_compile.h" #include "hs_compile.h"
#include "hs_runtime.h" #include "hs_runtime.h"

View File

@ -36,5 +36,9 @@
#define HS_VERSION_32BIT ((@HS_MAJOR_VERSION@ << 24) | (@HS_MINOR_VERSION@ << 16) | (@HS_PATCH_VERSION@ << 8) | 0) #define HS_VERSION_32BIT ((@HS_MAJOR_VERSION@ << 24) | (@HS_MINOR_VERSION@ << 16) | (@HS_PATCH_VERSION@ << 8) | 0)
#define HS_MAJOR @HS_MAJOR_VERSION@
#define HS_MINOR @HS_MINOR_VERSION@
#define HS_PATCH @HS_PATCH_VERSION@
#endif /* HS_VERSION_H_C6428FAF8E3713 */ #endif /* HS_VERSION_H_C6428FAF8E3713 */