summaryrefslogtreecommitdiffstats
path: root/src/freeimage-1-no-shared.patch
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2010-02-16 11:22:34 (GMT)
committerMark Brand <mabrand@mabrand.nl>2010-02-16 11:22:34 (GMT)
commit456d5a9d685e5d82c814ad76ebe6064fae75cd83 (patch)
tree96ad2d4875ecbea35365a2b4e3dda8d9fb531788 /src/freeimage-1-no-shared.patch
parent6129e491434a66463d084f3f4ec47b66e53b4b70 (diff)
downloadmxe-456d5a9d685e5d82c814ad76ebe6064fae75cd83.zip
mxe-456d5a9d685e5d82c814ad76ebe6064fae75cd83.tar.gz
mxe-456d5a9d685e5d82c814ad76ebe6064fae75cd83.tar.bz2
new package: freeimage
Diffstat (limited to 'src/freeimage-1-no-shared.patch')
-rw-r--r--src/freeimage-1-no-shared.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/freeimage-1-no-shared.patch b/src/freeimage-1-no-shared.patch
new file mode 100644
index 0000000..851cbc6
--- /dev/null
+++ b/src/freeimage-1-no-shared.patch
@@ -0,0 +1,42 @@
+This file is part of mingw-cross-env.
+See doc/index.html for further information.
+
+diff -urN a/Makefile.gnu b/Makefile.gnu
+--- a/Makefile.gnu 2009-07-28 06:35:26.000000000 +0200
++++ b/Makefile.gnu 2010-02-16 11:50:50.509897756 +0100
+@@ -9,7 +9,7 @@
+ INSTALLDIR ?= $(DESTDIR)/usr/lib
+
+ # Converts cr/lf to just lf
+-DOS2UNIX = dos2unix
++DOS2UNIX = echo 'dos2unix not needed '
+
+ LIBRARIES = -lstdc++
+
+@@ -40,13 +40,12 @@
+
+ dist: FreeImage
+ cp *.a Dist
+- cp *.so Dist
+ cp Source/FreeImage.h Dist
+
+ dos2unix:
+ @$(DOS2UNIX) $(SRCS) $(INCLS)
+
+-FreeImage: $(STATICLIB) $(SHAREDLIB)
++FreeImage: $(STATICLIB)
+
+ .c.o:
+ $(CC) $(CFLAGS) -c $< -o $@
+@@ -62,9 +61,8 @@
+
+ install:
+ install -d $(INCDIR) $(INSTALLDIR)
+- install -m 644 -o root -g root $(HEADER) $(INCDIR)
+- install -m 644 -o root -g root $(STATICLIB) $(INSTALLDIR)
+- install -m 755 -o root -g root $(SHAREDLIB) $(INSTALLDIR)
++ install -m 644 $(HEADER) $(INCDIR)
++ install -m 644 $(STATICLIB) $(INSTALLDIR)
+
+ clean:
+ rm -f core Dist/*.* u2dtmp* $(MODULES) $(STATICLIB) $(SHAREDLIB) $(LIBNAME)