Show
Ignore:
Timestamp:
02/23/08 23:02:19 (9 months ago)
Author:
edmanm
Message:

r129@lysithea: edmanm | 2008-02-23 23:02:10 -0500
Remove our tray icon implementation for X11 and Win32. We haven't used it
since we started requiring Qt >= 4.2.0 and part of the X11 implementation
is derived from another GPL'ed project. Removing it makes it easier to
add our OpenSSL license exception.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vidalia/trunk/CMakeLists.txt

    r2335 r2354  
    55# 
    66#  Copyright (C) 2006-2007,  Matt Edman, Justin Hipple 
     7#  Copyright (C) 2008,  Matt Edman 
    78# 
    89#  This program is free software; you can redistribute it and/or 
     
    5758endif(APPLE) 
    5859 
    59 ## Check for QSystemTrayIcon 
     60## Check for QSslSocket 
    6061set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${QT_INCLUDES}) 
    61 if (NOT APPLE) 
    62   check_include_file_cxx("qsystemtrayicon.h" HAVE_QSYSTEMTRAYICON_H) 
    63   if (HAVE_QSYSTEMTRAYICON_H) 
    64     option(USE_QSYSTEMTRAYICON "Use Qt's tray icon implementation." ON) 
    65   endif(HAVE_QSYSTEMTRAYICON_H) 
    66 endif(NOT APPLE) 
    67  
    68 ## Check for QSslSocket 
    6962check_include_file_cxx("qsslsocket.h" HAVE_QSSLSOCKET_H) 
    7063if (HAVE_QSSLSOCKET_H)