~ubuntu-branches/ubuntu/edgy/swig1.3/edgy

« back to all changes in this revision

Viewing changes to Lib/java/javahead.swg

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:16:04 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205011604-ygx904it6413k3go
Tags: 1.3.27-1ubuntu1
Resynchronise with Debian again, for the new subversion packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#endif
31
31
 
32
32
%insert(runtime) %{
33
 
#if defined(__GNUC__)
34
 
    typedef long long __int64; /*For gcc on Windows */
35
 
#endif
 
33
/* Fix for jlong on some versions of gcc on Windows */
 
34
#if defined(__GNUC__) && !defined(__INTELC__)
 
35
  typedef long long __int64;
 
36
#endif
 
37
 
 
38
/* Fix for jlong on 64-bit x86 Solaris */
 
39
#if defined(__x86_64)
 
40
# ifdef _LP64
 
41
#   undef _LP64
 
42
# endif
 
43
#endif
 
44
 
36
45
#include <jni.h>
37
46
#include <stdlib.h>
38
47
#include <string.h>