Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
vite
Merge requests
!86
Remove useless function checks in CMakeLists.txt
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove useless function checks in CMakeLists.txt
pswartva/vite:remove-cmake-function-exists
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Philippe SWARTVAGHER
requested to merge
pswartva/vite:remove-cmake-function-exists
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Checked functions are actually never called in the code.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
25811343
1 commit,
1 year ago
1 file
+
0
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
CMakeLists.txt
+
0
−
6
Options
@@ -186,12 +186,6 @@ endif()
# stdlib, stdio, string, getopt, etc
check_include_files
(
stdarg.h HAVE_STDARG_H
)
check_function_exists
(
va_copy HAVE_VA_COPY
)
if
(
NOT HAVE_VA_COPY
)
check_function_exists
(
__va_copy HAVE_UNDERSCORE_VA_COPY
)
endif
()
check_function_exists
(
asprintf HAVE_ASPRINTF
)
check_function_exists
(
vasprintf HAVE_VASPRINTF
)
check_include_files
(
getopt.h HAVE_GETOPT_H
)
check_include_files
(
unistd.h HAVE_UNISTD_H
)
check_function_exists
(
getopt_long HAVE_GETOPT_LONG
)
Loading