Revision: 5890 Author: pebender Date: Tue Dec 1 13:14:22 2009 Log: - Added a work around to a bug in AM_PATH_SDL that causes packages that require SDL to find the wrong sdl-config.
http://code.google.com/p/minimyth/source/detail?r=5890 Modified: /trunk/gar-minimyth/html/minimyth/document-changelog.txt /trunk/gar-minimyth/script/emulators/VisualBoyAdvance/Makefile /trunk/gar-minimyth/script/emulators/fceu/Makefile /trunk/gar-minimyth/script/emulators/mednafen/Makefile /trunk/gar-minimyth/script/lib/SDL_net/Makefile /trunk/gar-minimyth/script/lib/agg/Makefile /trunk/gar-minimyth/script/lib/libtheora/Makefile ======================================= --- /trunk/gar-minimyth/html/minimyth/document-changelog.txt Tue Dec 1 09:45:52 2009 +++ /trunk/gar-minimyth/html/minimyth/document-changelog.txt Tue Dec 1 13:14:22 2009 @@ -71,6 +71,8 @@ - Modified gtk/gtk+ so that it compiles with minimal rather than no debugging as doing so stops (at least some) crashing of MythTV 0.22's MythBrowser when displaying Adobe Flash. + - Added a work around to a bug in AM_PATH_SDL that causes packages that + require SDL to find the wrong sdl-config. Removed packages Removed nvidia/nvidia-173.14.20. ======================================= --- /trunk/gar-minimyth/script/emulators/VisualBoyAdvance/Makefile Thu Sep 17 20:02:23 2009 +++ /trunk/gar-minimyth/script/emulators/VisualBoyAdvance/Makefile Tue Dec 1 13:14:22 2009 @@ -31,6 +31,9 @@ --with-x \ --with-gnu-ld +CONFIGURE_ENV = \ + SDL_CONFIG=$(DESTDIR)$(prefix)/bin-config/sdl-config + include ../../gar.mk pre-configure: ======================================= --- /trunk/gar-minimyth/script/emulators/fceu/Makefile Thu Sep 17 20:02:23 2009 +++ /trunk/gar-minimyth/script/emulators/fceu/Makefile Tue Dec 1 13:14:22 2009 @@ -24,6 +24,9 @@ --without-nativewin32 \ --with-opengl +CONFIGURE_ENV = \ + SDL_CONFIG=$(DESTDIR)$(prefix)/bin-config/sdl-config + include ../../gar.mk pre-configure: ======================================= --- /trunk/gar-minimyth/script/emulators/mednafen/Makefile Thu Sep 17 20:02:23 2009 +++ /trunk/gar-minimyth/script/emulators/mednafen/Makefile Tue Dec 1 13:14:22 2009 @@ -43,6 +43,9 @@ --without-libpth-prefix \ --without-libintl-prefix +CONFIGURE_ENV = \ + SDL_CONFIG=$(DESTDIR)$(prefix)/bin-config/sdl-config + include ../../gar.mk pre-configure: ======================================= --- /trunk/gar-minimyth/script/lib/SDL_net/Makefile Thu Sep 17 20:02:23 2009 +++ /trunk/gar-minimyth/script/lib/SDL_net/Makefile Tue Dec 1 13:14:22 2009 @@ -23,11 +23,15 @@ --disable-gui \ --with-gnu-ld +CONFIGURE_ENV = \ + SDL_CONFIG=$(DESTDIR)$(prefix)/bin-config/sdl-config + include ../../gar.mk pre-configure: @$(call FIX_LIBTOOL,$(WORKSRC)/configure) - @$(MAKECOOKIE) + @echo $(PATH) + @#$(MAKECOOKIE) post-install: @rm -rf $(DESTDIR)$(libdir)/libSDL_net.la ======================================= --- /trunk/gar-minimyth/script/lib/agg/Makefile Sun Mar 29 18:24:55 2009 +++ /trunk/gar-minimyth/script/lib/agg/Makefile Tue Dec 1 13:14:22 2009 @@ -29,8 +29,10 @@ --enable-gpc \ --disable-sdltest \ --with-gnu-ld \ - --with-sdl-prefix="$(DESTDIR)$(prefix)" \ --with-x + +CONFIGURE_ENV = \ + SDL_CONFIG=$(DESTDIR)$(prefix)/bin-config/sdl-config include ../../gar.mk ======================================= --- /trunk/gar-minimyth/script/lib/libtheora/Makefile Thu Oct 1 14:53:21 2009 +++ /trunk/gar-minimyth/script/lib/libtheora/Makefile Tue Dec 1 13:14:22 2009 @@ -31,7 +31,8 @@ --disable-examples \ --with-gnu-ld -Optional Packages: +CONFIGURE_ENV = \ + SDL_CONFIG=$(DESTDIR)$(prefix)/bin-config/sdl-config include ../../gar.mk -- You received this message because you are subscribed to the Google Groups "minimyth-commits" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/minimyth-commits?hl=en.
