Hello ! I've been trying to find a way to fix this issue as well for a few days now.
I managed to get it to work with this following changes (see attached file) The rename of usr/bin/zsnesd => usr/bin/zsnes could probably be handled better (maybe with dh_links ?), for now as long as I can load my game states I'm happy :) Thoughts on this patch? I'm not sure how adding --enable-debug fixes this, so it could very well lead to other issues. Cheers -- Jason Pleau
diff --git a/debian/rules b/debian/rules index 26facf7..9fd3573 100755 --- a/debian/rules +++ b/debian/rules @@ -21,7 +21,7 @@ override_dh_auto_configure: dh_auto_configure --sourcedirectory=src -- \ --enable-opengl \ --disable-cpucheck --enable-release \ - force_arch=i486 + force_arch=i486 --enable-debug override_dh_clean: rm -f src/Makefile src/cfg.h src/config.h src/config.log src/config.status src/input.h src/makefile.dep src/md.h src/parsegen src/tools/depbuild src/zsnes @@ -29,6 +29,7 @@ override_dh_clean: dh_clean override_dh_install: + mv debian/tmp/usr/bin/zsnesd debian/tmp/usr/bin/zsnes dh_install for res in 16 32 48 64; do \ mkdir -p debian/zsnes/usr/share/icons/hicolor/$${res}x$${res}/apps; \