diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-05-29 19:43:06 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-05-29 19:43:06 +0000 |
| commit | 47426f0b3fe6cddea8cca421d0c905edb4834bfa (patch) | |
| tree | df2c6b602ef87e2c6a78af34972a55b40b84ef66 /fltk-config.in | |
| parent | 0753014e309d94f28a04893fddb25f175417b8af (diff) | |
Drop undocumented and non-working --prefix and --exec-prefix options to
fltk-config script (STR #56)
Fix configure tests that had bogus whitespace in them (STR #60)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@3015 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fltk-config.in')
| -rwxr-xr-x | fltk-config.in | 30 |
1 files changed, 2 insertions, 28 deletions
diff --git a/fltk-config.in b/fltk-config.in index 176bfca9e..1c4a55362 100755 --- a/fltk-config.in +++ b/fltk-config.in @@ -1,6 +1,6 @@ #!/bin/sh # -# "$Id: fltk-config.in,v 1.12.2.18 2003/03/26 00:47:14 easysw Exp $" +# "$Id: fltk-config.in,v 1.12.2.19 2003/05/29 19:43:06 easysw Exp $" # # FLTK configuration utility. # @@ -66,8 +66,6 @@ usage () { echo "Usage: fltk-config [OPTIONS] Options: - [--prefix[=DIR]] return/set where FLTK is installed - [--exec-prefix[=DIR]] [--version] [--api-version] @@ -115,22 +113,6 @@ do esac case $1 in - --prefix=*) - prefix=$optarg - if test $exec_prefix_set = no ; then - exec_prefix=$optarg - fi - ;; - --prefix) - echo_prefix=yes - ;; - --exec-prefix=*) - exec_prefix=$optarg - exec_prefix_set=yes - ;; - --exec-prefix) - echo_exec_prefix=yes - ;; --version) echo $VERSION ;; @@ -251,14 +233,6 @@ if test -n "$post" -a "$POSTBUILD" != ":"; then $POSTBUILD $post $includedir/FL/mac.r fi -if test "$echo_prefix" = "yes"; then - echo $prefix -fi - -if test "$echo_exec_prefix" = "yes"; then - echo $exec_prefix -fi - if test "$echo_cflags" = "yes"; then echo $includes $CFLAGS fi @@ -292,5 +266,5 @@ if test "$echo_libs" = "yes"; then fi # -# End of "$Id: fltk-config.in,v 1.12.2.18 2003/03/26 00:47:14 easysw Exp $". +# End of "$Id: fltk-config.in,v 1.12.2.19 2003/05/29 19:43:06 easysw Exp $". # |
