~ubuntu-branches/ubuntu/oneiric/enigmail/oneiric-updates

« back to all changes in this revision

Viewing changes to build/wince/tools/toolspath.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2010-04-10 01:42:24 UTC
  • Revision ID: james.westby@ubuntu.com-20100410014224-fbq9ui5x3b0h2t36
Tags: 2:1.0.1-0ubuntu1
* First releaase of enigmail 1.0.1 for tbird/icedove 3
  (LP: #527138)
* redo packaging from scratch 
  + add debian/make-orig target that uses xulrunner provided
    buildsystem + enigmail tarball to produce a proper orig.tar.gz
  + use debhelper 7 with mozilla-devscripts
  + use debian source format 3.0 (quilt)
  + patch enigmail to use frozen API only
    - add debian/patches/frozen_api.diff
  + patch build system to not link against -lxul - which isnt
    available for sdks produced by all-static apps like tbird
    - add debian/patches/build_system_dont_link_libxul.diff
  + add minimal build-depends to control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef TOOLPATH_H
 
2
#define TOOLPATH_H
 
3
 
 
4
#include <windows.h>
 
5
#include <stdio.h>
 
6
#include <process.h>
 
7
 
 
8
#define OGLES_SDK_INC  OGLES_SDK_PATH "inc"
 
9
#define OGLES_SDK_LIB  OGLES_SDK_PATH "lib\\wince\\nvap\\release"
 
10
#define WCE_BIN    VC_PATH "ce\\bin\\x86_arm\\"
 
11
#define WCE_RC_BIN WIN_SDK_PATH  "bin\\"
 
12
#define WCE_CRT    VC_PATH "ce\\lib\\armv4i"
 
13
#define WM_SDK_INC    WM_SDK_PATH "Include/Armv4i"
 
14
#define WCE_LIB    WM_SDK_PATH "Lib/Armv4i"
 
15
#define WCE_RC_INC  VC_PATH "ce\\atlmfc\\include"
 
16
#define WCE_INC  VC_PATH "ce\\include"
 
17
#define ATL_INC  VC_PATH "ce\\atlmfc\\include"
 
18
#define ATL_LIB  VC_PATH "ce\\atlmfc\\lib\\armv4i"
 
19
 
 
20
#ifndef SHUNT_LIB
 
21
#define SHUNT_LIB ""
 
22
#endif
 
23
 
 
24
#ifndef SHUNT_INC
 
25
#define SHUNT_INC TOPSRCDIR "/build/wince/shunt/include/"
 
26
#endif
 
27
 
 
28
#define ASM_PATH  "\"" WCE_BIN "armasm.exe\""
 
29
#define CL_PATH   "\"" WCE_BIN "cl.exe\""
 
30
#define LIB_PATH  "\"" WCE_BIN "lib.exe\""
 
31
#define LINK_PATH "\"" WCE_BIN "link.exe\""
 
32
#define RC_PATH   "\"" WCE_RC_BIN "rc.exe\""
 
33
 
 
34
#define MAX_NOLEAK_BUFFERS 1000
 
35
char noleak_buffers[MAX_NOLEAK_BUFFERS][1024];
 
36
static int next_buffer = 0;
 
37
int argpath_conv(char **args_in, char **args_out);
 
38
void dumpargs(char** args);
 
39
DWORD run(char** args);
 
40
 
 
41
#endif