Re: [Tuxpaint-devel] SDL2 for the next release for windows?
An award-winning drawing program for children of all ages
Brought to you by:
wkendrick
From: Shin-ichi T. <dol...@wm...> - 2022-05-19 12:52:18
|
On Thu, 19 May 2022 01:59:17 -0700, Bill Kendrick wrote: >One problem for me is that I can't get SDL2_Pango working. <snip> >And when I try to compile the source .tar.gz, I also run >into trouble: > > kendrick@gambit:~/tuxpaint/SDL2_Pango-0.1.2$ ./configure > checking whether to enable maintainer-specific portions of Makefiles... no > checking build system type... x86_64-unknown-linux-gnu > checking host system type... x86_64-unknown-linux-gnu > checking target system type... x86_64-unknown-linux-gnu > checking for a BSD-compatible install... /usr/bin/install -c > [...] > checking that generated files are newer than configure... done > configure: creating ./config.status > config.status: error: cannot find input file: `Makefile.in' > >It's been a LONG time since I installed anything with autoconf, >so I'm stumped. (Googling lands all sorts of different answers,a >and often project-specific. Ugh.) I confirmed my SDL2_Pango.spec which I used to create rpm package for SDL_Pango. I think it was tweaked based on the spec file for SDL_Pango. Seeing the spec file, I could build SDL2_Pango on my ubuntu on VMware as follows. $ tar zxvf SDL2_Pango-0.1.2.tar.gz $ cd SDL2_Pango-0.1.2/ $ autoreconf -i $ libtoolize --copy --force $ automake --add-missing $ ./configure --disable-static $ make good luck!! |