- acado
- acado/code_generation/export_nlp_solver.cpp
- acado/code_generation/integrators/discrete_export.cpp
- acado/code_generation/integrators/erk_3sweep_export.cpp
- acado/code_generation/integrators/erk_adjoint_export.cpp
- acado/code_generation/integrators/erk_export.cpp
- acado/code_generation/integrators/irk_export.cpp
- acado/code_generation/integrators/irk_forward_export.cpp
- acado/code_generation/integrators/irk_lifted_forward_export.cpp
- acado/code_generation/integrators/lifted_erk_export.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import fnmatch | |
import platform | |
import sys | |
from pathlib import Path | |
from pprint import pprint | |
from elftools.elf.dynamic import DynamicSection | |
from elftools.elf.elffile import ELFFile | |
from macholib.MachO import MachO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# License: public domain / CC0-1.0 | |
import os | |
import shutil | |
from conan.api.output import ConanOutput | |
from conan.errors import ConanException | |
from conans.util.files import rmdir, mkdir | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Conan automatically generated toolchain file | |
# DO NOT EDIT MANUALLY, it will be overwritten | |
# Avoid including toolchain file several times (bad if appending to variables like | |
# CMAKE_CXX_FLAGS. See https://github.com/android/ndk/issues/323 | |
include_guard() | |
message(STATUS "Using Conan toolchain: ${CMAKE_CURRENT_LIST_FILE}") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libtirpc 99143 2603 86595 9914 31 (Josue Ortega) | |
libnsl 98878 2190 87659 8996 33 (Gnu Libc Maintainers) | |
libfl 14990 581 13622 776 11 (Manoj Srivastava) | |
libgraphite2 14706 1203 11795 1701 7 (Debian Libreoffice Maintainers) | |
libuv1 13361 1132 6626 5598 5 (Dominique Dumont) | |
libthai 11397 1024 8790 1579 4 (Theppitak Karoonboonyanan) | |
libp11-kit 9683 566 7933 1177 7 (Debian Gnutls Maintainers) | |
comerr 8674 1059 6980 630 5 (Theodore Y. Ts'o) | |
liblapack 8549 220 3163 194 4972 (Debian Science Team) | |
libcoarrays 8194 292 5629 592 1681 (Alastair Mckinstry) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
======== Exporting recipe to the cache ======== | |
libpcap/1.10.4: Exporting package recipe: /home/martin/projects/conan-center-index/recipes/libpcap/all/conanfile.py | |
libpcap/1.10.4: exports: File 'conandata.yml' found. Exporting it... | |
libpcap/1.10.4: Copied 1 '.py' file: conanfile.py | |
libpcap/1.10.4: Copied 1 '.yml' file: conandata.yml | |
libpcap/1.10.4: Exported to cache folder: /home/martin/.conan2/p/libpc0a4ec7317b9ee/e | |
libpcap/1.10.4: Exported: libpcap/1.10.4#42a40b11ed2614a451e738a17997935a (2024-04-05 14:08:57 UTC) | |
======== Input profiles ======== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
The code below is part of pdfminer (http://pypi.python.org/pypi/pdfminer/) | |
Copyright (c) 2004-2010 Yusuke Shinyama <yusuke at cs dot nyu dot edu> | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHET |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/config/config.h.in b/config/config.h.in | |
--- a/config/config.h.in (revision 31b4f606f38075727472f6946bd981bb6c6b8647) | |
+++ b/config/config.h.in (revision 9582f6d7676eaacd956c581b6e5b6f86863fc918) | |
@@ -15,12 +15,12 @@ | |
/* Define if you have CAIRO library */ | |
#undef CAIRO_DELEGATE | |
+/* Channel mask depth */ | |
+#undef CHANNEL_MASK_DEPTH | |
+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For debugging any ./configure linker errors | |
replace_in_file(self, os.path.join(self.source_folder, "configure"), | |
"ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'", | |
"ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS -Bd | tee -a link.log >&5'") |