# HG changeset patch # User bsw # Date 1345323142 -7200 # Node ID 176269e119917801de24afecc601daf6776ef13d # Parent 0f29051a49f62c83647fc383a07290d011d82808 Make no public access the default for getpic.c diff -r 0f29051a49f6 -r 176269e11991 fastpath/Makefile --- a/fastpath/Makefile Sat Aug 18 22:49:18 2012 +0200 +++ b/fastpath/Makefile Sat Aug 18 22:52:22 2012 +0200 @@ -1,5 +1,6 @@ getpic: getpic.c - cc -g -Wall -o getpic getpic.c -I `pg_config --includedir` -L `pg_config --libdir` -lpq -Wl,-rpath,`pg_config --libdir` -D PUBLIC_ACCESS + # add -DPUBLIC_ACCESS for public access to avatar images + cc -g -Wall -o getpic getpic.c -I `pg_config --includedir` -L `pg_config --libdir` -lpq -Wl,-rpath,`pg_config --libdir` clean:: rm -f getpic