Skip to content

Commit

Permalink
Fix .pgd name for ts build
Browse files Browse the repository at this point in the history
  • Loading branch information
weltling committed Aug 18, 2017
1 parent b28912b commit ba59b6f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion win32/build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,14 @@ sapi\phpdbg\phpdbg_lexer.c: sapi\phpdbg\phpdbg_lexer.l
$(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpdbg_lexer.l
!endif

!if "$(ZTS)" == "1"
PHP7_PGD_SUFFIX=ts
!else
PHP7_PGD_SUFFIX=
!endif

!if $(PGOMGR) != ""
PHP7_PGD_OPTION=/PGD:$(PGOPGD_DIR)\php7.pgd
PHP7_PGD_OPTION=/PGD:$(PGOPGD_DIR)\php7$(PHP7_PGD_SUFFIX).pgd
!else
PHP7_PGD_OPTION=
!endif
Expand Down

0 comments on commit ba59b6f

Please sign in to comment.