diff options
author | Hardeep Sidhu <dyp@pobox.com> | 2003-07-03 03:52:11 +0000 |
---|---|---|
committer | Hardeep Sidhu <dyp@pobox.com> | 2003-07-03 03:52:11 +0000 |
commit | 6cb7b15be86ce29ba510ac662acb1a3cb03a7549 (patch) | |
tree | 26e85b0b9ff9808f776004966540e7c24452e5ce /uisimulator | |
parent | d1a3a3e148cf54569fbf0df4dca5a8db6e0e4793 (diff) |
Plugins should not require cygwin to run.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3804 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/win32/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index 42388b743d..8270ceed4d 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -67,7 +67,8 @@ DEFINES += -DWIN32 CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mno-cygwin APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mno-cygwin -DLLFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 --def plugin.def +DLLFLAGS = -s --entry _DllMain@12 --target=i386-mingw32 -mno-cygwin \ + --def plugin.def UNAME := $(shell uname|sed -e "s/CYGWIN.*/CYGWIN/") ifeq ($(UNAME),CYGWIN) |