Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 48 and Version 49 of DebianPackages

Show
Ignore:
Author:
Jordi Sayol (IP: 188.119.210.222)
Timestamp:
01/06/13 19:16:49 (11 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DebianPackages

    v48 v49  
    99$ sudo apt-get update && sudo apt-get --yes --allow-unauthenticated install d-apt-keyring && sudo apt-get update 
    1010}}} 
    11 Now you can install "GtkD": 
     11Now you can install "GtkD for GTK+2": 
    1212{{{ 
    13 $ sudo apt-get install libgtkd-dev libgtkd-doc 
     13$ sudo apt-get install libgtkd-1-dev libgtkd-1-doc 
     14}}} 
     15and "GtkD for GTK+3": 
     16{{{ 
     17$ sudo apt-get install libgtkd-2-dev libgtkd-2-doc 
    1418}}} 
    1519[[br]] 
    1923== Compiling GtkD Applications == 
    2024 
    21 To compile gtkd applications
     25To compile GtkD applications for GTK+3
    2226{{{ 
    23 $ dmd $(pkg-config --cflags --libs gtkd) my_gtkd_app.d 
     27$ dmd $(pkg-config --cflags --libs gtkd-2) my_gtkd_app.d 
    2428}}}