summarylogtreecommitdiffstats
path: root/djgpp-pkgconfig.sh
diff options
context:
space:
mode:
Diffstat (limited to 'djgpp-pkgconfig.sh')
-rw-r--r--djgpp-pkgconfig.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/djgpp-pkgconfig.sh b/djgpp-pkgconfig.sh
new file mode 100644
index 000000000000..e4910f42e690
--- /dev/null
+++ b/djgpp-pkgconfig.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+# Taken from
+# http://www.mega-nerd.com/erikd/Blog/CodeHacking/MinGWCross/pkg-config.html
+# Thanks, Erik
+
+# This file has no copyright assigned and is placed in the Public Domain.
+# No warranty is given.
+
+# When using the mingw32msvc cross compiler tools, the native Linux
+# pkg-config executable works fine as long as the default PKG_CONFIG_LIBDIR
+# is overridden.
+export PKG_CONFIG_LIBDIR=/usr/i686-pc-msdosdjgpp/lib/pkgconfig
+
+# Also want to override the standard user defined PKG_CONFIG_PATH with
+# a mingw32msvc specific one.
+# You can use PKG_CONFIG_PATH_CUSTOM to tweak pkg-config behavior further
+export PKG_CONFIG_PATH=$PKG_CONFIG_LIBDIR:$PKG_CONFIG_PATH_CUSTOM
+
+# Now just execute pkg-config with the given command line args.
+pkg-config $@