From: Markus Koschany Date: Thu, 8 Mar 2018 17:49:24 +0100 Subject: pkg-config Use pkg-config instead of the deprecated freetype-config command. Bug-Debian: https://bugs.debian.org/892338 Forwarded: no --- src/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 3b7d0fe..0f5a5dd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -158,8 +158,8 @@ endif SDL_CFLAGS = `sdl-config --cflags` SDL_LIBS = `sdl-config --libs` -FREETYPE_CFLAGS = `freetype-config --cflags` -FREETYPE_LIBS = `freetype-config --libs` +FREETYPE_CFLAGS = `pkg-config --cflags freetype2` +FREETYPE_LIBS = `pkg-config --libs freetype2` if USE_MATHSINGLE MATH_CFLAGS = -DVMATH_SINGLE_PRECISION @@ -233,4 +233,4 @@ AM_CFLAGS = -Wall ${FREETYPE_CFLAGS} ${SDL_CFLAGS} ${NVIDIA_CFLAGS} ${SOUND_CFLA ${OPTIMIZATION_CFLAGS} ${USESSE_CFLAGS} ${USEWIN_CFLAGS} ${FASTMATH_CFLAGS} ${DEBIAN_CFLAGS} -lm AM_LDFLAGS = ${all_libraries} ${FREETYPE_LIBS} ${SDL_LIBS} -LDADD = ${LDADD_FLAGS} \ No newline at end of file +LDADD = ${LDADD_FLAGS} a15c13385'>refslogtreecommitdiff
path: root/tests/guix-archive.sh
AgeCommit message (Expand)Author
2020-12-15serialization: 'restore-file' sets canonical timestamp and permissions....* guix/serialization.scm (restore-file): Set the permissions and mtime of FILE. * guix/nar.scm (finalize-store-file): Pass #:reset-timestamps? #f to 'register-items'. * tests/nar.scm (rm-rf): Add 'chmod' calls to ensure files are writable. ("write-file + restore-file with symlinks"): Ensure every file in OUTPUT passes 'canonical-file?'. * tests/guix-archive.sh: Run "chmod -R +w" before "rm -rf". Ludovic Courtès
2020-09-28tests: Simplify shell exit status negation;...* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-lint.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh: Use the shell '!' keyword to negate command exit status in place of 'if ...; then false; else true; fi' Eric Bavier