From f5d91da6bed3743ed544facd898fd17b10df9110 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 8 Sep 2007 14:53:41 +0000 Subject: added custom library path git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@144 90c681e8-e032-0410-971d-27865f9a5e38 --- lib/constants.h | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) (limited to 'lib/constants.h') diff --git a/lib/constants.h b/lib/constants.h index 468dc08c1..ee558f3a9 100644 --- a/lib/constants.h +++ b/lib/constants.h @@ -1,21 +1,14 @@ -// Copyright (c) 2000-2001 Brad Hughes -// -// Use, modification and distribution is allowed without limitation, -// warranty, or liability of any kind. -// +#ifndef CONSTANTS_H +#define CONSTANTS_H -#ifndef __constants_h -#define __constants_h +#ifdef Q_OS_UNIX +#include "config.h" +#endif -#define VERSION "MQ3 Release Fourteen" +#define VERSION "0.2.0" -#if defined(Q_OS_UNIX) -//# include "../config.h" -# ifndef INSTALLDIR -# define INSTALLDIR "/usr/local" -# endif -#elif defined( Q_OS_WIN32 ) -# define INSTALLDIR "c:/depot/mq3/main" +#ifndef LIB_DIR +#define LIB_DIR "/lib" #endif const unsigned int historySize = 100; @@ -23,8 +16,4 @@ const unsigned int globalBlockSize = 2 * 1024; //2*1024 const unsigned int globalBufferSize = globalBlockSize * 32; const unsigned int groupOpenTimeout = 750; -#if defined( Q_OS_WIN32 ) -#define BUFFERBLOCKS 16 -#endif - -#endif // __constants_h +#endif // CONSTANTS_H -- cgit v1.2.3-13-gbd6f