summaryrefslogtreecommitdiff
path: root/buildtools/compare_config_h3.sh
blob: 00f84c1540c25835be349a17455a50fb294eea61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# compare the generated config.h from a waf build with existing samba
# build

OLD_CONFIG=$HOME/samba_old/source3/include/config.h
if test "x$1" != "x" ; then
	OLD_CONFIG=$1
fi

grep "^.define" bin/default/source3/include/config.h | sort > waf-config.h
grep "^.define" $OLD_CONFIG | sort > old-config.h

comm -23 old-config.h waf-config.h

#echo
#diff -u old-config.h waf-config.h