Changeset 42713 for branches/eam_branches/ipp-20230313/psLib
- Timestamp:
- Aug 3, 2024, 1:01:10 PM (2 years ago)
- Location:
- branches/eam_branches/ipp-20230313/psLib
- Files:
-
- 2 edited
-
src/db/psDB.c (modified) (2 diffs)
-
test/imageops/convolutionBench.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20230313/psLib/src/db/psDB.c
r42637 r42713 44 44 #include <regex.h> 45 45 #include <mysql.h> 46 #include <mysql_com.h> // enum_field_types 47 46 // #include <mysql_com.h> // enum_field_types 48 47 #include "psDB.h" 49 48 #include "psMemory.h" … … 55 54 #include "psMetadataConfig.h" 56 55 57 58 # if (MYSQL_VERSION_ID >= 80 000)59 # define MYSQL_BOOL bool56 /* my_bool was removed from mysql at version 8.0.1, but not from mariadb */ 57 # if (MYSQL_VERSION_ID >= 80100) && !defined MARIADB_VERSION_ID 58 # define MYSQL_BOOL bool 60 59 # else 61 # define MYSQL_BOOL my_bool60 # define MYSQL_BOOL my_bool 62 61 # endif 63 62 -
branches/eam_branches/ipp-20230313/psLib/test/imageops/convolutionBench.c
r23259 r42713 56 56 } 57 57 58 char size[ 16];58 char size[32]; 59 59 sprintf(size, "%dx%d", imageCols, imageRows); 60 60 printf("%15s", size);
Note:
See TracChangeset
for help on using the changeset viewer.
