File: configure.ac

package info (click to toggle)
libhomfly 1.02r6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 220 kB
  • sloc: ansic: 1,740; makefile: 19; sh: 1
file content (20 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
AC_INIT([libhomfly], [1.02r5], [mmarco@unizar.es])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign -Wall])
AM_PROG_AR
AC_PROG_CC
LT_INIT([win32-dll])
AC_CANONICAL_HOST
dnl libtool requires "-no-undefined" for win32 dll
AC_SUBST(HOMFLY_LDFLAGS)
case $host_os in
    *cygwin* | *mingw*)
        if test x"$enable_shared" = xyes; then
            HOMFLY_LDFLAGS="$HOMFLY_LDFLAGS -no-undefined"
        fi
    ;;
esac
AC_CONFIG_FILES([Makefile lib/Makefile test/Makefile])
AC_OUTPUT