mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
97be837ff5
This performs *most* of the pcreectomy ofb418e36f22
. It removes the tests and docs and all the large files, but it does *not* touch any of the files except for making Find_Package quiet (783a895b11
) or remove the AUTHORS and similar files as they are very small. This seems much easier, cleaner, nicer and has 90% of the effect of the old - the size now is 2.7MB instead of 2.1MB, down from 10MB. Fixes #7599
29 lines
1.3 KiB
CMake
Vendored
29 lines
1.3 KiB
CMake
Vendored
# from http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/FindReadline.cmake
|
|
# http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/COPYING-CMAKE-SCRIPTS
|
|
# --> BSD licensed
|
|
#
|
|
# GNU Readline library finder
|
|
if(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
|
|
set(READLINE_FOUND TRUE)
|
|
else(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
|
|
FIND_PATH(READLINE_INCLUDE_DIR readline/readline.h
|
|
/usr/include/readline
|
|
)
|
|
|
|
# 2008-04-22 The next clause used to read like this:
|
|
#
|
|
# FIND_LIBRARY(READLINE_LIBRARY NAMES readline)
|
|
# FIND_LIBRARY(NCURSES_LIBRARY NAMES ncurses )
|
|
# include(FindPackageHandleStandardArgs)
|
|
# FIND_PACKAGE_HANDLE_STANDARD_ARGS(Readline DEFAULT_MSG NCURSES_LIBRARY READLINE_INCLUDE_DIR READLINE_LIBRARY )
|
|
#
|
|
# I was advised to modify it such that it will find an ncurses library if
|
|
# required, but not if one was explicitly given, that is, it allows the
|
|
# default to be overridden. PH
|
|
|
|
FIND_LIBRARY(READLINE_LIBRARY NAMES readline)
|
|
include(FindPackageHandleStandardArgs)
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Readline DEFAULT_MSG READLINE_INCLUDE_DIR READLINE_LIBRARY )
|
|
|
|
MARK_AS_ADVANCED(READLINE_INCLUDE_DIR READLINE_LIBRARY)
|
|
endif(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
|