[wpdev-commits] wolfpack configure,1.3,1.4 globals.h,1.79,1.80 platform.h,1.12,1.13
Brought to you by:
rip,
thiagocorrea
|
From: <thi...@us...> - 2004-01-11 05:03:23
|
Update of /cvsroot/wpdev/wolfpack In directory sc8-pr-cvs1:/tmp/cvs-serv32004 Modified Files: configure globals.h platform.h Log Message: Few Linux clean-ups Index: configure =================================================================== RCS file: /cvsroot/wpdev/wolfpack/configure,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configure 3 Nov 2003 01:17:09 -0000 1.3 --- configure 11 Jan 2004 05:03:16 -0000 1.4 *************** *** 18,21 **** --- 18,24 ---- echo -en "\e[A\rPlease enter the correct include directory: "; read SUPPLIED_PATH; + if [ "$SUPPLIED_PATH" = "" ]; then + break; + fi done; } *************** *** 30,33 **** --- 33,39 ---- ask_path; MYSQLINC="$SUPPLIED_PATH"; + if ! [ "$MYSQLINC" ]; then + echo "MySQL support disabled "; + fi else echo "$MYSQLINC"; Index: globals.h =================================================================== RCS file: /cvsroot/wpdev/wolfpack/globals.h,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -d -r1.79 -r1.80 *** globals.h 7 Jan 2004 03:09:09 -0000 1.79 --- globals.h 11 Jan 2004 05:03:16 -0000 1.80 *************** *** 43,50 **** #include <list> - #if defined(__unix__) - #include <termios.h> - #endif - // Forward Class Declaration class QDateTime; --- 43,46 ---- Index: platform.h =================================================================== RCS file: /cvsroot/wpdev/wolfpack/platform.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** platform.h 6 Jan 2004 22:30:06 -0000 1.12 --- platform.h 11 Jan 2004 05:03:18 -0000 1.13 *************** *** 83,95 **** #endif #endif - // Determine os we are one - #if defined(__unix__) - #define _POSIX - #else - #if !defined(WIN32) - #define WIN32 - #endif - #endif - //======================================================================== --- 83,86 ---- |