aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2009-01-11 20:40:45 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2009-01-11 20:40:45 +0000
commit7bab6ba39006c64d999be6d720a7ec8b25c6c359 (patch)
treecf62a7c9924b497de90039021539df30d9bded02
parent4750304376d4697ac440c54c3ac4646bba715bf0 (diff)
downloaddlfcn-win32-7bab6ba39006c64d999be6d720a7ec8b25c6c359.tar.gz
dlfcn-win32-7bab6ba39006c64d999be6d720a7ec8b25c6c359.tar.bz2
dlfcn-win32-7bab6ba39006c64d999be6d720a7ec8b25c6c359.zip
Fix compiler check.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 7d44f17..d85a9df 100755
--- a/configure
+++ b/configure
@@ -121,7 +121,7 @@ void function(void)
121EOF 121EOF
122$cc -shared -o /tmp/test.dll /tmp/test.c 122$cc -shared -o /tmp/test.dll /tmp/test.c
123 123
124test "$?" = !0 && { 124test "$?" != 0 && {
125 echo "$cc could not create shared file with Windows API functions."; 125 echo "$cc could not create shared file with Windows API functions.";
126 echo "Make sure your MinGW system is working properly."; 126 echo "Make sure your MinGW system is working properly.";
127 exit 1; 127 exit 1;