s4/heimdal_build: use GetTimeOfDay macro instead of gettimeofday
[Samba/ita.git] / buildtools / compare_config_h3.sh
blob742aa1b5b8933003d6f72314961854f94927ab09
1 #!/bin/bash
3 # compare the generated config.h from a waf build with existing samba
4 # build
6 grep ^.define bin/default/source3/include/config.h | sort > waf-config.h
7 grep ^.define $HOME/samba_old/source3/include/config.h | sort > old-config.h
9 comm -23 old-config.h waf-config.h
11 #echo
12 #diff -u old-config.h waf-config.h