commit
a5e99e09bd
@ -676,7 +676,7 @@ YAPPrologPredicate::YAPPrologPredicate(YAPAtom name,
|
||||
YAPModule mod,
|
||||
bool tabled,
|
||||
bool logical_updates,
|
||||
bool thread_local,
|
||||
bool is_thread_local,
|
||||
bool sourced,
|
||||
bool discontiguous,
|
||||
bool multiFile,
|
||||
@ -689,7 +689,7 @@ YAPPrologPredicate::YAPPrologPredicate(YAPAtom name,
|
||||
size_t mega_clause
|
||||
) : YAPPredicate(name, arity, mod) {
|
||||
if (!ap) return;
|
||||
if (thread_local) {
|
||||
if (is_thread_local) {
|
||||
if (ap->cs.p_code.NOfClauses || tabled)
|
||||
return;
|
||||
ap->PredFlags |= (ThreadLocalPredFlag|LogUpdatePredFlag);
|
||||
|
@ -21,9 +21,6 @@ add_definitions (-DMYDDAS_ODBC=1)
|
||||
add_library (Yapodbc SHARED ${YAPODBC_SOURCES})
|
||||
target_link_libraries(Yapodbc libYap ${ODBC_LIBRARIES})
|
||||
include_directories (${ODBC_INCLUDE_DIRECTORIES} ..)
|
||||
else()
|
||||
add_definitions (-DMYDDAS_ODBC=0)
|
||||
endif (ODBC_FOUND)
|
||||
|
||||
set_target_properties (Yapodbc PROPERTIES
|
||||
POSITION_INDEPENDENT_CODE ON
|
||||
@ -31,9 +28,11 @@ set_target_properties (Yapodbc PROPERTIES
|
||||
SOVERSION ${SO_MAJOR}
|
||||
)
|
||||
|
||||
|
||||
install(TARGETS Yapodbc
|
||||
LIBRARY DESTINATION ${libdir}
|
||||
ARCHIVE DESTINATION ${libdir}
|
||||
)
|
||||
|
||||
else()
|
||||
add_definitions (-DMYDDAS_ODBC=0)
|
||||
endif (ODBC_FOUND)
|
||||
|
Reference in New Issue
Block a user