/usr/include/d/gtkd-3/gtkd/paths.d is in libgtkd-3-dev 3.7.5-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | /*
* gtkD is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*
* paths.d -- list of libraries that will be dynamically linked with gtkD
*
* Added: John Reimer -- 2004-12-20
* Updated: 2005-02-21 changed names; added version(linux)
* Updated: 2005-05-05 updated Linux support
* Updated: 2008-02-16 Tango support
*/
module gtkd.paths;
/*
* Define the Libraries that gtkD will be using.
* This is a growable list, as long as the programmer
* also adds to the importLibs list.
*/
enum LIBRARY
{
ATK,
CAIRO,
GDK,
GDKPIXBUF,
GLIB,
GMODULE,
GOBJECT,
GIO,
GTHREAD,
GTK,
PANGO,
PANGOCAIRO,
GLGDK,
GLGTK,
GDA,
GSV,
GSV1,
GSTREAMER,
GSTINTERFACES,
VTE,
PEAS,
RSVG,
}
version (Windows)
{
const string[LIBRARY.max+1] importLibs =
[
LIBRARY.ATK: "libatk-1.0-0.dll",
LIBRARY.CAIRO: "libcairo-2.dll",
LIBRARY.GDK: "libgdk-3-0.dll",
LIBRARY.GDKPIXBUF: "libgdk_pixbuf-2.0-0.dll",
LIBRARY.GLIB: "libglib-2.0-0.dll",
LIBRARY.GMODULE: "libgmodule-2.0-0.dll",
LIBRARY.GOBJECT: "libgobject-2.0-0.dll",
LIBRARY.GIO: "libgio-2.0-0.dll",
LIBRARY.GTHREAD: "libgthread-2.0-0.dll",
LIBRARY.GTK: "libgtk-3-0.dll",
LIBRARY.PANGO: "libpango-1.0-0.dll",
LIBRARY.PANGOCAIRO: "libpangocairo-1.0-0.dll",
LIBRARY.GLGDK: "libgdkglext-3.0-0.dll",
LIBRARY.GLGTK: "libgtkglext-3.0-0.dll",
LIBRARY.GDA: "libgda-4.0-4.dll",
LIBRARY.GSV: "libgtksourceview-3.0-0.dll",
LIBRARY.GSV1: "libgtksourceview-3.0-1.dll",
LIBRARY.GSTREAMER: "libgstreamer-1.0.dll",
LIBRARY.GSTINTERFACES: "libgstvideo-1.0.dll",
LIBRARY.VTE: "libvte-2.91.dll",
LIBRARY.PEAS: "libpeas-1.0.dll",
LIBRARY.RSVG: "librsvg-2-2.dll",
];
}
else version(darwin)
{
const string[LIBRARY.max+1] importLibs =
[
LIBRARY.ATK: "libatk-1.0.dylib",
LIBRARY.CAIRO: "libcairo.dylib",
LIBRARY.GDK: "libgdk-3.0.dylib",
LIBRARY.GDKPIXBUF: "libgdk_pixbuf-2.0.dylib",
LIBRARY.GLIB: "libglib-2.0.dylib",
LIBRARY.GMODULE: "libgmodule-2.0.dylib",
LIBRARY.GOBJECT: "libgobject-2.0.dylib",
LIBRARY.GIO: "libgio-2.0.dylib",
LIBRARY.GTHREAD: "libgthread-2.0.dylib",
LIBRARY.GTK: "libgtk-3.0.dylib",
LIBRARY.PANGO: "libpango-1.0.dylib",
LIBRARY.PANGOCAIRO: "libpangocairo-1.0.dylib",
LIBRARY.GLGDK: "libgdkglext-3.0.dylib",
LIBRARY.GLGTK: "libgtkglext-3.0.dylib",
LIBRARY.GDA: "libgda-2.dylib",
LIBRARY.GSV: "libgtksourceview-3.0.dylib",
LIBRARY.GSV1: "libgtksourceview-3.0.dylib",
LIBRARY.GSTREAMER: "libgstreamer-1.0.dylib",
LIBRARY.GSTINTERFACES: "libgstvideo-1.0.dylib",
LIBRARY.VTE: "libvte-2.91.dylib",
LIBRARY.PEAS: "libpeas-1.0.dylib",
LIBRARY.RSVG: "librsvg-2.dylib",
];
}
else
{
const string[LIBRARY.max+1] importLibs =
[
LIBRARY.ATK: "libatk-1.0.so.0",
LIBRARY.CAIRO: "libcairo.so.2",
LIBRARY.GDK: "libgdk-3.so.0",
LIBRARY.GDKPIXBUF: "libgdk_pixbuf-2.0.so.0",
LIBRARY.GLIB: "libglib-2.0.so.0",
LIBRARY.GMODULE: "libgmodule-2.0.so.0",
LIBRARY.GOBJECT: "libgobject-2.0.so.0",
LIBRARY.GIO: "libgio-2.0.so.0",
LIBRARY.GTHREAD: "libgthread-2.0.so.0",
LIBRARY.GTK: "libgtk-3.so.0",
LIBRARY.PANGO: "libpango-1.0.so.0",
LIBRARY.PANGOCAIRO: "libpangocairo-1.0.so.0",
LIBRARY.GLGDK: "libgdkglext-3.0.so.0",
LIBRARY.GLGTK: "libgtkglext-3.0.so.0",
LIBRARY.GDA: "libgda-4.0.so.4",
LIBRARY.GSV: "libgtksourceview-3.0.so.0",
LIBRARY.GSV1: "libgtksourceview-3.0.so.1",
LIBRARY.GSTREAMER: "libgstreamer-1.0.so.0",
LIBRARY.GSTINTERFACES: "libgstvideo-1.0.so.0",
LIBRARY.VTE: "libvte-2.91.so.0",
LIBRARY.PEAS: "libpeas-1.0.so.0",
LIBRARY.RSVG: "librsvg-2.so.2",
];
}
|