Merge lp:~gaul/percona-data-recovery-tool-for-innodb/disable-pointer-sign-warnings into lp:percona-data-recovery-tool-for-innodb

Proposed by Andrew Gaul
Status: Needs review
Proposed branch: lp:~gaul/percona-data-recovery-tool-for-innodb/disable-pointer-sign-warnings
Merge into: lp:percona-data-recovery-tool-for-innodb
Diff against target: 11 lines (+4/-1)
1 file modified
Makefile (+4/-1)
To merge this branch: bzr merge lp:~gaul/percona-data-recovery-tool-for-innodb/disable-pointer-sign-warnings
Reviewer Review Type Date Requested Status
Percona developers Pending
Review via email: mp+123329@code.launchpad.net
To post a comment you must log in.

Unmerged revisions

74. By Andrew Gaul <email address hidden>

Disable pointer signedness warnings.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Makefile'
2--- Makefile 2012-09-05 10:09:17 +0000
3+++ Makefile 2012-09-07 17:14:31 +0000
4@@ -1,4 +1,7 @@
5-CFLAGS=-DHAVE_OFFSET64_T -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE=1 -D_LARGEFILE_SOURCE=1 -Wall -O3 -g
6+CFLAGS= \
7+ -DHAVE_OFFSET64_T -D_FILE_OFFSET_BITS=64 \
8+ -D_LARGEFILE64_SOURCE=1 -D_LARGEFILE_SOURCE=1 \
9+ -Wall -Wno-pointer-sign -O3 -g
10 # Uncomment to build static binaries
11 #CFLAGS+=-static -lrt
12

Subscribers

People subscribed via source and target branches