OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
aclocal-1.15
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/10/2024 09:42:49 AM
rwxr-xr-x
📄
amversion.m4
1.58 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
ar-lib.m4
2.02 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
as.m4
767 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
auxdir.m4
2.35 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
cond-if.m4
1.01 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
cond.m4
1.01 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
depend.m4
7.11 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
depout.m4
2.93 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
dmalloc.m4
906 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
extra-recurs.m4
738 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
gcj.m4
649 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
init.m4
7.84 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
install-sh.m4
681 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📁
internal
-
10/28/2024 06:50:06 AM
rwxr-xr-x
📄
lead-dot.m4
641 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
lex.m4
689 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
lispdir.m4
2.1 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
maintainer.m4
1.62 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
make.m4
1.3 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
missing.m4
1.13 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
mkdirp.m4
1.32 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
obsolete.m4
1008 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
options.m4
1.06 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
prog-cc-c-o.m4
1.65 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
python.m4
8.98 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
runlog.m4
718 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
sanity.m4
2.58 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
silent.m4
1.87 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
strip.m4
1.36 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
substnot.m4
675 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
tar.m4
4.37 KB
03/25/2018 11:44:27 PM
rw-r--r--
📄
upc.m4
836 bytes
03/25/2018 11:44:27 PM
rw-r--r--
📄
vala.m4
1.62 KB
03/25/2018 11:44:27 PM
rw-r--r--
Editing: vala.m4
Close
# Autoconf support for the Vala compiler # Copyright (C) 2008-2017 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the Vala compiler exists in $PATH. If it is found, the # variable VALAC is set pointing to its absolute path. Otherwise, it is # simply set to 'valac'. # Optionally a minimum release number of the compiler can be requested. # If the ACTION-IF-FOUND parameter is given, it will be run if a proper # Vala compiler is found. # Similarly, if the ACTION-IF-FOUND is given, it will be run if no proper # Vala compiler is found. It defaults to simply print a warning about the # situation, but otherwise proceeding with the configuration. # # AM_PROG_VALAC([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # -------------------------------------------------------------------------- AC_DEFUN([AM_PROG_VALAC], [AC_PATH_PROG([VALAC], [valac], [valac]) AS_IF([test "$VALAC" != valac && test -n "$1"], [AC_MSG_CHECKING([whether $VALAC is at least version $1]) am__vala_version=`$VALAC --version | sed 's/Vala *//'` AS_VERSION_COMPARE([$1], ["$am__vala_version"], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]) VALAC=valac])]) if test "$VALAC" = valac; then m4_default([$3], [AC_MSG_WARN([no proper vala compiler found]) AC_MSG_WARN([you will not be able to compile vala source files])]) else m4_default([$2], [:]) fi])