Do not assume the SDL_image and SLD_mixer libraries are installed at the same prefix reported by sdl-config, but instead get flags from the pkg-config files installed with these libraries. --- a/SConscript 2011-12-24 15:46:47.000000000 -0600 +++ b/SConscript 2014-06-12 21:20:45.702668330 -0500 @@ -199,7 +199,13 @@ self.fatal_error += " * library 'png' not found\n" def configure_sdl(self): - if self.conf.CheckMyProgram('sdl-config'): + if self.conf.CheckMyProgram('pkg-config'): + self.conf.env.ParseConfig("pkg-config --cflags --libs sdl") + for sdllib in ['image', 'mixer']: + self.conf.env.ParseConfig("pkg-config --cflags --libs SDL_%s" % sdllib) + if not self.conf.CheckSDLLib(sdllib): + self.fatal_error += " * SDL library '%s' not found\n" % sdllib + elif self.conf.CheckMyProgram('sdl-config'): self.conf.env.ParseConfig("sdl-config --cflags --libs | sed 's/-I/-isystem/g'") for sdllib in ['image', 'mixer']: if not self.conf.CheckSDLLib(sdllib): ed174a8745c768933d57ccb8'>refslogtreecommitdiff
path: root/gnu/packages/vim.scm
AgeCommit message (Expand)Author
2022-06-01gnu: vim: Update to 8.2.5048....* gnu/packages/vim.scm (vim): Update to 8.2.5048. [arguments]: Patch another instance of '/bin/sh'. Efraim Flashner
2022-05-18gnu: neovim: Use new style....* gnu/packages/vim.scm (neovim): Use new style. [source]: Rewrite using gexps. [arguments]: Rewrite using gexps. [inputs and native-inputs]: Remove input labels. [description]: Run `guix style`. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Luis Henrique Gomes Higino
2022-05-18gnu: neovim: Update to 0.7.0....* gnu/packages/vim.scm (neovim): Update to 0.7.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Luis Henrique Gomes Higino
2022-05-08gnu: vim: Update to 8.2.4912....* gnu/packages/vim.scm (vim): Update to 8.2.4912. [arguments]: Adjust 'patch-absolute-paths phase for changes in code. Adjust 'skip-or-fix-failing-tests phase to allow newly passing test. Efraim Flashner
2022-04-06gnu: vim: Update to 8.2.4701....* gnu/packages/vim.scm (vim): Update to 8.2.4701. [arguments]: Adjust custom 'skip-or-fix-failing-tests phase to skip another test. Efraim Flashner
2022-03-29gnu: neovim: Update to 0.6.1....* gnu/packages/vim.scm (neovim): Update to 0.6.1. Build neovim with LuaJIT in the supported platforms. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Luis Henrique Gomes Higino
2022-03-22gnu: vim-tagbar: Fix typo in phase name....* gnu/packages/vim.scm (vim-tagbar)[arguments]: Fix typo in phase name. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> jgart
2022-03-18gnu: vim: Update to 8.2.4564....* gnu/packages/vim.scm (vim): Update to 8.2.4564. [arguments]: Adjust custom 'patch-absolute-paths phase to upstream changes. Efraim Flashner
2022-02-15gnu: Remove unneeded uses of 'libiconv'....iconv is part of glibc, there is no need to add it as input. * gnu/packages/accessibility.scm (brltty)[inputs]: Remove LIBICONV. * gnu/packages/compression.scm (innoextract)[inputs]: Likewise. * gnu/packages/haskell-apps.scm (darcs)[inputs]: Likewise. * gnu/packages/kde-multimedia.scm (k3b)[inputs]: Likewise. * gnu/packages/linphone.scm (liblinphone)[inputs]: Likewise. * gnu/packages/mail.scm (mailutils)[inputs]: Likewise. * gnu/packages/maths.scm (libqalculate)[inputs]: Likewise. * gnu/packages/pep.scm (pep-engine)[inputs]: Likewise. * gnu/packages/vim.scm (neovim)[inputs]: Likewise. * gnu/packages/wget.scm (wget2)[inputs]: Likewise. * gnu/packages/telegram.scm (telegram-desktop)[inputs]: Likewise. * gnu/packages/video.scm (transcode)[native-inputs]: Likewise. Marius Bakke
2022-02-06gnu: vim: Update to 8.2.4306....* gnu/packages/vim.scm (vim): Update to 8.2.4306. Efraim Flashner