HEX
Server: Apache
System: Linux opal14.opalstack.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User: curbgloabal_opal (1234)
PHP: 8.1.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //bin/sfcgal-config
#!/bin/sh
prefix=/usr
libdir=${prefix}/lib64

usage()
{
    cat <<EOF
Usage: sfcgal-config [OPTIONS]
Options:
     [--prefix]
     [--version]
     [--libs]
     [--cflags]
     [--ldflags]
     [--static]
EOF
    exit $1
}
if test $# -eq 0; then
  usage 1 1>&2
fi
while test $# -gt 0; do
case "$1" in
    -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
    *) optarg= ;;
esac
case $1 in
    --prefix)
	echo ${prefix}
	;;
    --version)
	echo 1.3.1
	;;
    --static)
	echo OFF
	;;
    --cflags)
	echo -I${prefix}/include 
	;;
    --libs)
	echo -L${libdir} -lSFCGAL
	;;
    --ldflags)
	echo -L${libdir}
	;;
    *)
	usage 1 1>&2
	;;
  esac
  shift
done