Orkie
Super Duper Mega GP Mania
I've been trying to cross compile SDL_gfx for the GP2X, but I want dynamic libraries and for some reason, I only seem to be getting static ones when I compile it. Here is my configure line:
	
	
	
		
Any idea what I'm doing wrong here? I'm just using a generic 2.0.16 tarball for the source.
Thanks
				
			
		Code:
	
		$(TARGET_CONFIGURE_OPTS) \
	CFLAGS="$(TARGET_CFLAGS)" \
	./configure \
		--target=$(GNU_TARGET_NAME) \
		--host=$(GNU_TARGET_NAME) \
		--build=`uname -m` \
		--with-sdl-prefix=$(STAGING_DIR) \
		--with-sdl-exec-prefix=$(STAGING_DIR) \
		--prefix=/usr \
		--exec-prefix=/usr \
		--bindir=/usr/bin \
		--sbindir=/usr/sbin \
		--libexecdir=/usr/lib \
		--sysconfdir=/etc \
		--datadir=/usr/share \
		--localstatedir=/var \
		--includedir=/include \
		--mandir=/usr/man \
		--infodir=/usr/info \
		--enable-shared \
		--enable-static \
		--disable-mmx
	Any idea what I'm doing wrong here? I'm just using a generic 2.0.16 tarball for the source.
Thanks
	