This file contains 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
/*ARGSUSED*/ | |
/*ARGSUSEDn*/ | |
/*CONSTCOND*/ | |
/*EMPTY*/ --> NOP, or PASS | |
/*FALLTHRU*/ | |
/*NOTREACHED*/ |
This file contains 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"> | |
<dependency> | |
<dependentAssembly> | |
<assemblyIdentity | |
type="win32" | |
name="Microsoft.Windows.Common-Controls" | |
version="6.0.0.0" processorArchitecture="*" |
This file contains 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 | |
# -*- coding: utf-8 -*- | |
# Copyright (c) 2023 MURAMATSU Atsushi <[email protected]> | |
# | |
# 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 |
This file contains 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 os | |
import sys | |
import gzip | |
import base64 | |
import platform | |
EXCLUDES = [ "cmd" ] |
This file contains 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 -ruN clisp-2.49.92.orig/Makefile.devel clisp-2.49.92/Makefile.devel | |
--- clisp-2.49.92.orig/Makefile.devel 2018-02-18 21:07:29.000000000 +0900 | |
+++ clisp-2.49.92/Makefile.devel 2020-09-28 17:00:26.430903935 +0900 | |
@@ -397,7 +397,7 @@ | |
GNULIB_SYSCALLS = mktime strftime strptime strverscmp uname fnmatch-gnu | |
GNULIB_IMPORTS = $(GNULIB_CORE) $(GNULIB_SYSCALLS) regex recvfrom sendto | |
GNULIB_COMMON = $(GNULIB_CORE) $(GNULIB_MODULES) | |
-GNULIB_IMPORTED_LOG = /tmp/gnulib-imported.log | |
+GNULIB_IMPORTED_LOG = /data/data/com.termux/files/usr/tmp/gnulib-imported.log | |
This file contains 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 | |
# -*- coding: utf-8 -*- | |
import subprocess | |
import io | |
BLAHTEX = "blahtex" | |
def convert(latex: str, | |
xmlns: str = "http://www.w3.org/1998/Math/MathML", |
This file contains 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/src/Makefile b/src/Makefile | |
index fb08e9a..3ae1543 100755 | |
--- a/src/Makefile | |
+++ b/src/Makefile | |
@@ -122,7 +122,14 @@ ifneq (, $(shell which pkg-config)) | |
endif | |
# NOTE: lua support | |
- ifneq ($(shell pkg-config --exists lua51 || echo 'no'),no) | |
+ ifneq ($(shell pkg-config --exists lua || echo 'no'),no) |
This file contains 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 os | |
import sys | |
import gzip | |
import base64 | |
EXCLUDES = [ "cmd" ] | |
cmddir = os.path.realpath(os.path.dirname(__file__)) |
NewerOlder