mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Build all Flex files standalone
The proposed Meson build system will need a way to ignore certain
generated files in order to coexist with the autoconf build system,
and C files generated by Flex which are #include'd into .y files make
this more difficult. In similar vein to 72b1e3a21
, arrange for all Flex
C files to compile to their own .o targets.
Reviewed by Andres Freund
Discussion: https://www.postgresql.org/message-id/20220810171935.7k5zgnjwqzalzmtm%40awork3.anarazel.de
Discussion: https://www.postgresql.org/message-id/CAFBsxsF8Gc2StS3haXofshHCzqNMRXiSxvQEYGwnFsTmsdwNeg@mail.gmail.com
This commit is contained in:
@ -119,11 +119,11 @@ cube_in(PG_FUNCTION_ARGS)
|
||||
{
|
||||
char *str = PG_GETARG_CSTRING(0);
|
||||
NDBOX *result;
|
||||
Size scanbuflen;
|
||||
|
||||
cube_scanner_init(str);
|
||||
cube_scanner_init(str, &scanbuflen);
|
||||
|
||||
if (cube_yyparse(&result) != 0)
|
||||
cube_yyerror(&result, "cube parser failed");
|
||||
cube_yyparse(&result, scanbuflen);
|
||||
|
||||
cube_scanner_finish();
|
||||
|
||||
|
Reference in New Issue
Block a user