If you are hoping to compile flac-1.3.3 with libogg-1.3.4, do the following
Step 1: Download latest libogg from Xiph.org

Step 2: Untar and Compile the libogg
% tar -zxvf libogg-1.3.4.tar.gz
% cd libogg-1.3.4
% ./configure --prefix=/usr/local/libogg-1.3.4
% make && make install
Step 3: Download flac-1.3.3 from https://github.com/xiph/flac

Step 4: Untar and Compile flac-1.3.3 with libogg-1.3.4
% git clone https://github.com/xiph/flac.git
% cd flac
% ./autogen.sh
% ./configure --prefix=/usr/local/flac-1.3.3 --with-ogg-libraries=/usr/local/libogg-1.3.4/lib --with-ogg-includes=/usr/local/libogg-1.3.4/include/
-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=-
Configuration summary :
FLAC version : ............................ 1.3.3
Host CPU : ................................ x86_64
Host Vendor : ............................. unknown
Host OS : ................................. linux-gnu
Compiler is GCC : ......................... yes
GCC version : ............................. 4.8.5
Compiler is Clang : ....................... no
SSE optimizations : ....................... yes
Asm optimizations : ....................... yes
Ogg/FLAC support : ........................ yes
Stack protector : ........................ yes
Fuzzing support (Clang only) : ............ no
% make && make install