diff options
Diffstat (limited to 'TSRM/tsrm_config.in')
-rwxr-xr-x | TSRM/tsrm_config.in | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/TSRM/tsrm_config.in b/TSRM/tsrm_config.in deleted file mode 100755 index c80000c8da..0000000000 --- a/TSRM/tsrm_config.in +++ /dev/null @@ -1,43 +0,0 @@ -#! /bin/sh -# -# $Id$ -# -# Written by Sascha Schumann <sascha@schumann.cx> - - -# taken from autoconf - -if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then - # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu. - if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then - ac_n= ac_c=' -' ac_t=' ' - else - ac_n=-n ac_c= ac_t= - fi -else - ac_n= ac_c='\c' ac_t= -fi - - -flags_libs="@LIBS@" -flags_ldflags="@LDFLAGS@" -flags_cflags="@CPPFLAGS@ @CFLAGS@" - -case "$1" in ---ldflags) - echo $ac_n "$flags_ldflags$ac_c" -;; ---cflags) - echo $ac_n "$flags_cflags$ac_c" -;; ---libs) - echo $ac_n "$flags_libs$ac_c" -;; -*) - echo "$0 [--libs|--cflags|--ldflags]" - exit 1 -;; -esac - -exit 0 |