~ubuntu-branches/ubuntu/utopic/java-gnome/utopic

« back to all changes in this revision

Viewing changes to src/defs/UniqueResponse.defs

  • Committer: Package Import Robot
  • Author(s): Guillaume Mazoyer
  • Date: 2014-05-19 17:39:50 UTC
  • mfrom: (10.2.5 sid)
  • Revision ID: package-import@ubuntu.com-20140519173950-83fho9yg0xqijcfu
Tags: 4.1.3-1
* New upstream release.
* debian/control
  - Remove libunique dependency.
  - Remove DM-Upload-Allowed field.
  - Add dbus-x11 dependency to take doc screenshots.
  - Update Standards-Version to 3.9.4.
* debian/README.Maintainer
  - Add instructions for maintainers.
* debian/libjava-gnome-java.docs
  - Update documentation filenames.
* debian/libjava-gnome-java-doc.install
  - Fix HACKING file installation.
* debian/patches/02_unique_dependency.diff
  - Remove no longer needed patch (fixed upstream).
* debian/patches/02_build_python.diff
  - Add patch to fix build process (python2 env variable not found).
* debian/patches/03_build_doc_snapshots.diff (Closes: #748565)
  - Add patch to fix build process of the documentation (accessibilty bug).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
(define-enum Response
2
 
  (in-module "Unique")
3
 
  (c-name "UniqueResponse")
4
 
  (values
5
 
    '("invalid" "UNIQUE_RESPONSE_INVALID")
6
 
    '("ok" "UNIQUE_RESPONSE_OK")
7
 
    '("cancel" "UNIQUE_RESPONSE_CANCEL")
8
 
    '("fail" "UNIQUE_RESPONSE_FAIL")
9
 
    '("passthrough" "UNIQUE_RESPONSE_PASSTHROUGH")
10
 
  )
11
 
  (import-header "unique/unique.h")
12
 
)
13