Skip to content

Commit

Permalink
Merge pull request #863 from jingjingxyk/experiment_v4.8.x
Browse files Browse the repository at this point in the history
fix gd extension merge code bug
  • Loading branch information
jingjingxyk authored Dec 10, 2024
2 parents ce789e7 + 3ce8ce5 commit 1e15856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sapi/src/builder/extension/gd.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
} else {
$libcpp = '-lstdc++';
}
$p->withExportVariable('AVIF_CFLAGS', '$(pkg-config --cflags --static libavif libbrotlicommon libbrotlidec libbrotlienc SvtAv1Enc SvtAv1Dec aom dav1d libgav1)');
$p->withExportVariable('AVIF_LIBS', '$(pkg-config --libs --static libavif libbrotlicommon libbrotlidec libbrotlienc SvtAv1Enc SvtAv1Dec aom dav1d libgav1) ' . $libcpp);
$p->withExportVariable('AVIF_CFLAGS', '$(pkg-config --cflags --static libavif libbrotlicommon libbrotlidec libbrotlienc SvtAv1Enc aom dav1d libgav1)');
$p->withExportVariable('AVIF_LIBS', '$(pkg-config --libs --static libavif libbrotlicommon libbrotlidec libbrotlienc SvtAv1Enc aom dav1d libgav1) ' . $libcpp);
};

0 comments on commit 1e15856

Please sign in to comment.