diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-09 14:39:53 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-09 14:39:53 -0800 |
commit | 2c9cb1124e3e99d54f9e7ffeb33710ad0d0a5d89 (patch) | |
tree | 9604545fa9f697a28894a6c5ed8670927aebce10 /Makefile | |
parent | eb92de92248384edb480dbaf277779e56d6c0a35 (diff) |
Better detection of oracle.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ endif CC = gcc CXX = g++ -HAVE_ORACLE=$(shell [ -d /usr/local/instantclient ] && echo true || echo false ]) +HAVE_ORACLE=$(shell [ -d /usr/local/instantclient ] || [ -e /usr/include/oracle/11.1/client/occi.h ] || [ -e /usr/bin/sqlplus ] && echo true || echo false ]) INCLUDES = \ -I../Mesa-7.4.2/include \ |