aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
blob: 767d71ac7b9a72fbe00c6338a5256eb46bcc93fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# Configure paths for SVGAlib
# Created by Pierre Sarrazin <http://sarrazip.com/>
# Tiny changes by Julian Albo.
# This file is in the public domain.
# Created from sdl.m4.

# This test must be executed in C mode (AC_LANG_C), not C++ mode.

# Defines SVGALIB_CFLAGS and SVGALIB_LIBS and submits them to AC_SUBST()

dnl AM_PATH_SVGALIB([MINIMUM-VERSION [,ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]]])
dnl Test for SVGAlib, and define SVGALIB_CFLAGS and SVGALIB_LIBS
dnl
AC_DEFUN(AM_PATH_SVGALIB,
[
  AC_ARG_WITH(svgalib-prefix,
  	AC_HELP_STRING([--with-svgalib-prefix=PFX],
  		[Prefix where SVGAlib is installed [[/usr]]] ),
    svgalib_prefix="$withval",
    svgalib_prefix="/usr"
    )
  AC_MSG_RESULT([using $svgalib_prefix as SVGAlib prefix])
  AC_ARG_ENABLE(svgalibtest,
  	AC_HELP_STRING([--disable-svgalibtest],
		[Do not try to compile and run a test program] ),
    ,
    enable_svgalibtest=yes
    )

dnl  Changed this check.
dnl  AC_REQUIRE([AC_CANONICAL_TARGET])
  AC_REQUIRE([AC_CANONICAL_HOST])
  min_svgalib_version=ifelse([$1], ,1.4.0, $1)
  AC_MSG_CHECKING([for SVGAlib - version >= $min_svgalib_version])
  no_svgalib=""


  if test "$svgalib_prefix" = /usr; then
    # Avoid the switch -I/usr/include - it might break gcc 3.x
    SVGALIB_CFLAGS=
  else
    SVGALIB_CFLAGS="-I$svgalib_prefix/include"
  fi

  SVGALIB_LIBS="-L$svgalib_prefix/lib -lvgagl -lvga"

  # Get the version number, which appears to be in the lib*.so.* filename:
  #
  if test -f $svgalib_prefix/lib/libvga.so.*.*.*; then

    _f=`echo $svgalib_prefix/lib/libvga.so.*.*.* | \
			sed 's/^.*\.so\.//'`
    svgalib_major_version=`echo $_f | \
			sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
    svgalib_minor_version=`echo $_f | \
			sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
    svgalib_micro_version=`echo $_f | \
			sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`

    unset _f

  else
    AC_MSG_ERROR([could not find $svgalib_prefix/lib/libvga.so.*.*.*])
  fi

  if test "_$enable_svgalibtest" = "_yes" ; then
      ac_save_CFLAGS="$CFLAGS"
      ac_save_LIBS="$LIBS"
      CFLAGS="$CFLAGS $SVGALIB_CFLAGS"
      LIBS="$LIBS $SVGALIB_LIBS"
dnl
dnl Check if the installed SVGAlib is sufficiently new.
dnl
      rm -f conf.svgalibtest
      AC_TRY_RUN([
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "vga.h"

char*
my_strdup (char *str)
{
  char *new_str;
  
  if (str)
    {
      new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
      strcpy (new_str, str);
    }
  else
    new_str = NULL;
  
  return new_str;
}

int main (int argc, char *argv[])
{
  int major, minor, micro;
  char *tmp_version;

  /* This hangs on some systems (?)
  system ("touch conf.svgalibtest");
  */
  { FILE *fp = fopen("conf.svgalibtest", "a"); if ( fp ) fclose(fp); }

  /* HP/UX 9 (%@#!) writes to sscanf strings */
  tmp_version = my_strdup("$min_svgalib_version");
  if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
     printf("%s, bad version string\n", "$min_svgalib_version");
     exit(1);
  }

  if (($svgalib_major_version > major) ||
      (($svgalib_major_version == major) && ($svgalib_minor_version > minor)) ||
      (($svgalib_major_version == major) && ($svgalib_minor_version == minor) && ($svgalib_micro_version >= micro)))
    {
      return 0;
    }
  else
    {
      printf("\n*** Installed SVGAlib version is %d.%d.%d, but the minimum version\n", $svgalib_major_version, $svgalib_minor_version, $svgalib_micro_version);
      printf("*** of SVGAlib required is %d.%d.%d.\n", major, minor, micro);
      printf("*** It is best to upgrade to the required version.\n");
      printf("*** The web site is http://www.svgalib.org/\n");
      printf("*** See also --with-svgalib-prefix\n");
      return 1;
    }
}

],
      ,
      no_svgalib=yes,
      [echo $ac_n "cross compiling; assumed OK... $ac_c"]
      )

      CFLAGS="$ac_save_CFLAGS"
      LIBS="$ac_save_LIBS"
  fi


  if test "_$no_svgalib" = _ ; then
    AC_MSG_RESULT([found $svgalib_major_version.$svgalib_minor_version.$svgalib_micro_version])
    ifelse([$2], , :, [$2])     
  else
    AC_MSG_ERROR([SVGAlib >= min_svgalib_version not found])

    if test -f conf.svgalibtest ; then
      :
    else
      echo "*** Could not run SVGAlib test program, checking why..."

      CFLAGS="$CFLAGS $SVGALIB_CFLAGS"
      LIBS="$LIBS $SVGALIB_LIBS"

      AC_TRY_LINK([
#include <stdio.h>
#include "vga.h"

int main(int argc, char *argv[])
{ return 0; }
#undef  main
#define main K_and_R_C_main
],      [ return 0; ],
        [ echo "*** The test program compiled, but did not run. This usually means"
          echo "*** that the run-time linker is not finding SVGAlib or finding the wrong"
          echo "*** version of SVGAlib. If it is not finding SVGAlib, you'll need to set your"
          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
          echo "*** to the installed location  Also, make sure you have run ldconfig if that"
          echo "*** is required on your system"
	  echo "***"
          echo "*** If you have an old version installed, it is best to remove it, although"
          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
	],
        [ echo "*** The test program failed to compile or link. See the file config.log for the"
          echo "*** exact error that occured. This usually means SVGAlib was incorrectly installed"
          echo "*** or that you have moved SVGAlib since it was installed."
          echo "***"
          echo "*** SVGAlib web site: http://www.svgalib.org/"
	]
      )

      CFLAGS="$ac_save_CFLAGS"
      LIBS="$ac_save_LIBS"

      AC_MSG_ERROR([SVGAlib >= min_svgalib_version not found])

    fi

    SVGALIB_CFLAGS=""
    SVGALIB_LIBS=""
    ifelse([$3], , :, [$3])
  fi

  AC_SUBST(SVGALIB_CFLAGS)
  AC_SUBST(SVGALIB_LIBS)
  rm -f conf.svgalibtest
])
Un proyecto texto-plano.xyz