Hey guys,
I'm trying to build 1.2 wallet on Ubuntu 14.04 and running into some compilation errors. 
You might not have miniupnp installed. Try qmake "USE_UPNP=0" tekcoin-qt-linux.pro 
It appears I needed libminiupnpc-dev as well. With this I was able to compile with UPNP support. Thanks so much for your help. 
And for anyone interested, here are the exact steps I took:
Build instructions for Qt4 GUI tekcoin wallet on Ubuntu 14.04 
-------
Ubuntu has an officially maintained personal package archive (PPA) for Bitcoin wallet. Add this repository by entering these following commands in a terminal window: 
   sudo add-apt-repository ppa:bitcoin/bitcoin 
   sudo apt-get update
Install required packages for Qt4 development:
   apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
   libboost-filesystem-dev libboost-program-options1.54-dev libboost-thread-dev \
        libssl-dev libdb4.8++-dev miniupnpc libminiupnpc-dev
Download the source files from presstab's repository and extract them.
Navigate to the source folder and execute the following commands:
   qmake "USE_UPNP=1" tekcoin-qt-linux.pro
       make
An executable file named `tekcoin-qt` will be built.