The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / postgresql / pg_config
diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/package/postgresql/pg_config b/cirros-testvm/src-cirros/buildroot-2015.05/package/postgresql/pg_config
new file mode 100644 (file)
index 0000000..85c0e63
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+#
+# Minimal pg_config implementation as replacement for the native pg_config application
+# Only implements --includedir and --libdir
+#
+
+prefix=/usr
+
+case "$1" in
+  --includedir)
+       echo "$prefix/include"
+       ;;
+  --libdir)
+       echo "$prefix/lib"
+       ;;
+  *)
+       echo "Usage: $0 {--includedir|--libdir}"
+esac