diff options
author | Wayne Davison <wayned@samba.org> | 2008-03-14 22:55:59 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2008-03-14 22:55:59 -0700 |
commit | 8afaef4219ba4024d55721d786ed8a18dfa5d6ab (patch) | |
tree | 68c2094b19638a62fa08a23172c34d9bb303b695 /tls.c | |
parent | 11faa893cad97927522dd94d5055a20f09acad1b (diff) | |
download | rsync-8afaef4219ba4024d55721d786ed8a18dfa5d6ab.tar.gz rsync-8afaef4219ba4024d55721d786ed8a18dfa5d6ab.tar.bz2 rsync-8afaef4219ba4024d55721d786ed8a18dfa5d6ab.zip |
Have configure check to see if /usr/include/popt/popt.h is around
(rather than /usr/include/popt.h), and use the included popt lib
if it is (to avoid a potential conflict due to our use of -I.).
Diffstat (limited to 'tls.c')
-rw-r--r-- | tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ * change. */ #include "rsync.h" -#include "popt.h" +#include <popt.h> #include "lib/sysxattrs.h" #define PROGRAM "tls" |