diff Makefile.PL.orig Makefile.PL
164,165c164,165
< my $INC_magick = '-I/usr/local/include/ImageMagick-7 -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/libxml2 -I"' . $Config{'usrinc'} . '/ImageMagick-7"';
< my $LIBS_magick = '-L/usr/local/lib -lMagickCore-7.Q16HDRI -lm -L' . $Config{'archlib'} . '/CORE';
---
> my $INC_magick = '-I/opt/homebrew/Cellar/imagemagick/7.1.1-47 -I/opt/homebrew/Cellar/imagemagick/7.1.1-47/include/ImageMagick-7 -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/libxml2 -I"' . $Config{'usrinc'} . '/ImageMagick-7"';
> my $LIBS_magick = '-L/opt/homebrew/Cellar/imagemagick/7.1.1-47/lib -lMagickCore-7.Q16HDRI -lm -L' . $Config{'archlib'} . '/CORE';
Last active
June 26, 2025 14:39
-
-
Save jhannah/37c8c6218d43e6a39f42e1f2fbc02a32 to your computer and use it in GitHub Desktop.
word highlighting in diff markdown blocks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# defaults for LIBS & INC & CCFLAGS params that we later pass to Writemakefile | |
my $INC_magick = '-I/opt/homebrew/Cellar/imagemagick/7.1.1-47 -I/opt/homebrew/Cellar/imagemagick/7.1.1-47/include/ImageMagick-7 -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16 -I/usr/include/libxml2 -I"' . $Config{'usrinc'} . '/ImageMagick-7"'; | |
my $LIBS_magick = '-L/opt/homebrew/Cellar/imagemagick/7.1.1-47/lib -lMagickCore-7.Q16HDRI -lm -L' . $Config{'archlib'} . '/CORE'; | |
my $CCFLAGS_magick = "$Config{'ccflags'} -I/usr/include/freetype2 -g -O2 -Wall -pthread -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16"; | |
my $LDFLAGS_magick = "-L/usr/local/lib -lMagickCore-7.Q16HDRI $Config{'ldflags'} "; | |
my $LDDLFLAGS_magick = "-L/usr/local/lib -lMagickCore-7.Q16HDRI $Config{'lddlflags'} "; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment