~statik/ubuntu/lucid/protobuf/merge-bug502654

« back to all changes in this revision

Viewing changes to gtest/xcode/Config/ReleaseProject.xcconfig

  • Committer: Elliot Murphy
  • Date: 2010-01-18 04:26:47 UTC
  • mfrom: (2.2.2 squeeze)
  • Revision ID: elliot@elliotmurphy.com-20100118042647-c7tsnwbgifl4uso7
* Merge from Debian.
* Remaining Ubuntu changes:
  - Disable the death tests on IA64, now as a quilt patch.
  - Don't hardcode python2.4, also as a quilt patch.
* Non-maintainer upload 
* New upstream release made this evening correction major SONAME
* debian/control: Updated major version to 5            (Closes: #556563)
* debian/rules: Updated two links to use libproto*5 
* debian/libprotobuf5.shlibs: Added
* debian/libprotoc5.shlibs: Added

* Non-maintainer upload coordinated with maintainer
* New upstream release                          (Closes: #551931)
* debian/libprotobuf-install: Added 'usr/lib/pkgconfig/*' to have 
  pkg-config support files installed 
* debian/control: Added (= ${binary:Version}) to Depends for -dev 
  packages for tighter link to underlying libraries [lintian warning]
* debian/control: Updated StandardVersion: to 3.8.3

* debian/control: Major version not incremented as upstream kept it at 4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
//  ReleaseProject.xcconfig
3
 
//
4
 
//  These are Release Configuration project settings for the gtest framework
5
 
//  and examples. It is set in the "Based On:" dropdown in the "Project" info
6
 
//  dialog.
7
 
//  This file is based on the Xcode Configuration files in:
8
 
//  http://code.google.com/p/google-toolbox-for-mac/
9
 
// 
10
 
 
11
 
#include "General.xcconfig"
12
 
 
13
 
// subconfig/Release.xcconfig
14
 
 
15
 
// Optimize for space and size (Apple recommendation)
16
 
GCC_OPTIMIZATION_LEVEL = s
17
 
 
18
 
// Deploment postprocessing is what triggers Xcode to strip
19
 
DEPLOYMENT_POSTPROCESSING = YES
20
 
 
21
 
// No symbols
22
 
GCC_GENERATE_DEBUGGING_SYMBOLS = NO
23
 
 
24
 
// Dead code strip does not affect ObjC code but can help for C
25
 
DEAD_CODE_STRIPPING = YES
26
 
 
27
 
// NDEBUG is used by things like assert.h, so define it for general compat.
28
 
// ASSERT going away in release tends to create unused vars.
29
 
OTHER_CFLAGS = $(OTHER_CFLAGS) -DNDEBUG=1 -Wno-unused-variable
30
 
 
31
 
// When we strip we want to strip all symbols in release, but save externals.
32
 
STRIP_STYLE = all