Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 206920
Collapse All | Expand All

(-)cmake-2.6.4-orig/CMakeLists.txt (-1 / +3 lines)
Lines 340-346 Link Here
340
    SET(BUILD_CursesDialog 0)
340
    SET(BUILD_CursesDialog 0)
341
  ENDIF (UNIX)
341
  ENDIF (UNIX)
342
  IF(BUILD_CursesDialog)
342
  IF(BUILD_CursesDialog)
343
    SUBDIRS(Source/CursesDialog/form)
343
344
    #
345
344
  ENDIF(BUILD_CursesDialog)
346
  ENDIF(BUILD_CursesDialog)
345
ENDMACRO (CMAKE_BUILD_UTILITIES)
347
ENDMACRO (CMAKE_BUILD_UTILITIES)
346
348
(-)cmake-2.6.4-orig/Source/CursesDialog/CMakeLists.txt (-3 / +8 lines)
Lines 14-26 Link Here
14
              CursesDialog/ccmake
14
              CursesDialog/ccmake
15
   )
15
   )
16
16
17
INCLUDE_DIRECTORIES(${CMake_SOURCE_DIR}/Source/CursesDialog/form
18
                    ${CMake_BINARY_DIR}/Source/CursesDialog/form)
19
INCLUDE_DIRECTORIES(${CURSES_INCLUDE_PATH})
17
INCLUDE_DIRECTORIES(${CURSES_INCLUDE_PATH})
20
18
21
19
22
ADD_EXECUTABLE(ccmake ${CURSES_SRCS} )
20
ADD_EXECUTABLE(ccmake ${CURSES_SRCS} )
23
TARGET_LINK_LIBRARIES(ccmake CMakeLib)
21
TARGET_LINK_LIBRARIES(ccmake CMakeLib)
24
TARGET_LINK_LIBRARIES(ccmake cmForm)
22
TARGET_LINK_LIBRARIES(ccmake form)
23
TARGET_LINK_LIBRARIES(ccmake ${CURSES_LIBRARY})
24
IF(CURSES_EXTRA_LIBRARY)
25
  TARGET_LINK_LIBRARIES(ccmake ${CURSES_EXTRA_LIBRARY})
26
ENDIF(CURSES_EXTRA_LIBRARY)
27
25
28
26
INSTALL_TARGETS(/bin ccmake)
29
INSTALL_TARGETS(/bin ccmake)
30
31
(-)cmake-2.6.4-orig/Source/CursesDialog/cmCursesStandardIncludes.h (-2 lines)
Lines 20-27 Link Here
20
 #define _MSE_INT_H
20
 #define _MSE_INT_H
21
#endif
21
#endif
22
22
23
#include <cmFormConfigure.h>
24
25
#if defined(__hpux)
23
#if defined(__hpux)
26
# define _BOOL_DEFINED
24
# define _BOOL_DEFINED
27
# include <sys/time.h>
25
# include <sys/time.h>

Return to bug 206920