Skip to content

Commit 58f5d67

Browse files
committed
Sync remaining extension target names
1 parent 7b9da3d commit 58f5d67

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmake/ext/dba/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ if(EXT_DBA_DBM)
431431
PURPOSE "Necessary to enable the DBM handler in the dba extension."
432432
)
433433

434-
target_link_libraries(php_dba PRIVATE Dbm::Dbm)
434+
target_link_libraries(php_ext_dba PRIVATE Dbm::Dbm)
435435

436436
target_sources(php_ext_dba PRIVATE dba_dbm.c)
437437

@@ -500,7 +500,7 @@ if(EXT_DBA_NDBM)
500500
PURPOSE "Necessary to enable the ndbm handler in the dba extension."
501501
)
502502

503-
target_link_libraries(php_dba PRIVATE Ndbm::Ndbm)
503+
target_link_libraries(php_ext_dba PRIVATE Ndbm::Ndbm)
504504

505505
target_sources(php_ext_dba PRIVATE dba_ndbm.c)
506506

cmake/ext/dom/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ target_sources(
278278
xpath_callbacks.h
279279
)
280280

281-
target_include_directories(php_dom PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/lexbor)
281+
target_include_directories(php_ext_dom PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/lexbor)
282282

283283
target_compile_definitions(
284284
php_ext_dom

cmake/ext/pcntl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ cmake_push_check_state(RESET)
196196
endif()
197197

198198
if(HAVE_SCHED_GETCPU AND library)
199-
target_link_libraries(php_pcntl PRIVATE ${library})
199+
target_link_libraries(php_ext_pcntl PRIVATE ${library})
200200
endif()
201201
endblock()
202202
cmake_pop_check_state()

0 commit comments

Comments
 (0)