Skip to content

Commit

Permalink
fixing initial fatclient errors trying to get help::help working thro…
Browse files Browse the repository at this point in the history
…ugh pyuda
  • Loading branch information
stephen-dixon committed Oct 30, 2024
1 parent cb503c0 commit f5b818b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions source/client/udaClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1042,6 +1042,8 @@ int idamClient(REQUEST_BLOCK* request_block, int* indices)
}

printDataBlock(*data_block);
data_received = true;
data_block_indices[i] = data_block_idx;
}

#endif // <========================== End of FatClient Code Only
Expand Down
3 changes: 2 additions & 1 deletion source/wrappers/python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ if build_fat:
'libfat@PROJECT_NAME@_client.' + stalib_ext,
'lib@PROJECT_NAME@_plugins.' + stalib_ext,
] + ['lib@PROJECT_NAME@_' + name + '.' + stalib_ext for name in uda_lib_names]
extra_libs = ['xml2', 'pq']
extra_libs = ['xml2']
extra_libs.extend('@EXTRA_LIBS@'.split(';') if '@EXTRA_LIBS@' else [])
extra_macros = [('FATCLIENT', None)]
else:
uda_libs = [
Expand Down

0 comments on commit f5b818b

Please sign in to comment.