mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
ad9bc5976d
Add licensing and copyright information for all files in this repository. This either happens in the file itself as a comment header or in the file `.reuse/dep5`. This commit also adds a Github workflow to check pull requests and adapts copyright.pl to the changes. Closes #8869
8 lines
263 B
Bash
Executable File
8 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
autoreconf -fi
|
|
./configure --with-openssl
|
|
echo "Ran the setup script for Lift including autoconf and executing ./configure --with-openssl"
|