mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-08 01:47:11 +02:00
.github
bin
module
vendor
CPR
CivetWeb
ConcurrentQueue
Fmt
MDBC
MaxmindDB
.github
bin
dev-bin
doc
include
projects
src
t
.gitignore
.gitmodules
.perltidyrc
AUTHORS
CMakeLists.txt
Changes.md
LICENSE
Makefile.am
NOTICE
README.dev.md
README.md
bootstrap
c_flag_overrides.cmake
common.mk
configure.ac
cxx_flag_overrides.cmake
POCO
PUGIXML
RPMalloc
SAJSON
SimpleIni
Squirrel
TinyDir
UTF8
ZMQ
xxHash
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
22 lines
459 B
Bash
22 lines
459 B
Bash
#! /bin/sh
|
|
|
|
# make sure to use the installed libtool
|
|
if [ -f ltmain.sh ]; then
|
|
rm ltmain.sh
|
|
fi
|
|
autoreconf -fiv
|
|
|
|
###################################################
|
|
# the steps below may help with outdated toolsets
|
|
|
|
# disable dependency trackeing for OS X with multiply arch option's
|
|
# automake -i --gnu --add-missing
|
|
|
|
|
|
#aclocal \
|
|
#&& automake -i --gnu --add-missing \
|
|
#&& autoconf
|
|
|
|
#LIBTOOLIZE=$( which libtoolize glibtoolize | head -1 )
|
|
#$LIBTOOLIZE -f
|