Updated all versions to 1.5.1 20081221 35:0:0
[geda-gaf/whiteaudio.git] / utils / configure.ac
blob788e6a8aa23ec5658de2def207d0db46e6e0d7f7
1 # Process this file with autoconf to produce a configure script.
2 AC_INIT
3 AC_CONFIG_SRCDIR([src/gmk_sym.c])
4 AC_PREREQ(2.54)
6 PACKAGE=geda-utils
7 DOTTED_VERSION=1.5.1
8 DATE_VERSION=20081221
9 echo Configuring $PACKAGE version $DOTTED_VERSION.$DATE_VERSION
11 # Initialize automake 
12 AM_INIT_AUTOMAKE($PACKAGE, $DOTTED_VERSION, no-define)
13 AM_CONFIG_HEADER([config.h])
15 #########################################################################
16 # Command line flags start
17
18 # Change default location for rc files
19 AC_ARG_WITH(rcdir, [  --with-rcdir=path       Change where the system-*rc files are installed], [opt_rcdir=$withval])
21 # --with-docdir : tells where to store documentation if not default
22 # defined below 
23
24 # Command line flags end
25 #########################################################################
27 # Checks for programs.
28 AC_PROG_CC
29 AM_PROG_CC_C_O
30 AM_CONDITIONAL(CCISGCC, test "$GCC" = "yes")
31 AC_PROG_CPP
32 AC_PROG_MAKE_SET
33 AM_PROG_LEX
35 AC_PATH_PROG(PERL, perl, [notfound])
36 AM_CONDITIONAL(MISSING_PERL, test x$PERL = xnotfound)
38 ##############################################################3
39 # Test for __func__
42 AC_MSG_CHECKING([For a working C99 __func__])
43 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
44         [[const char *foo = __func__;]])],
45    [ac_cv_cpp_func=yes],
46    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],
47                 [[const char *foo = __FUNCTION__;]])],
48                 [ac_cv_cpp_func=__FUNCTION__],
49                 [ac_cv_cpp_func="\"no\""])]
52 if test "X$ac_cv_cpp_func" = "X__FUNCTION__"; then
53         AC_MSG_RESULT([__FUNCTION__])
54 elif test "x$ac_cv_cpp_func" = "xyes" ; then
55         AC_MSG_RESULT([__func__])
56 else
57         AC_MSG_RESULT([no])
59 if test "X$ac_cv_cpp_func" != "Xyes" ; then
60         AC_DEFINE_UNQUOTED([__func__], [$ac_cv_cpp_func], [Define to be a __func__ replacement])
64 ##############################################################3
66 #########################################################################
67
68 # Misc win32 / mingw checks and variables start
69 AC_CANONICAL_HOST
71 # Figure out if we are building on win32 and what environment.
72 case $host_os in
73   *mingw32* ) echo "Configuring for mingw"; MINGW=yes ;;
74 esac
76 if ! test "$MINGW" = "no" -o "$MINGW"x = x; then
77    MINGW="yes"
78 else
79    # Unix host
80    MINGW="no"
83
84 # Misc win32 / mingw checks and variables end
85 #########################################################################
87 ############################################################################
88 # Check for guile start
90 # Check for pkg-config
91 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
92 if test $PKG_CONFIG = no; then
93    AC_MSG_ERROR([Cannot find pkg-config, make sure it is installed and in your PATH])
96 PKG_CHECK_MODULES(GUILE, guile-1.8, GUILE_PC="yes", no_GUILE_PC="yes")
98 if test "$GUILE_PC" = "yes" 
99 then
101    GUILE_VERSION=`$PKG_CONFIG guile-1.8 --modversion`
103 else
105   # Find about the installed guile
106   GUILE_FLAGS
107   GUILE_VERSION=`$GUILE_CONFIG info guileversion`
111 # Check Guile version
112 guile_need_major=1
113 guile_need_minor=6
114 guile_need_version="$guile_need_major[].$guile_need_minor.0"
116 AC_MSG_CHECKING([Guile version >= $guile_need_version])
118 guile_major=`echo "$GUILE_VERSION" | sed 's/\([[^.]][[^.]]*\).*/\1/'`
119 guile_minor=`echo "$GUILE_VERSION" | sed 's/[[^.]][[^.]]*.\([[^.]][[^.]]*\).*/\1/'`
120 AC_MSG_RESULT($GUILE_VERSION)
122 if test "$guile_need_major" -gt "$guile_major" \
123    || (test "$guile_need_major" -eq "$guile_major" \
124        && test "$guile_need_minor" -gt "$guile_minor"); then
125   AC_MSG_ERROR([Guile version >= $guile_need_version is required.])
128 # Guile 1.6 compatability
130 CFLAGS_temp_save="$CFLAGS"
131 CFLAGS="$CFLAGS $GUILE_CFLAGS"
132 AC_CHECK_DECLS([scm_is_string, scm_is_integer, scm_to_int,
133 scm_from_int,  scm_is_true,    scm_is_false,
134 scm_from_locale_string, scm_to_locale_string],,,
135 [#include <libguile.h>])
136 CFLAGS="$CFLAGS_temp_save"
138 AH_VERBATIM(SCM_IS_STRING, [#if !HAVE_DECL_SCM_IS_STRING
139 #  define scm_is_string(x) SCM_STRINGP(x)
140 #endif])
141 AH_VERBATIM(SCM_IS_INTEGER, [#if !HAVE_DECL_SCM_IS_INTEGER
142 #  define scm_is_integer(x) SCM_INUMP(x)
143 #endif])
144 AH_VERBATIM(SCM_TO_INT, [#if !HAVE_DECL_SCM_TO_INT
145 #  define scm_to_int(x)     SCM_INUM(x)
146 #endif])
147 AH_VERBATIM(SCM_FROM_INT, [#if !HAVE_DECL_SCM_FROM_INT
148 #  define scm_from_int(x)   SCM_MAKINUM(x)
149 #endif])
150 AH_VERBATIM(SCM_IS_TRUE, [#if !HAVE_DECL_SCM_IS_TRUE
151 #  define scm_is_true(x)    SCM_NFALSEP(x)
152 #endif])
153 AH_VERBATIM(SCM_IS_FALSE, [#if !HAVE_DECL_SCM_IS_FALSE
154 #  define scm_is_false(x)   SCM_FALSEP(x)
155 #endif])
156 AH_VERBATIM(SCM_FROM_LOCALE_STRING, [#if !HAVE_DECL_SCM_FROM_LOCALE_STRING
157 #  define scm_from_locale_string(x) scm_makfrom0str(x)
158 #endif])
159 AH_VERBATIM(SCM_TO_LOCALE_STRING, [#if !HAVE_DECL_SCM_TO_LOCALE_STRING
160 #  define scm_to_locale_string(x)   strdup(SCM_STRING_CHARS(x))
161 #endif])
164 # Check for guile end
165 ############################################################################
167 ############################################################################
168 # Check for mics things start
170 # Checking for rint in math library
171 AC_CHECK_LIB(m, rint, AC_DEFINE(HAS_RINT, 1, [If your math library has rint in it, define this]), no_RINT="yes")
173 # Checking for dynamic lib
174 AC_CHECK_LIB(dl, dlopen, DL_LIB="-ldl", DL_LIB="")
176 # Check for mics things start
177 ############################################################################
179 ############################################################################
180 # Check for libgeda start
182 PKG_CHECK_MODULES(LIBGEDA, libgeda >= $DATE_VERSION, LIBGEDA="yes", 
183                   no_LIBGEDA="yes")
185 if test "$LIBGEDA" = "yes" 
186 then
187    LIBGEDA_VERSION=`$PKG_CONFIG libgeda --modversion`
188 else
189    AC_MSG_ERROR([libgeda detection error: $LIBGEDA_PKG_ERRORS])
193 # Check for libgeda end
194 ############################################################################
196 ############################################################################
197 # Check for gtk+ 2.4 start
200 PKG_CHECK_MODULES(GTK24, gtk+-2.0 >= 2.4.0, GTK24="yes", no_GTK24="yes")
202 # This next bit of code figures out what gtk we need to use.
203 if test "$GTK24" = "yes"
204 then
206    AC_DEFINE(HAS_GTK24, 1, [If gtk+ 2.4.x has been installed, define this])
207    GTK_CFLAGS=$GTK24_CFLAGS
208    GTK_LIBS=$GTK24_LIBS
209    GTK_VERSION=`$PKG_CONFIG gtk+-2.0 --modversion`
211    # Search for glib
212    PKG_CHECK_MODULES(GLIB24, glib-2.0 >= 2.4.0, GLIB24="yes", no_GLIB24="yes")
213    if test "$GLIB24" != "yes"
214    then
215        AC_MSG_ERROR([Cannot find glib 2.4.x, install it and rerun ./configure.])
216    fi
217    GLIB_CFLAGS=$GLIB24_CFLAGS
218    GLIB_LIBS=$GLIB24_LIBS
219    GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
221 else
222    GTK_VERSION=""
225 if test "$GTK_VERSION" = ""
226 then
227    AC_MSG_ERROR([Cannot find gtk+ 2.4.x or later, please install gtk+.])
231 # Check for gtk+ 2.4 end
232 ############################################################################
234 ############################################################################
235 # Check for glib 2.4 start
238 # Check for pkg-config
239 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
240 if test $PKG_CONFIG = no; then
241    AC_MSG_ERROR([Cannot find pkg-config, make sure it is installed and in your PATH])
244 # Search for glib 2.4.x first (only if we are not forcing the glib to 1.2)
245 if test "$opt_gtkver" != "1.2"
246 then
247    PKG_CHECK_MODULES(GLIB24, glib-2.0 >= 2.4.0, GLIB24="yes", no_GLIB24="yes")
250 # This next bit of code figures out what glib we need to use.
251 if test "$GLIB24" = "yes" -a "$opt_gtkver" != "1.2"
252 then
253    GLIB_CFLAGS=$GLIB24_CFLAGS
254    GLIB_LIBS=$GLIB24_LIBS
255    GLIB_VERSION=`$PKG_CONFIG glib-2.0 --modversion`
256 else
257    GLIB_VERSION=""
260 if test "$GLIB_VERSION" = ""
261 then
262    AC_MSG_ERROR([Cannot find glib 2.4.x, install one of them.])
266 # Check for glib 2.4 end
267 ############################################################################
269 #########################################################################
270 # Checks for header files start
272 AC_HEADER_STDC
273 AC_HEADER_SYS_WAIT
274 AC_HEADER_DIRENT
275 AC_CHECK_HEADERS(unistd.h string.h stdlib.h \
276                  stdarg.h assert.h fcntl.h errno.h \
277                  getopt.h)
279 # Checks for typedefs, structures, and compiler characteristics.
280 AC_C_CONST
282 # Checks for library functions.
283 AC_TYPE_SIGNAL
284 AC_CHECK_FUNCS(strstr snprintf getopt_long)
285 AC_CHECK_FUNCS(strcasecmp strncasecmp stricmp strnicmp)
287 AC_MSG_CHECKING([for optarg in unistd.h])
288 AC_TRY_COMPILE(
289 [#include <unistd.h>],
290 [ char *string = optarg; int i = optind; ],
291 optarg_found=yes,
292 optarg_found=no)
293 AC_MSG_RESULT($optarg_found)
295 if test $optarg_found = yes; then
296     AC_DEFINE(OPTARG_IN_UNISTD, 1, [Define if you have optarg in unistd.h])
300 # Checks for header files start
301 #########################################################################
303 #########################################################################
306 # ------------- dmalloc -------------------
307 dnl dmalloc checks
308 with_dmalloc="no"
309 AC_MSG_CHECKING([if dmalloc debugging should be enabled])
310 AC_ARG_ENABLE([dmalloc],
311 [  --enable-dmalloc        Compile and link with dmalloc for malloc debugging [[default=no]]],
313 if test "X$enable_dmalloc" != "Xno" ; then
314         AC_MSG_RESULT([yes])
315         AC_CHECK_HEADER(dmalloc.h,,
316                 AC_ERROR([You have requested dmalloc debugging but dmalloc.h could not be found]))
317         AC_CHECK_LIB(dmalloc,main,,
318                 AC_ERROR([You have requested dmalloc debugging but -ldmalloc could not be found]))
319         DMALLOC_LIBS="-ldmalloc"
320         with_dmalloc="yes"
321 else
322         AC_MSG_RESULT([no])
323         DMALLOC_LIBS=""
327         AC_MSG_RESULT([no])
328         DMALLOC_LIBS=""
331 # ------------- ElectricFence -------------------
332 dnl ElectricFence checks
333 with_efence="no"
334 AC_MSG_CHECKING([if ElectricFence debugging should be enabled])
335 AC_ARG_ENABLE([efence],
336 [  --enable-efence         Link with ElectricFence for malloc debugging [[default=no]]],
338 if test "X$enable_efence" != "Xno" ; then
339         AC_MSG_RESULT([yes])
340         if test "X$with_dmalloc" = "Xyes" ; then
341                 AC_ERROR([You have requested both dmalloc and Electric Fence, however only 1 is allowed.])
342         fi
343         AC_CHECK_LIB(efence,main,,
344                 AC_ERROR([You have requested ElectricFence debugging but -lefence could not be found]))
345         with_efence="yes"
346 else
347         AC_MSG_RESULT([no])
351 AC_MSG_RESULT([no])
355 #########################################################################
357 #########################################################################
359 # Change default location for pcb's newlib library directory
361 # Used by gsch2pcb
363 AC_MSG_CHECKING([For the default pcb installation data directory])
364 AC_ARG_WITH(pcb-datadir,
365         [  --with-pcb-datadir=path
366                           Change the default location for an installed pcb.  This is used
367                           to set the default search path for pcb newlib libraries.
368                           [[default=${datadir}]]],
369         [PCBDATADIR=$withval],
370         [PCBDATADIR="${datadir}"]
372 AC_MSG_RESULT([${PCBDATADIR}])
373 CPPFLAGS="$CPPFLAGS -DPCBDATADIR=\\\"${PCBDATADIR}\\\""
375 AC_MSG_CHECKING([For the default pcb newlib search path])
376 AC_ARG_WITH(pcb-newlib-path,
377         [  --with-pcb-newlib-path=path
378                           Change the default search path for PCB newlib libraries
379                           [[default=${datadir}/pcb/pcblib-newlib:${datadir}/pcb/newlib]]],
380         [PCBLIBPATH=$withval],
381         [PCBLIBPATH="${PCBDATADIR}/pcb/pcblib-newlib:${PCBDATADIR}/pcb/newlib"]
383 AC_MSG_RESULT([${PCBLIBPATH}])
384 CPPFLAGS="$CPPFLAGS -DPCBLIBPATH=\\\"${PCBLIBPATH}\\\""
387 #########################################################################
389 #########################################################################
390 # Check for groff start
393 # search for groff
394 AC_PATH_PROG(GROFF, groff, no, ${PATH})
395 if test $GROFF = "no"; then
396         echo "Cannot find groff, some documentation will not be created."
400 # Check for groff end
401 #########################################################################
403 #########################################################################
404 # gEDA/gaf specify setup start
407 DATADIR=gEDA
408 GEDADATADIR=$datadir/$DATADIR
410 if eval "test x$opt_rcdir = x"; then
411         # path not was specified with --with-rcdir
412         AC_DEFINE_UNQUOTED(GEDARCDIR, "none", [gEDA/gaf's rc directory])
413         GEDARCDIR=$GEDADATADIR
414 else
415         # path WAS specified with --with-rcdir
416         AC_DEFINE_UNQUOTED(GEDARCDIR, "$opt_rcdir", [gEDA/gaf's rc directory])
417         GEDARCDIR="$opt_rcdir"
420 # Expand the prefix variable
421 # I don't like the way this is done, but it works (I hope).
422 if eval "test x$prefix = xNONE"; then
423  dprefix=$ac_default_prefix
424 else
425  dprefix=$prefix
428 gedatopdir=$dprefix/share/$DATADIR
429 expandgedadatadir=`echo $gedatopdir`
431 gedadocdir=$dprefix/share/doc/geda-doc
432 # --with-docdir : tells where to store documentation if not default
433 AC_ARG_WITH(docdir,
434     [  --with-docdir      Where to store documentation if not default.],
435         gedadocdir=$withval)
436 expandgedadocdir=`echo $gedadocdir`
437 GEDADOCDIR=$expandgedadocdir
439 # this has to be expanded ( no ${prefix} ) --
440 AC_DEFINE_UNQUOTED(GEDADATADIR, "$gedatopdir", [gEDA/gaf's data directory])
441 AC_DEFINE_UNQUOTED(DATE_VERSION, "$DATE_VERSION", [Currently running date version of gEDA/gaf])
442 AC_DEFINE_UNQUOTED(DOTTED_VERSION, "$DOTTED_VERSION", [Currently running dotted version of gEDA/gaf])
443 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this program's package])
446 # gEDA/gaf specify things which need to setup
447 #########################################################################
449 # Finally create the final CFLAGS and LDFLAGS for use in the makefiles
450 GSCHLAS_CFLAGS="$LIBGEDA_CFLAGS"
451 GSCHLAS_LDFLAGS="$LIBGEDA_LIBS $GTK_LIBS"
452 CONVERT_SYM_CFLAGS="$LIBGEDA_CFLAGS"
453 SARLACC_SCHEM_CFLAGS="$LIBGEDA_CFLAGS"
454 GMK_SYM_CFLASG=""
455 SMASH_MEGAFILE_CFLAGS=""
456 OLIB_CFLAGS=""
457 GSCH2PCB_CFLAGS="$GLIB_CFLAGS"
458 GSCH2PCB_LDFLAGS="$GLIB_LIBS"
459 GRENUM_CFLAGS="$LIBGEDA_CFLAGS"
460 GRENUM_LDFLAGS="$GLIB_LIBS"
462 # Makefile.in variable substitution
463 AC_SUBST(DATE_VERSION)
464 AC_SUBST(DOTTED_VERSION)
465 AC_SUBST(GSCHLAS_CFLAGS)
466 AC_SUBST(GSCHLAS_LDFLAGS)
467 AC_SUBST(CONVERT_SYM_CFLAGS)
468 AC_SUBST(SARLACC_SCHEM_CFLAGS)
469 AC_SUBST(GSCH2PCB_CFLAGS)
470 AC_SUBST(GSCH2PCB_LDFLAGS)
471 AC_SUBST(GRENUM_CFLAGS)
472 AC_SUBST(GRENUM_LDFLAGS)
473 AC_SUBST(GEDARCDIR)
474 AC_SUBST(GEDADATADIR)
475 AC_SUBST(GEDADOCDIR)
477 # Create all the necessary derived files
478 AC_CONFIG_FILES([Makefile 
479                  examples/Makefile 
480                  examples/gmk_sym/Makefile 
481                  examples/tragesym/Makefile 
482                  examples/gsch2pcb/Makefile 
483                  gxyrs/Makefile
484                  include/Makefile 
485                  scripts/Makefile 
486                  docs/Makefile 
487                  man/Makefile 
488                  lib/Makefile 
489                  lib/system-gschlasrc 
490                  gschlas/Makefile 
491                  src/Makefile
492                  tests/Makefile
493                  tests/refdes_renum/Makefile
494                  tests/refdes_renum/inputs/Makefile
495                  tests/refdes_renum/outputs/Makefile
496                  tests/gxyrs/Makefile
497                  tests/gxyrs/inputs/Makefile
498                  tests/gxyrs/outputs/Makefile
501 AC_OUTPUT
503 expandedGEDADATADIR=`eval "echo $GEDADATADIR"`
504 expandedGEDARCDIR=`eval "echo $GEDARCDIR"`
505 expandedGEDADOCDIR=`eval "echo $GEDADOCDIR"`
506 expandedPCBLIBPATH=`eval "echo $PCBLIBPATH"`
508 AC_MSG_RESULT([
509 ** Configuration summary for $PACKAGE $DOTTED_VERSION.$DATE_VERSION:
511    GTK+ library version:             $GTK_VERSION
512    GLIB library version:             $GLIB_VERSION
513    libgeda library version:          $LIBGEDA_VERSION
514    mingw build:                      $MINGW
515    data directory:                   $expandedGEDADATADIR
516    rc directory:                     $expandedGEDARCDIR
517    documentation directory:          $expandedGEDADOCDIR
518    default pcb newlib path:          $expandedPCBLIBPATH
519    dmalloc debugging:                $with_dmalloc
520    Electric Fence debugging:         $with_efence